Skip to main content
POST
/
partners
/
orders
/
{order_id}
/
close
Close Order
curl --request POST \
  --url https://pay-api.holdstation.com/partners/orders/{order_id}/close
{
  "message": "success",
  "data": {
    "success": true,
    "code": 0
  }
}

Overview

Partners can close a payment order that is in the Processing state and Pending processing state by providing the order_id. Once closed, the order cannot be paid.
order_id
string
required
The unique identifier of the order to close.
{
  "message": "success",
  "data": {
    "success": true,
    "code": 0
  }
}