Skip to main content
GET
/
v1
/
manual_charges
/
{id}
Retrieve
curl --request GET \
  --url https://{defaultHost}/v1/manual_charges/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "17087f32-431a-4421-a5e7-2bb4ab04f2d0",
  "object": "manual_charge",
  "amount": 2900,
  "currency": "usd",
  "checkout": "6772d7ff-4ee7-48ad-af13-8d85af4223a5",
  "manual_payment_method": null,
  "created_at": 1767909723,
  "updated_at": 1767909723
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

200 - application/json

Success

id
string | null

The UUID of the specific object.

object
string

A string describing the object type returned.

amount
integer

The amount in cents that was charged, represented as a whole integer. For example 9900 is equivalent to $99.

currency
string

Three-letter ISO currency code, in lowercase.

checkout

Expandable – The associated checkout ID.

manual_payment_method

Expandable – The associated manual payment method ID.

created_at
integer | null

Time at which the object was created. Measured in seconds since the Unix epoch.

updated_at
integer | null

Time at which the object was last updated. Measured in seconds since the Unix epoch.