List All Notes

GET /v1/participants/{participant_id}/notes

Path parameters

  • participant_id string Required

    Participant ID

Responses

  • 200 application/json

    Note Response

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

      The participant notes details

      A note on a participant

      Hide data attributes Show data attributes object
      • author_id string

        Author ID

      • content string

        Note content (HTML formatted)

      • date string(date-time)

        Note date

      • id integer

        Note ID

      • is_pinned boolean

        Whether the note is pinned

      • title string

        Note title

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