List Allocations
Get a paginated list of all allocations for a specific token on the Magna platform. Returns allocation details including status, amounts, stakeholder info, and claimable tokens. Supports cursor-based pagination. Ideal for: listing all token recipients, auditing distribution status, monitoring vesting schedules, batch processing allocations.
Catalog action Integrations magna
Get a paginated list of all allocations for a specific token on the Magna platform. Returns allocation details including status, amounts, stakeholder info, and claimable tokens. Supports cursor-based pagination. Ideal for: listing all token recipients, auditing distribution status, monitoring vesting schedules, batch processing allocations.
At a Glance
| Field | Value |
|---|---|
| Action ID | magna-list-allocations |
| Category | Integrations |
| Connector | magna |
| Requires gas | No |
| Funds movement | None declared |
| Tags | magna, vesting, token, distribution, list, read |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
tokenId | string | Yes | The token ID to list allocations for. |
cursor | string | No | Pagination cursor for fetching the next page of results. |
limit | number | No | Maximum number of allocations to return per page. |
walletAddress | string | No | Filter allocations by a specific wallet address. |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
isProcessed | boolean | Yes | Whether the request was processed successfully. |
result | object | Yes | Paginated list of allocations. |
Examples
json{ "type": "magna-list-allocations", "payload": { "tokenId": "1" }, "children": [], "connector": { "type": "magna", "id": "conn_magna" }}
bashcurl -X POST "https://api.b3os.org/v1/actions/magna-list-allocations/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "tokenId": "1" }}'
Payload fields can use workflow expressions such as {{$trigger.body.amount}}, {{$nodes.fetch.result.price}}, and {{$props.asset}} when the value should come from a trigger, prior node, or reusable workflow prop.
