Skip to main content
GET
/
v1
/
console
/
case-studies
List Case Studies
curl --request GET \
  --url http://localhost:8000/v1/console/case-studies \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '[
  "<string>"
]'
{
  "data": [
    {
      "created_at": "2023-11-07T05:31:56Z",
      "id": "<string>",
      "is_active": true,
      "slug": "<string>",
      "title": "<string>",
      "avatar": {
        "id": "<string>",
        "is_active": true,
        "name": "<string>",
        "bio": "<string>",
        "image_url": "<string>",
        "role": "<string>",
        "tags": [
          "<string>"
        ]
      },
      "avatar_id": "<string>",
      "description": "<string>",
      "document_url": "<string>",
      "instructions": [
        "<string>"
      ],
      "media_url": "<string>",
      "programme_codes": [
        "<string>"
      ],
      "time_limit_minutes": 123
    }
  ],
  "page": 123,
  "page_size": 123,
  "total": 123,
  "total_pages": 123,
  "message": "<string>",
  "success": true
}

Authorizations

Authorization
string
header
required

Enter your JWT access token

Query Parameters

skip
integer
default:0
Required range: x >= 0
limit
integer
default:20
Required range: 1 <= x <= 100
include_inactive
boolean
default:false

Body

application/json

Response

Successful Response

data
CaseStudyListResponse · object[]
required
page
integer
required
page_size
integer
required
total
integer
required
total_pages
integer
required
message
string | null
success
boolean
default:true