Fetch the forms for a specific Form Type

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://twilio.demo.bump-doc.com/doc/verify/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Verify MCP server": {
  "url": "https://twilio.demo.bump-doc.com/doc/verify/mcp"
}
Close
GET /v2/Forms/{FormType}

TODO: Resource-level docs

Fetch the forms for a specific Form Type.

Path parameters

  • FormType string Required

    The Type of this Form. Currently only form-push is supported.

    Value is form-push.

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • form_meta

      Additional information for the available forms for this type.

    • form_type string | null

      The Type of this Form

      Value is form-push.

    • forms

      Object that contains the available forms for this type.

    • url string(uri) | null

      The URL to access the forms for this type.

GET /v2/Forms/{FormType}
curl \
 --request GET 'https://verify.twilio.com/v2/Forms/{FormType}' \
 --user "username:password"
Response examples (200)
{
  "form_type": "form-push",
  "url": "https://example.com"
}