Skip to main content
POST
/
v1
/
manual_payment_methods
Create
curl --request POST \
  --url https://{defaultHost}/v1/manual_payment_methods \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "manual_payment_method": {
    "name": "Cash on Delivery"
  }
}
'
{
  "id": "df874b5f-40c7-4b05-98d8-eb949436694e",
  "object": "manual_payment_method",
  "archived": false,
  "archived_at": null,
  "description": null,
  "instructions": null,
  "name": "Cash on Delivery",
  "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.

Body

application/json
manual_payment_method
object

Response

200 - application/json

Success

id
string | null

The UUID of the specific object.

object
string

A string describing the object type returned.

archived
boolean

Whether or not this manual payment method is archived.

description
string | null

The description of this payment method that will be shown in the checkout.

instructions
string | null

The instructions that you want your customers to follow to pay for an order. These instructions are shown on the confirmation page after a customer completes the checkout.

name
string

The name of this manual payment method.

reuseable
boolean
archived_at
integer | null

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

discarded_at
integer | null

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

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.