Get knowledge status

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/assistants/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"assistants MCP server": {
  "url": "https://twilio.demo.bump-doc.com/doc/assistants/mcp"
}
Close
GET /v1/Knowledge/{id}/Status

Get knowledge status

Path parameters

  • id string Required

    the Knowledge ID.

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • account_sid string

      The SID of the Account that created the Knowledge resource.

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^AC[0-9a-fA-F]{32}$.

    • status string Required

      The status of processing the knowledge source ('QUEUED', 'PROCESSING', 'COMPLETED', 'FAILED')

    • last_status string

      The last status of processing the knowledge source ('QUEUED', 'PROCESSING', 'COMPLETED', 'FAILED')

    • date_updated string(date-time)

      The date and time in GMT when the Knowledge was last updated specified in ISO 8601 format.

GET /v1/Knowledge/{id}/Status
curl \
 --request GET 'https://assistants.twilio.com/v1/Knowledge/{id}/Status' \
 --user "username:password"
Response examples (200)
{
  "account_sid": "string",
  "status": "string",
  "last_status": "string",
  "date_updated": "2026-05-04T09:42:00Z"
}