Get all subjects

Returns a paginated list of all subjects

Query Parameters
  • fields
    Type: string

    Comma-separated list of fields to include

  • limit
    Type: integer
    min:  
    1
    max:  
    100

    Maximum number of items to return

  • offset
    Type: integer
    min:  
    0

    Number of items to skip

Responses
  • application/json
  • application/json
  • application/json
Request Example for get/case/1.1/CFSubjects
curl 'https://platform.dev.timeback.com/case/1.1/CFSubjects?fields=&limit=10&offset=0' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "CFSubjects": [
    {
      "identifier": "string",
      "uri": "https://example.com",
      "title": "string",
      "hierarchyCode": "string",
      "description": "string",
      "extensions": {},
      "lastChangeDateTime": "2026-05-15T08:59:55.224Z"
    }
  ],
  "offset": 1,
  "limit": 1,
  "total": 1
}