Create policyholder
API Refs
- Staging: Create policyholder
This endpoint creates a new policyholder in your agency's account.
Request body
| Name | Type | Description | Required |
|---|---|---|---|
| firstName | string | First name of the policyholder (max 255 characters) | yes |
| lastName | string | Last name of the policyholder (max 255 characters) | yes |
| string | Primary contact email address | yes | |
| businessName | string | Business name (optional) | no |
Response
| Name | Type | Description |
|---|---|---|
| id | number | Unique policyholder identifier |
Example
{
"firstName": "John",
"lastName": "Doe",
"email": "[email protected]",
"businessName": "Acme Insurance"
}
NoteThe email address must be unique within your account.
Updated 4 months ago