AmTrust Conversa Engine API

Conversational engine consent API used by AmTrust's chatbot/outbound calling experience — collects call consent for a claim contact.

Operations 1

POST /callconsent Collect Consent #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/amtrust-financial-services-conversa-engine-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

amtrust-financial-services-conversa-engine-api-openapi.json Raw ↑
{
  "openapi": "3.0.1",
  "info": {
    "title": "Conversa Engine API",
    "description": "Conversa Engine API List",
    "version": "1.0"
  },
  "servers": [
    {
      "url": "https://gateway.amtrustgroup.com/btgchatbot"
    },
    {
      "url": "https://prod-apim-gw.amtrustservices.com/btgchatbot"
    }
  ],
  "paths": {
    "/callconsent": {
      "post": {
        "summary": "Collect Consent",
        "description": "This endpoint allows you to collect consent from an external interface",
        "operationId": "callConsent",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "oneOf": [
                  {
                    "required": [
                      "record_id",
                      "consent"
                    ],
                    "type": "object",
                    "properties": {
                      "record_id": {
                        "type": "integer",
                        "description": "Unique identifier for the record (e.g., 0 or 1)"
                      },
                      "consent": {
                        "type": "integer",
                        "description": "Consent value (e.g., 0 or 1)"
                      }
                    }
                  },
                  {
                    "required": [
                      "op_type",
                      "data"
                    ],
                    "type": "object",
                    "properties": {
                      "op_type": {
                        "type": "string",
                        "description": "Operation Type (e.g., sms/call)"
                      },
                      "data": {
                        "type": "string",
                        "description": "Data string (e.g. 123456789,modified_duty_yes)"
                      }
                    }
                  }
                ]
              },
              "example": {
                "record_id": 0,
                "consent": 0
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Request Submitted Successfully",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "status": {
                      "type": "string",
                      "example": "success"
                    }
                  }
                },
                "example": {
                  "status": "success"
                }
              }
            }
          },
          "400": {
            "description": "Invalid input"
          },
          "500": {
            "description": "Internal server error"
          }
        }
      }
    }
  },
  "components": {
    "securitySchemes": {
      "apiKeyHeader": {
        "type": "apiKey",
        "name": "subscriber_id",
        "in": "header"
      },
      "apiKeyQuery": {
        "type": "apiKey",
        "name": "subscriber_id",
        "in": "query"
      }
    }
  },
  "security": [
    {
      "apiKeyHeader": []
    },
    {
      "apiKeyQuery": []
    }
  ]
}