9459b4cfc1e0

latestOpenAPI 3.1.02026-07-2498134321.1 KB
Workflows

Create a Comment on a Workflow

Creates a comment in the specified workflow's activity feed.

OAuth Scope required: public.workflows.createComments

post/workflows/{id}/comments

Path parameters

idstring required

The unique identifier or Ironclad ID of a workflow.

Headers

x-as-user-emailstring
Example:jane.doe@test.com

Denotes the actor of the request. When used, the API will take into account this user's permissions and access. This or x-as-user-id is required when the associated token was produced from the Client Credentials grant or with legacy bearer tokens on select endpoints. More information about permissions.

x-as-user-idstring
Example:5f0375c4cdc1927a3c5edcd3

Denotes the actor of the request. When used, the API will take into account this user's permissions and access. This or x-as-user-email is required when the associated token was produced from the Client Credentials grant or with legacy bearer tokens on select endpoints. More information about permissions.

Request body

commentstring required

The comment to be added to the workflow activity feed. To @-mention a user, use the format <@john.doe@example.com>.

addUsersToWorkflowboolean

Must be set to true if mentioning users who are not participants on the workflow.

repliedToActivityFeedMessageIdstring

Use to specify a comment to reply to. Message ID can be found via the List All Comments on a Workflow endpoint.

Example request

{
  "creator": {
    "email": "example@example.com"
  }
}

Response

200

idstring required

Unique ID of the comment-type activity feed item

commentMessagestring required

The comment message

timestampstring date-time required

When the comment was posted (ISO 8601 format)

isExternalboolean

Whether the comment was made by an external user

addedParticipantsstring[] required

The users added to the workflow by the comment

Example response

{
  "id": "8asdkyrhl",
  "commentMessage": "Do or do not. There is no try.",
  "timestamp": "2025-01-17T17:51:49.008Z",
  "author": {
    "type": "internalUser",
    "companyName": "Jabba the Hutt Industries",
    "displayName": "Boba Fett",
    "email": "boba@example.com",
    "userId": "63d415e0dd0d828c3a878548"
  },
  "repliedTo": {
    "item": "uwshlxaa2",
    "itemAuthor": {
      "type": "internalUser",
      "companyName": "Jabba the Hutt Industries",
      "displayName": "Boba Fett",
      "email": "boba@example.com",
      "userId": "63d415e0dd0d828c3a878548"
    }
  },
  "mentionedUserDetails": [
    {
      "id": "63d415e0dd0d828c3a878548",
      "displayName": "Yoda",
      "email": "yoda@example.com"
    }
  ],
  "addedParticipants": [
    "Obi-Wan Kenobi"
  ],
  "reactions": [
    {
      "emojiId": "joy",
      "reactors": [
        {
          "type": "internalUser",
          "companyName": "Jabba the Hutt Industries",
          "displayName": "Boba Fett",
          "email": "boba@example.com",
          "userId": "63d415e0dd0d828c3a878548"
        }
      ]
    }
  ]
}