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,
    "error": ""
  }
}

Documentation Index

Fetch the complete documentation index at: https://pay-docs.holdstation.com/llms.txt

Use this file to discover all available pages before exploring further.

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 UUID of the order to close.
{
  "message": "success",
  "data": {
    "success": true,
    "code": 0,
    "error": ""
  }
}