Get policyholder by ID
API Refs
- Staging: Get policyholder by ID
This endpoint returns detailed information about a specific policyholder in your agency's account.
URI Parameters
Name | Type | Description | Required |
---|---|---|---|
id | number | The policyholder ID | yes |
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
{
"id": 123,
"firstName": "John",
"lastName": "Doe",
"email": "[email protected]",
"businessName": "Acme Insurance"
}
Updated 1 day ago