v1

latestOpenAPI 3.1.02026-07-24233206489.1 KB
Checkout Sessions

Create Checkout Session (V2)

Creates a new checkout session.

post/v2/checkout_sessions

Request body

Example request

{
  "data": {
    "attributes": {
      "split_payment": {
        "recipients": [
          {
            "split_type": "fixed"
          }
        ]
      }
    }
  }
}

Response

Checkout session created successfully

has_moreboolean

Example response

{
  "data": {
    "attributes": {
      "checkout_url": "https://checkout.paymongo.com/xxx"
    }
  }
}