GET
/
transactions
/
{transactionId}
curl --request GET \
  --url https://protocol-sandbox.lumx.io/v2/transactions/{transactionId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "walletId": "047312f3-8355-4120-ae61-84e79470b10e",
  "type": "mint",
  "status": "pending | success | failed",
  "transactionHash": "<string>",
  "request": {
    "contractId": "<string>",
    "uriNumber": "<string>",
    "quantity": 123
  },
  "result": {},
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "completedAt": "2023-11-07T05:31:56Z"
}
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "walletId": "047312f3-8355-4120-ae61-84e79470b10e",
  "type": "mint",
  "status": "pending | success | failed",
  "transactionHash": "<string>",
  "request": {
    "contractId": "<string>",
    "uriNumber": "<string>",
    "quantity": 123
  },
  "result": {},
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "completedAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <API_KEY>.

Path Parameters

transactionId
string
required

The ID of the transaction.

Response

200
application/json

The details of the transaction were retrieved successfully

The response is of type object.