List Dispositions

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://reference.textline.com/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "Textline API MCP server": {
    "url": "https://reference.textline.com/mcp"
  }
}

Close
GET /api/dispositions.json

Retrieve a list of dispositions set up in the account

Responses

  • 200 application/json

    OK

GET /api/dispositions.json
curl \
 --request GET 'https://application.textline.com/api/dispositions.json'
Response examples (200)
[
  {
    "title": "Technical Support",
    "uuid": "ffb9ba22-1302-4045-8865-449d3eed461c",
    "group": {
      "name": "Sales",
      "phone_number": "(222) 222-2222",
      "uuid": "deb79a6a-0652-4e14-86f2-dc8c5c502369",
      "is_sms_group": true
    }
  },
  {
    "name": "Sales",
    "uuid": "2212a996-ec67-11ea-adc1-0242ac120002"
  }
]