Submit a Comment
This endpoint is used to submit a comment on a specified video. The username that submits the comment must exist in Rev.
PUT
/api/v2/videos/{videoId}/comment
Path Parameters
| Parameter | Type | Validations |
|---|---|---|
| videoId | string, required | ID of video to submit the comment to |
Request Body
application/json
{
"comment": "This is a great video.",
"userName": "john.smith"
}
| Parameter | Type | Validations |
|---|---|---|
| userName | string, required | User name of the person submitting the comment. This user must exist in Rev. Unless the user has been assigned the Account Admin role, this user must also match the authenticated user making the API call. |
| comment | string, required | The text of the comment. |