AddThreadComment
Adds a comment to a discussion thread inside a Space to support team communication and auditability.
Stored Procedure Specific Information
Kintone allows only a small subset of columns to be used in the Exec query. These columns can typically be used with only = comparison.
For example:
EXECUTE AddThreadComment SpaceId = 8, ThreadId = 8, Text = 'Test Comment'
Input
| Name | Type | Required | Description |
| SpaceId | Integer | True | Identifier of the space where the comment is added. |
| ThreadId | Integer | True | Identifier of the thread within the space that receives the new comment. |
| Text | String | False | Content of the comment, supporting line breaks using LF and allowing up to 65,535 characters. This value is required if the Files input is not provided. |
| Mentions | String | False | Array of mention objects used to notify other Kintone users within the comment. |
| Files | String | False | Array containing attachment file data, allowing up to five files. This value is required if the Text input is not provided. |
Result Set Columns
| Name | Type | Description |
| Id | String | Identifier of the newly created comment. |
| Success | String | Indicates whether the operation completed successfully by returning a Boolean value. |