v6

latestOpenAPI 3.1.02026-07-311856741.1 MB
customers
members
public

Update Member

Update a member of a customer.

Only name, email and role can be updated.

Scopes: members:write

patch/v1/customers/{id}/members/{member_id}

Path parameters

idstring uuid4 required

The customer ID.

The customer ID.

member_idstring uuid required

Request body

namestring nullable

The name of the member.

emailstring email nullable
role'owner' | 'billing_manager' | 'member'

Example request

{
  "name": "Jane Doe"
}

Response

Member updated.

idstring uuid4 required

The ID of the member.

created_atstring date-time required

Creation timestamp of the object.

modified_atstring date-time nullable required

Last modification timestamp of the object.

customer_idstring uuid4 required

The ID of the customer this member belongs to.

emailstring required

The email address of the member.

namestring nullable required

The name of the member.

external_idstring nullable required

The ID of the member in your system. This must be unique within the customer.

role'owner' | 'billing_manager' | 'member' required

Example response

{
  "email": "member@example.com",
  "name": "Jane Doe",
  "external_id": "usr_1337"
}