GET
/
api
/
v1
/
payment
/
{id}
curl --request GET \
  --url https://checkout.suave.money/api/v1/payment/{id}
{
  "payment_order_id": "<string>",
  "payment_order_status": "<string>",
  "env_mode": "live",
  "success_callback_url": "<string>",
  "cancel_callback_url": "<string>",
  "failure_callback_url": "<string>",
  "line_items": [
    {
      "title": "<string>",
      "description": "<string>",
      "image_url": "<string>",
      "quantity": 123
    }
  ],
  "order_price": {
    "currency": "<string>",
    "amount": 123,
    "decimals": 123
  },
  "transaction_hash": "<string>",
  "metadata": {}
}

Path Parameters

id
string
required

Payment order ID

Response

200 - application/json

A JSON object with payment order details

The response is of type object.