Skip to main content
PATCH
/
v1
/
manual_payment_methods
/
{id}
Update
curl --request PATCH \
  --url https://{defaultHost}/v1/manual_payment_methods/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "manual_payment_method": {
    "name": "Bank Transfer"
  }
}
'
{
  "id": "e9d8a944-9723-4e98-9798-e3e0a7d00a01",
  "object": "manual_payment_method",
  "archived": false,
  "archived_at": null,
  "description": null,
  "instructions": null,
  "name": "Bank Transfer",
  "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.

Path Parameters

id
string
required

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.