Skip to main content
POST
/
api
/
external
/
v1
/
transactions
/
params
Transaction Signing Parameters
curl --request POST \
  --url https://app.magna.so/api/external/v1/transactions/params \
  --header 'Content-Type: application/json' \
  --header 'x-magna-api-token: <api-key>' \
  --data '
{
  "tokenId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "sender": "<string>",
  "allocationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "transactionIds": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "cursor": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "limit": 99
}
'
{
  "isProcessed": true,
  "result": {
    "items": [
      {
        "transactionGroupId": "8fccd856-ebd2-466b-be1c-e76fbb6963ee",
        "transactions": [
          {
            "transactionId": "9f7beee1-00c7-41df-a1ba-0654a98a9a06",
            "status": "PENDING",
            "operationTypes": [
              "START_DISTRIBUTION"
            ]
          }
        ],
        "parameters": [
          {
            "instructions": [],
            "transactionId": "9f7beee1-00c7-41df-a1ba-0654a98a9a06"
          }
        ]
      }
    ],
    "cursor": "8fccd856-ebd2-466b-be1c-e76fbb6963ee",
    "total": 1
  }
}

Authorizations

x-magna-api-token
string
header
required

Body

application/json
tokenId
string<uuid>
required
Minimum string length: 1
sender
string
required
Minimum string length: 1
allocationId
string<uuid>
Minimum string length: 1
type
enum<string>
Available options:
stakeholder,
admin
transactionIds
string<uuid>[]
Minimum array length: 1
Minimum string length: 1
cursor
string<uuid>
Minimum string length: 1
limit
number
Required range: x <= 100

Response

Successful response

isProcessed
boolean
result
any

Endpoint-specific result payload.