Get list of carriers
API Refs
- Staging: Get list of carriers
This endpoint returns a list of all carriers in your agency's account.
Response
Name | Type | Description |
---|---|---|
id | number | Unique carrier identifier |
name | string | Carrier business name |
string | Primary contact email | |
commission | number | Commission percentage |
Example
{
"carriers": [
{
"id": 12345,
"name": "ABC Insurance Co",
"email": "[email protected]",
"commission": 15.0
},
{
"id": 12346,
"name": "XYZ Insurance Co",
"email": "[email protected]",
"commission": 12.5
}
]
}
NoteUse the Get carrier by ID endpoint to retrieve full carrier details including address information.
Updated 1 day ago