Update carrier

This endpoint updates a carrier's information. All fields in the request body are optional - only include the fields you want to update.

URI Parameters

NameTypeDescriptionRequired
idnumberThe carrier IDyes

Request body

NameTypeDescriptionRequired
firstNamestringFirst name of the carrier contact (max 255 characters)no
lastNamestringLast name of the carrier contact (max 255 characters)no
businessNamestringBusiness name of the carrier (max 255 characters)no
emailstringPrimary contact email addressno
addressobjectPhysical address informationno

Address object

NameTypeDescriptionRequired
address1stringPrimary address lineno
address2stringSecondary address lineno
citystringCity nameno
statestringTwo-letter US state codeno
postalCodestring5-digit postal codeno
phonestringContact phone numberno
aliasstringReference name for this addressno

Example

{
  "firstName": "Jane",
  "lastName": "Smith",
  "email": "[email protected]",
  "address": {
    "address1": "456 Market St",
    "city": "Chicago",
    "state": "IL",
    "postalCode": "60602",
    "phone": "312-555-0124",
    "alias": "new-office"
  }
}
📘

Note

Commission rates cannot be modified through the API. Any changes to commission rates must be made through the AgentSnap dashboard.

❗️

Important

If updating the business name, the new name must still be unique within your agency's account.