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": "bf3b21ed-7d8e-441a-93fe-47bf6eacc000",
  "name": "Gold",
  "created_at": "2026-06-01T10:39:16+01:00",
  "updated_at": "2026-06-01T10:39:16+01:00"
}