Add address for insured

šŸ“˜

API Refs

URI Parameters

NameTypeDescriptionRequired
userIdnumberinsure idyes

Request body

NameTypeDescriptionRequired
aliasstringThe name of the address information. Will be used to deliver checks.yes
address1stringLegal address infoyes
address2stringAdditional optional legal address infono
citystringLegal city nameyes
postalCodenumber stringNumber string with 5 digits lengthyes
statestringState from values. See first *yes
phonestringLegal insuredā€™s phone numberyes

Response headers

NameTypeDescription
locationstringAlias name of added address for insured

Example

  1. Get list of insuredā€™s addresses Request with userId = 1;
  2. Get list of insuredā€™s addresses Response:
    [
      {
        "address1": "11 Birch Hill Street",
        "address2": "Apt. 123",
        "city": "Bronx",
        "postalCode": "10023",
        "state": "NY",
        "phone": "123-456-7890",
        "alias": "Home"
      }
    ]
    
  3. Add address for insured Request:
    {
      "address1": "9234 Bank Avenue",
      "address2": "Apt. 04",
      "city": "Corona",
      "postalCode": "11368",
      "state": "NY",
      "phone": "123-456-7890",
      "alias": "Office"
    }
    
  4. Add address for insured Response Headers:
    "location": 1
    
  5. Get list of insuredā€™s addresses Request with userId = 1;
  6. Get list of insuredā€™s addresses Response:
    [
      {
        "address1": "11 Birch Hill Street",
        "address2": "Apt. 123",
        "city": "Bronx",
        "postalCode": "10023",
        "state": "NY",
        "phone": "123-456-7890",
        "alias": "Home"
      },
      {
        "address1": "9234 Bank Avenue",
        "address2": "Apt. 04",
        "city": "Corona",
        "postalCode": "11368",
        "state": "NY",
        "phone": "123-456-7890",
        "alias": "Office"
      }
    ]
    

Description

This endpoint add new or additional address to your insureds.
After providing all the required information in the request, we will save the new address under the alias you also provided in the request.

If you need to return all the added information at once, you can use the Get insuredā€™s address by alias endpoint, passing in the alias the value that will be in the request response header under the location key.