Skip to main content

Confirm transaction

Use this method to confirm that you have finalized the transaction (order or part). You can get its id from the get-active-tx-by-orders-ids method.

  • METHOD: POST
  • PATH: /api/transactions/confirm

Request:

{
token: string;
transactionId: number;
}

Response:

   {
success: boolean;
data?: string // error message
}