delete_comment
Remove unwanted or outdated comments from discussions in Storyblok by specifying the discussion and comment IDs through the Management API.
Instructions
Deletes a comment from a discussion via the Storyblok Management API.
- discussion_id: Numeric ID of the discussion.
- comment_id: Numeric ID of the comment.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comment_id | Yes | ||
discussion_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"comment_id": {
"title": "Comment Id",
"type": "integer"
},
"discussion_id": {
"title": "Discussion Id",
"type": "integer"
}
},
"required": [
"discussion_id",
"comment_id"
],
"title": "delete_commentArguments",
"type": "object"
}