latestOpenAPI 3.0.02026-08-08122526.9 KB

f31fa8578dbb

bind a quote

post/binds

Request body

app_attestationboolean

At the time of bind, the user completing the bind process can attest that they have uploaded/sent an At-Bay application that confirms the following:

  1. Is the application that was used to obtain the Quote and / or Conditional binder
  2. Includes the insured’s signature and any other required fields
  3. Makes no changes to the application used to obtain the Quote / and or Conditional Binder.

If all the statements are true, At-Bay will trigger immediate policy issuance and not require underwriter review. Please reach out for our standard legal language or to confirm your platform’s existing disclaimer language.

Note: the app_attestation field only applies files uploaded to support the signature-related contingency. At-Bay applications signed via electronic signature methods (Docusign, Hellosign) qualify to use this feature.

quote_identifierstring required

unique identifier of the quote. received after POST call, to be used in GET request. quote_id values you generated using API v0.1 are valid inputs for the quote_identifier field.

Example request

{
  "app_attestation": true,
  "client": {
    "additional_contacts": [
      {
        "cell_phone": "+1 123-456-7890",
        "contact_roles": [
          "security_alerts",
          "policy_notices"
        ],
        "email": "example@gmail.com",
        "first_name": "John",
        "last_name": "Atbay"
      }
    ],
    "insured_main_contact": {
      "cell_phone": "+1 123-456-7890",
      "email": "example@gmail.com",
      "first_name": "John",
      "last_name": "Atbay"
    }
  },
  "dates": {
    "effective": "2020-09-15",
    "expiration": "2021-09-15",
    "mpl_retroactive_date": "2021-09-15"
  },
  "quote_identifier": "9916c08c-b00f-43ec-b6fb-5d6f5b17851d"
}

Response

success

company_idstring

Unique company ID provided by At-Bay for the requested submission. client_partner_id values you generated using API v0.1 are valid inputs for the company_id field.

Example response

{
  "quotes": [
    {
      "aggregate_limit": 250000,
      "aggregate_retention": 5000,
      "per_claim_limit": 1000000,
      "per_claim_retention": 5000,
      "quote_identifier": "9916c08c-b00f-43ec-b6fb-5d6f5b17851d",
      "requested_aggregate_limit": 250000,
      "requested_aggregate_retention": 5000,
      "requested_per_claim_limit": 1000000,
      "requested_per_claim_retention": 5000
    }
  ]
}