List All Courses

GET /v1/courses

Responses

  • 200 application/json

    Course Response

    Hide response attribute Show response attribute object
    • data array[object]

      The courses details

      A course

      Hide data attributes Show data attributes object
      • id integer

        Course ID

      • insertedAt string(date-time)

        Creation timestamp

      • slug string

        Course slug

      • title string Required

        Course title

      • updatedAt string(date-time)

        Update timestamp

GET /v1/courses
curl \
 --request GET 'https://api.azav-pilot.de/v1/courses' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": [
    {
      "id": "<uuid v4>",
      "slug": "zertifizierter-scrum-master",
      "title": "Zertifizierter SCRUM Master"
    },
    {
      "id": "<uuid v4>",
      "slug": "zertifizierter-scrum-master",
      "title": "Zertifizierter SCRUM Master"
    }
  ]
}