GET
/
v1
/
orders
/
{uuid}
curl https://api-eu.sulpayments.ch/v1/orders/ord_5f1a3b2c \
  -H "Authorization: Bearer {token}"
{
  "id": "ord_5f1a3b2c",
  "external_reference": "ORDER-001",
  "customer_name": "Jane Doe",
  "customer_email": "jane@example.com",
  "description": "Subscription",
  "status": "paid",
  "paid_at": "2026-02-15T14:23:00Z",
  "payment_method": "credit_card",
  "payments": [
    { "id": "pay_001", "status": "paid", "value": 100.00 }
  ]
}

Headers

Authorization
string
required
Bearer {token}

Path

uuid
string
required
Order UUID.

Response

id
string
external_reference
string
customer_name
string
customer_email
string
description
string
status
string
paid_at
string
ISO 8601 timestamp.
chargebacked_at
string
payment_method
string
payments
array
Detailed payment records associated with the order.
curl https://api-eu.sulpayments.ch/v1/orders/ord_5f1a3b2c \
  -H "Authorization: Bearer {token}"
{
  "id": "ord_5f1a3b2c",
  "external_reference": "ORDER-001",
  "customer_name": "Jane Doe",
  "customer_email": "jane@example.com",
  "description": "Subscription",
  "status": "paid",
  "paid_at": "2026-02-15T14:23:00Z",
  "payment_method": "credit_card",
  "payments": [
    { "id": "pay_001", "status": "paid", "value": 100.00 }
  ]
}