List Carriers

List carriers that can quote for a team and (optionally) a product.

Lists carriers that can quote. When passing carriers through the Create Quote make sure and use the carrier's "code".

Endpoint
POST /api/v1/carriers

Request body

{
  "appointed_only": true,
  "product_code": "optional"
}
  • appointed_only=true: only appointed carriers for the team.

  • appointed_only=false: all carriers with active quotable APIs.

Response (200)

[
  {
    "name": "Frontline",
    "code": "frontline",
    "appointed": true,
  }
]

Last updated