Path parameters

  • uuid string Required
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.

PUT /api/v1/service-level/{uuid}
curl \
 --request PUT 'https://api.plannrcrm.com/api/v1/service-level/6ff8f7f6-1eb3-3525-be4a-3932c805afed' \
 --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"
}