POST
/
customers
/
{id}
curl --request POST \
  --url https://base_url/api/v1/customers/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>"
}'
{
  "message": "Successfully updated customer."
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

The unique identifier of the transaction to update

Body

application/json
name
string

A display name for this customer.

Response

200
application/json
Information about the customer after the update
message
string
Example:

"Successfully updated customer."