Skip to main content
GET
/
v1
/
manual_payment_methods
List
curl --request GET \
  --url https://{defaultHost}/v1/manual_payment_methods \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "pagination": {
    "count": 1,
    "limit": 20,
    "page": 1,
    "url": "/v1/manual_payment_methods"
  },
  "data": [
    {
      "id": "aa9077fa-4d6d-4088-8c46-b941f3520f32",
      "object": "manual_payment_method",
      "archived": false,
      "archived_at": null,
      "description": null,
      "instructions": null,
      "name": "Manual Payment Method 1",
      "reusable": true,
      "discarded_at": 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.

Query Parameters

archived
boolean

Only return objects that are archived or not archived.

ids[]
string[]

Only return objects with the given IDs.

limit
integer

A limit on the number of items to be returned, between 1 and 100.

page
integer

The page of items you want returned.

reusable
boolean

Only return payment methods that are reusable or not.

Response

200 - application/json

Success

object
string

A string describing the object type returned.

pagination
object
data
array

An array of objects.