Delete a comment

DELETE /platform/comments/{comment}

Path parameters

  • comment integer Required

    The comment id

Responses

  • 204

    Comment deleted successfully

  • 401 application/json

    Unauthorized.

    Hide response attribute Show response attribute object
    • message string
  • 403

    Forbidden - You don't have permission to access this route

  • 404

    Not found - The comment does not exist

DELETE /platform/comments/{comment}
curl \
 --request DELETE 'https://domain.tld/api/v2/platform/comments/{comment}' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (401)
{
  "message": "Unauthorized."
}