Ana içeriğe geç

Get Token Transaction By ID

Retrieves a single token transaction by its ID. Commonly used to poll transaction status after asynchronous wallet processing completes (the wallet cron updates transactions to Done or Error).

Request

GET /v2/admin/tokens/{tokenID}/transactions/{transactionID}

Parameters

NameTypeInDescription
tokenIDstringpathRequired. Token ID
transactionIDstringpathRequired. Transaction ID

Headers

NameDescription
AuthorizationRequired. Bearer token for authentication

Example

curl --request GET \
--url '\{\{baseUrl\}\}/v2/admin/tokens/67d76014d9c4853c097bcf9a/transactions/69120e5fe5064fdeaef6f057' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...'

Response

Returns the transaction record. The status field reflects the current processing state (e.g., pending, done, error). See Find Token Transactions for the transaction object shape.

Status Codes

Status CodeDescription
200Success
400Bad Request - Missing tokenID or transactionID
401Unauthorized - Invalid or missing authentication token
404Not Found - Transaction not found, or transaction does not belong to this token
500Internal Server Error