Admin Release Allocations
Example request
curl -X POST https://app.magna.so/api/external/v1/allocations/admin-release \
-H 'Content-Type: application/json' \
-H 'x-magna-api-token: magna_project_api_token' \
-d '{
"tokenId": "your_token_id",
"allocationIds": ["allocation_id_1", "allocation_id_2"],
"sender": "admin_wallet_address"
}'Response
{
"isProcessed": true,
"result": {
"items": [
{
"transactionGroupId": "0a95df41-468f-4e9b-b5eb-08e982618ad1",
"parameters": [
{
"from": "0xAdminWallet...",
"to": "0xContract...",
"data": "0x8612...",
"platformFee": null,
"transactionId": "67f987e4-70cc-4833-8935-1f3baff601a4"
}
]
}
],
"total": 1
}
}After signing
Last updated
Was this helpful?