POST
/
v1
/
customers
/
{customer_id}
/
setName
Update a customer name
curl --request POST \
  --url https://api.metronome.com/v1/customers/{customer_id}/setName \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "Example, Inc."
}'
{
  "data": {
    "id": "d7abd0cd-4ae9-4db7-8676-e986a4ebd8dc",
    "external_id": "team@example.com",
    "ingest_aliases": [
      "team@example.com"
    ],
    "name": "Example, Inc."
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

customer_id
string<uuid>
required

Body

application/json

The customer name

The body is of type object.

Response

200 - application/json

Success

The response is of type object.