Skip to main content
PUT
/
v1
/
customers
/
{customer_id}
Update a customer
curl --request PUT \
  --url https://api.monigo.co/v1/customers/{customer_id} \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "<string>",
  "metadata": {},
  "name": "<string>"
}
'
{}

Authorizations

Authorization
string
header
required

API key with Bearer prefix (for programmatic/server-to-server access), format: Bearer {api_key}

Path Parameters

customer_id
string
required

Customer ID

Body

application/json

Customer update fields

email
string
metadata
object
name
string

Response

OK

The response is of type object.