v1

latestOpenAPI 3.0.02026-07-26167441.9 MB

Retrieve Checkout Session

get/checkout/sessions/{id}

Path parameters

idstring required

The unique identifier of the checkout session (UUID, 36 chars).

Response

200

idstring

The unique identifier of the checkout session (MAX 64; MIN 36).

merchant_order_idstring

The unique identifier of the customer's order (MAX 255; MIN 3).

countrystring

Country where the transaction must be processed (MAX 2; MIN 2; ISO 3166-1).

payment_descriptionstring

The description of the payment (MAX 255; MIN 3).

customer_idstring

The unique identifier of the customer (MAX 64; MIN 36).

callback_urlstring

The URL where to redirect the customer after the payment (MAX 526; MIN 3).

created_atstring

Checkout Session creation date and time (MAX 27; MIN 27; ISO 8601).

workflowstring

The payment workflow type that specifies how the checkout session will be processed.

usedboolean

Specifies whether a checkout session was used previously or not.

checkout_idstring

Example response

{
  "id": "02caeb08-45c0-4670-9736-5bdee1b311f8",
  "merchant_order_id": "1752072398",
  "country": "AR",
  "payment_description": "Test Cards",
  "customer_id": "e937e18e-a684-4d7b-a1a1-ab64c10a941d",
  "callback_url": "https://google.com/?checkoutSession=02caeb08-45c0-4670-9736-5bdee1b311f8",
  "amount": {
    "currency": "ARS",
    "value": 520
  },
  "created_at": "2025-07-09T14:46:39.515251Z",
  "metadata": [
    {
      "key": "age",
      "value": "28"
    }
  ],
  "workflow": "SDK_CHECKOUT",
  "installments": {
    "plan": [
      {
        "installment": 3,
        "rate": 1.5
      }
    ]
  },
  "used": true,
  "checkout_id": "6822f80c-684e-41a3-8628-78963d3d60f7"
}