List All Notes

GET /v1/courses/{course_id}/notes

Path parameters

  • course_id string Required

    Participant ID

Responses

  • 200 application/json

    Note Response

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

      The course notes details

      A note on a course

      Hide data attributes Show data attributes object
      • author_id string

        Author ID

      • content string

        Note content (HTML formatted)

      • date string(date)

        Note date

      • id integer

        Note ID

      • is_pinned boolean

        Whether the note is pinned

      • title string

        Note title

GET /v1/courses/{course_id}/notes
curl \
 --request GET 'https://api.azav-pilot.de/v1/courses/uuidv4/notes' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": [
    {
      "id": 0,
      "date": "2020-04-20",
      "title": "",
      "content": "",
      "author_id": "",
      "is_pinned": false
    },
    {
      "id": 0,
      "date": "2020-04-20",
      "title": "",
      "content": "",
      "author_id": "",
      "is_pinned": false
    }
  ]
}