Skip to main content
POST
/
api
/
v1
/
courses
/
{course_id}
/
review
/
note
Per Artifact Note
curl --request POST \
  --url https://api.example.com/api/v1/courses/{course_id}/review/note \
  --header 'Content-Type: application/json' \
  --data '
{
  "note": "<string>",
  "artifact_type": "<string>",
  "asset_id": 123,
  "module_index": 123,
  "scene_index": 123
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "ctx": {},
      "input": "<unknown>"
    }
  ]
}

Path Parameters

course_id
string
required

Body

application/json

Per-artifact note request. note is the reviewer's text.

note
string
required
artifact_type
string | null
asset_id
integer | null
module_index
integer | null
scene_index
integer | null

Response

Successful Response