GET /external/v1/peopleList the workspace people directory across all Accounts, including unassigned people created from public email addresses. Each result includes its linked signal count.
Requirements
Request
Parameters
| Name | Type | Description |
|---|---|---|
| q | string | Search name, email, role, Account name, or Account domain. |
| limit | number | Maximum results, from 1 to 100. |
| offset | number | Number of people to skip. |
Responses
Workspace people were retrieved.
Example Request
/external/v1/peoplecurl -X GET 'https://zentrik.ai/api/external/v1/people?q=buyer' \
-H 'Authorization: Bearer YOUR_API_KEY'Example Response
{
"items": [
{
"id": "person-uuid",
"name": "Primary product contact",
"email": "buyer@example.com",
"role": "VP Product",
"accountId": "account-uuid",
"account": {
"id": "account-uuid",
"name": "Example",
"domain": "example.com"
},
"signalCount": 4
}
],
"totalRecords": 1,
"limit": 50,
"offset": 0,
"hasMore": false
}