Skip to main content
POST
/
cart
/
checkout
/
{projectUuid}
Checkout a project using account credit
curl --request POST \
  --url https://www.postable.com/api/v1/cart/checkout/{projectUuid} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "order_id": 123,
    "credit_charged": 123,
    "remaining_credit": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

projectUuid
string<uuid>
required

UUID of the project to checkout

Response

Checkout successful

data
object