Schedule
curl -X POST <https://app.magna.so/api/external/v1/allocations/{your_allocation_id}/schedule> \\
-H 'Content-Type: application/json' \\
-H 'x-magna-api-token: magna_project_api_token' \\
-d '{
"cursor": "2024-10-11T20:14:52.000Z",
"limit": 100,
"types": ["vested", "unlocked"]
}'{
"isProcessed": true,
"result": {
"items": [
{
"timestamp": "2024-01-01T00:00Z",
"releasable": 4500,
"unlocked": 4500
},
{
"timestamp": "2024-01-02T00:00Z",
"releasable": 200
}
{
"timestamp": "2024-01-03T00:00Z",
"vested": 500
}
],
"total": 18,
"cursor": "2024-10-11T20:14:52.000Z" // only if there is more to paginate
}
Last updated
Was this helpful?