Skip to content

Category Details

Returns the details of a single service category.

Request

GET /api/oauth/v2/resource/service/categories/{uuid}

HeaderValue
AuthorizationBearer {access_token}

URL parameters

ParameterTypeRequiredDescription
uuidstring (UUID)YesUnique category ID

Required scope: services

Response

Success (200 OK)

json
{
  "data": {
    "id": "d4e5f6a7-b8c9-0123-defa-123456789012",
    "name": "Allgemein",
    "description": "Allgemeine Leistungen für Neupatienten",
    "color": "#74AFAD",
    "sort": 0,
    "tenancies": [
      {
        "id": "f0e1d2c3-b4a5-6789-fedc-ba9876543210",
        "name": "Ordination Muster",
        "abbreviation": "OM",
        "color": "#00adba"
      }
    ]
  }
}

Response fields

FieldTypeDescription
data.idstring (UUID)Unique category ID
data.namestringName of the category
data.descriptionstring | nullDescription text
data.colorstringColor as hex code (e.g. #74AFAD)
data.sortintegerSort order
data.tenanciesArrayAssigned tenants
data.tenancies[].idstring (UUID)Tenant ID
data.tenancies[].namestringName of the tenant
data.tenancies[].abbreviationstringAbbreviation
data.tenancies[].colorstringColor as hex code

Note: The API returns additional internal fields not documented here. Only use the fields described here — all others may change without notice.

Beispiele
bash
curl -X GET "https://my.offisy.at/api/oauth/v2/resource/service/categories/b2c3d4e5-f6a7-8901-bcde-f01234567890" \
  -H "Authorization: Bearer {access_token}"
Parameter
Zuerst Token anfordern

Possible errors

StatusCodeDescription
401invalid_clientInvalid or missing access token
403insufficient_scopeScope services not present
404not_foundCategory not found

Offisy GmbH