Add a review comment as a guest. Requires guest_id, task_id, task_status_id and text when the link allows commenting. Optional password query param if the link is protected.
POST
/shared/playlists/{token}/comments
curl \
--request POST 'http://api.example.com/shared/playlists/{token}/comments' \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/json" \
--data '{"guest_id":"string","task_id":"string","task_status_id":"string","text":"string","checklist":[{}]}'
Request examples
{
"guest_id": "string",
"task_id": "string",
"task_status_id": "string",
"text": "string",
"checklist": [
{}
]
}
Response examples (201)
{}
Response examples (400)
{
"error": "string"
}
Response examples (403)
{
"error": "string"
}