Skip to main content
GET
/
v1
/
partner
/
merchants
/
{merchantId}
/
card-payments
/
orders
/
{orderId}
curl https://api.acountpay.com/v1/partner/merchants/42/card-payments/orders/ord_abc123 \
  -H "X-Partner-Client-Id: your-client-id" \
  -H "X-Partner-Client-Secret: your-client-secret"
{
  "order": {
    "orderId": "ord_abc123",
    "status": "PAID",
    "amount": 10000,
    "currency": "DKK",
    "reference": "ORDER-123"
  }
}

Authentication

X-Partner-Client-Id
string
required
Your partner client ID
X-Partner-Client-Secret
string
required
Your partner client secret

Path Parameters

merchantId
integer
required
The numeric merchant ID
orderId
string
required
The order ID returned from the create order endpoint

Response

order
object
The order object including:
  • orderId — Unique order identifier
  • status — Order status (CREATED, PAID, CANCELLED, REFUNDED)
  • amount — Order amount
  • currency — Currency code
  • reference — Your order reference
  • payments — Associated payment details
curl https://api.acountpay.com/v1/partner/merchants/42/card-payments/orders/ord_abc123 \
  -H "X-Partner-Client-Id: your-client-id" \
  -H "X-Partner-Client-Secret: your-client-secret"
{
  "order": {
    "orderId": "ord_abc123",
    "status": "PAID",
    "amount": 10000,
    "currency": "DKK",
    "reference": "ORDER-123"
  }
}