Insurance Policy Booking Disqualifications

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://api-reference.arta.io/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "Arta API Reference MCP server": {
    "url": "https://api-reference.arta.io/mcp"
  }
}

Close
GET /metadata/insurance_policy_booking_disqualifications

The list of reasons that may disqualify an insurance policy from being booked.

Headers

  • Authorization string Required

    Authorize your API calls with an Arta API token

Responses

  • 200 application/json

    A collection of insurance policy booking disqualifications

    Hide headers attributes Show headers attributes
    • content-type string
    • x-arta-request-id string

      A unique identifier for the Arta API call

    Hide response attributes Show response attributes object
    • description string

      A long form description

    • id string

      The ID representing the resource

    • name string

      A brief title for the resource

GET /metadata/insurance_policy_booking_disqualifications
curl \
 --request GET 'https://api.arta.io/metadata/insurance_policy_booking_disqualifications' \
 --header "Authorization: ARTA_APIKey s0e1t2e3c4a5s6t7r8o9n10o11m12y"
Response examples (200)
# Headers
content-type: application/json
x-arta-request-id: FkBjuxbwLLTx4RoAARkx

# Payload
[
  {
    "description": "Insurance coverage cannot be activated because one or more packages have already been picked up by the carrier. Coverage must be purchased before shipment begins.",
    "id": "package_in_transit",
    "name": "Package in transit"
  }
]