Update insured information
API Refs
- Production: Update insured information
- Staging: Update insured information
URI Parameters
Name | Type | Description | Required |
---|---|---|---|
userId | number | insure id | yes |
Request body
Name | Type | Description | Required |
---|---|---|---|
string | The user's email address. This value will be used for all future notifications and web-app logins for this user, so choose carefully. | yes | |
firstName | string | The user's legal first name. | yes |
lastName | string | The user's legal last name. | yes |
Response body
Name | Type | Description | Required |
---|---|---|---|
string | The user's email address. This value will be used for all future notifications and web-app logins for this user, so choose carefully. | yes | |
firstName | string | The user's legal first name. | yes |
lastName | string | The user's legal last name. | yes |
businessName | string | The user's business name, if applicable. Providing a value here will cause this user to be created as an Unverified Business type, otherwise they will be an Unverified Personal type. | no |
address | Array of objects | The insuredās physical mailing address. Providing a value here is only necessary if you want the user to be able to receive paper checks in the mail. | no |
preferences | object | insuredās notifications preferences | yes |
Address
Name | Type | Description | Required |
---|---|---|---|
alias | string | The name of the address information. Will be used to deliver checks. | yes |
address1 | string | Legal address info | yes |
address2 | string | Additional optional legal address info | no |
city | string | Legal city name | yes |
postalCode | number string | Number string with 5 digits length | yes |
state | string | State from values. See first * | yes |
phone | string | Legal insuredās phone number | yes |
Preferences
Name | Type | Description | Required |
---|---|---|---|
paymentEmailsAllowed | boolean | The insured's communication preferences. If enabled, insureds will receive email notifications. | yes |
marketingEmailsAllowed | boolean | The insured's communication preferences. If enabled, insureds will receive email notifications about our new features. | yes |
paymentSMSAllowed | boolean | The insured's communication preferences. If enabled, insureds will receive sms text notifications. | yes |
Example
- Get insured information Request with userId = 1;
- Get insured information Response:
{ "id": 1, "email": "user@example.com", "firstName": "John", "lastName": "Smith", "address": [ { "address1": "11 Birch Hill Street", "address2": "Apt. 123", "city": "Bronx", "postalCode": "10023", "state": "NY", "phone": "123-456-7890", "alias": "Home" } ], "preferences": { "paymentEmailsAllowed": false, "marketingEmailsAllowed": false, "paymentSMSAllowed": false } }
- Update insured information Request with userId = 1:
{ "email": "user.new@example.com", "firstName": "Jake", "lastName": "Lazy" }
- Update insured information Response:
{ "id": 1, "email": "user.new@example.com", "firstName": "Jake", "lastName": "Lazy", "address": [ { "address1": "11 Birch Hill Street", "address2": "Apt. 123", "city": "Bronx", "postalCode": "10023", "state": "NY", "phone": "123-456-7890", "alias": "Home" } ], "preferences": { "paymentEmailsAllowed": false, "marketingEmailsAllowed": false, "paymentSMSAllowed": false } }
Description
You can only receive information about insureds that you created yourself through our API.
Only three values are available for updating: email, first name, and last name.
The business name cannot be changed.
Updated over 1 year ago
Did this page help you?