GuidesReference Endpoints
Guides

Adding Customer Info and Billing Address

Customer and Billing Address information is required to create an order. This customer is the end consumer that policies are associated with and to whom communication is sent. They are also the party that will create claims.

Example:

{
  "customer": {
    "first_name": "John",
    "last_name": "Doe",
    "email": "[email protected]",
    "phone": "5555555555"
  },
  "billing_address": {
    "address1": "123 Main St",
    "address2": "Ste 1",
    "city": "Phoenix",
    "zip_code": "85020",
    "state": "AZ",
    "country": "US"
  }
}

Details:

FieldTypeMax LengthDescription
customer.first_namestring255First name of customer.
customer.last_namestring255Last name of customer.
customer.emailstring255Customer email. All customer communication will go to this email address.
customer.phonestring35Customer phone number.
billing_address.address1string255Address line 1.
billing_address.address2string255Address line 2.
billing_address.citystring255City.
billing_address.statestring3State. Must be in ISO 3166 format. Note that in non-US addresses, this may be the region or province.
billing_address.countrystring2Country. Must be in ISO 3166 format, specifically alpha 2 or the 2 letter country abbreviation.
billing_address.zip_codestring20Postal code.
📘

Note

Having complete customer and billing address information helps to speed up the claims process.

Todo

  • Add customer object to order request body
  • Add billing address object to order request body