List All Notes

GET /v1/courses/{course_id}/notes

Path parameters

Responses

  • 200 application/json

    Note Response

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

      The course notes details

      Hide data attributes Show data attributes object
GET /v1/courses/{course_id}/notes
curl \
 -X GET http://localhost:4000/v1/courses/uuidv4/notes
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
    }
  ]
}