Get list of policyholders
API Refs
- Staging: Get list of policyholders
This endpoint returns a list of all policyholders in your agency's account.
Response
Name | Type | Description |
---|---|---|
id | number | Unique policyholder identifier |
firstName | string | First name of the policyholder |
lastName | string | Last name of the policyholder |
businessName | string | Business name (if provided) |
string | Primary contact email |
Example
{
"policyholders": [
{
"id": 123,
"firstName": "John",
"lastName": "Doe",
"email": "[email protected]",
"businessName": "Acme Insurance"
},
{
"id": 124,
"firstName": "Jane",
"lastName": "Smith",
"email": "[email protected]",
"businessName": null
}
]
}
NoteUse the Get policyholder by ID endpoint to retrieve full policyholder details.
Updated 1 day ago