Create a service level Run in API Explorer

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://apidocs.plannrcrm.com/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"PlannrCRM MCP server": {
  "url": "https://apidocs.plannrcrm.com/mcp"
}
Close
POST /api/v1/service-level
application/json

Body

  • name string Required

    Name of the service level

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
    • uuid string

      The UUID of the resource.

    • name string

      The name of the service level.

    • created_at string

      The timestamp of when the resource was created.

    • updated_at string

      The timestamp of when the resource was updated.

POST /api/v1/service-level
curl \
 --request POST 'https://api.plannrcrm.com/api/v1/service-level' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"name":"Gold"}'
Request examples
{
  "name": "Gold"
}
Response examples (200)
{
  "uuid": "9beda979-b495-497c-8eac-3d655233b0f0",
  "name": "Gold",
  "created_at": "2026-06-18T16:11:34+01:00",
  "updated_at": "2026-06-18T16:11:34+01:00"
}