Vertical Insure
Partner

Onboards New Limited Partner

Onboards a new limited partner

POST
/v1/partners/onboard
AuthorizationBasic <token>

Authorization header with value of Basic <auth string> where the auth string value is a base64 encoded string of <client id>:<client secret>

In: header

entity_namestring

Partner entity name

administrative_email_addressstring

Administrative contact email address

Formatemail
external_id?string

Id of the client within your system

billing_email_address?string

Billing contact email address

Formatemail
address?string

Street address

city?string

City

state?string

State code

postal_code?string

Postal code

travel_retailer?boolean

If true, the partner will be emailed with steps to become a certified travel retailer.

countrystring
Value in"US" | "CA" | "AU"
websitestring

Website

bank_account?

Response Body

application/json

curl -X POST "https://api.verticalinsure.com/v1/partners/onboard" \  -H "Content-Type: application/json" \  -d '{    "entity_name": "string",    "administrative_email_address": "user@example.com",    "country": "US",    "website": "string"  }'
{
  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  "status": "ACTIVE",
  "type": "STANDARD",
  "entity_name": "string",
  "administrative_email_address": "user@example.com",
  "billing_email_address": "user@example.com",
  "address": "string",
  "city": "string",
  "state": "string",
  "postal_code": "string",
  "country": "US",
  "website": "string",
  "travel_retailer_onboarding_url": "string",
  "travel_retailer_onboarding_complete": true
}