📘
This endpoint returns detailed information about a specific carrier in your agency's account.
Name | Type | Description | Required |
---|
id | number | The carrier ID | yes |
Name | Type | Description |
---|
id | number | Unique carrier identifier |
firstName | string | First name of the carrier contact |
lastName | string | Last name of the carrier contact |
businessName | string | Carrier business name |
email | string | Primary contact email |
commission | number | Commission percentage |
address | object | Physical address information |
Name | Type | Description |
---|
address1 | string | Primary address line |
address2 | string | Secondary address line |
city | string | City name |
state | string | Two-letter US state code |
postalCode | string | 5-digit postal code |
phone | string | Contact phone number |
alias | string | Reference name for this address |
{
"id": 12345,
"firstName": "John",
"lastName": "Smith",
"businessName": "ABC Insurance Co",
"email": "[email protected]",
"commission": 15.0,
"address": {
"address1": "123 Main St",
"address2": "Suite 100",
"city": "Chicago",
"state": "IL",
"postalCode": "60601",
"phone": "312-555-0123",
"alias": "main-office"
}
}
📘