v1

latestOpenAPI 3.0.02026-07-267331140.7 KB
Physical Card Order

Register payment for a Physical Card Order

This endpoint associates a provided on-chain transaction hash with an existing card order by its orderId. If the card is free, you can skip this step.

put/api/v1/order/{orderId}/attach-transaction

Path parameters

orderIdstring required

The unique identifier of the card order to which the transaction will be attached.

Request body

transactionHashstring required

The on-chain transaction hash to be attached.

Example request

{
  "transactionHash": "0x123abc..."
}

Response

Transaction successfully attached to the card order.

okboolean

Indicates if the operation was successful.

Example response

{
  "ok": true
}