For the complete documentation index, see llms.txt. This page is also available as Markdown.

Customers API

Retrieve and manage people in your workspace.

URL
GET https://v3-api.proto.cx/api/platform/v1/customers/{subcompany_id}/customer/{provided_unique_id}/get-customer
Returns
A JSON dictionary of all customer information other than their associated custom field values. 
Parameters
Data Type
Required
Description

subcompany_id

string

subcompany_id from Proto

provided_unique_id

string

user's provided_unique_id

authorization

URL
PUT https://v3-api.proto.cx/api/platform/v1/customers/{subcompany_id}/create-customer/{provided_unique_id}
Body
{
  "external_customer_id": "string" (optional),
  "name": "string" (optional),
  "location": "string" (optional),
  "email": "string" (optional),
  "phone_number": "string" (optional),
  "avatar": "string" (optional)
}
Returns
A JSON dictionary of the created customer.


Last updated