add_comment
Submit comments to Emlog blog articles, including the commenter’s name, email, website, and reply context, for enhanced engagement and discussion.
Instructions
Add a comment to an article
Input Schema
Name | Required | Description | Default |
---|---|---|---|
commail | No | Email of the commenter | |
comment | Yes | The comment content | |
comname | Yes | Name of the commenter | |
comurl | No | Website URL of the commenter | |
gid | Yes | The ID of the article to comment on | |
pid | No | Parent comment ID for replies |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"commail": {
"description": "Email of the commenter",
"type": "string"
},
"comment": {
"description": "The comment content",
"type": "string"
},
"comname": {
"description": "Name of the commenter",
"type": "string"
},
"comurl": {
"description": "Website URL of the commenter",
"type": "string"
},
"gid": {
"description": "The ID of the article to comment on",
"type": "number"
},
"pid": {
"description": "Parent comment ID for replies",
"type": "number"
}
},
"required": [
"gid",
"comname",
"comment"
],
"type": "object"
}