# Get Issue Comments GET /{issueId}/comments #### Description Retrieves all comments from an issue’s Activity Feed, including details such as author, timestamp, and message content. Endpoint: GET /{issueId}/comments Version: 1.0 Security: oauth2 ## Path parameters: - `issueId` (string, required) Unique ID of the issue. ## Response 200 fields (application/json): - `id` (string) The unique identifier for the comment. Example: "ad21d858-c271-4c6d-8780-fecf6b16e534" - `orgId` (string) The unique identifier for the organization the comment belongs to. Example: "ad21d858-c271-4c6d-8780-fecf6b16e534" - `commentTextFormatted` (string) The formatted text of the comment. Example: "This is a comment mentioning a user {{user:53c8880a-7e14-4493-a392-0f10bf11cfce}}" - `objectId` (string) The unique identifier of the object the comment is attached to. Example: "ad21d858-c271-4c6d-8780-fecf6b16e534" - `objectType` (string) The type of the object. Enum: "audit", "connection", "control", "controlScope", "domain", "freshnessHistory", "exportFile", "label", "organization", "organizationUser", "policy", "program", "proof", "request", "requirement", "risk", "riskRegister", "section", "task", "scope", "template", "user" - `status` (string) The status of the object Enum: "active", "archived" - `createdBy` (string) The unique identifier of the user who created the comment. Example: "554fbf38-f579-4cc8-819f-6377bd9defcb" - `updatedBy` (string) The unique identifier of the user who last updated the comment. Example: "53c8880a-7e14-4493-a392-0f10bf11cfce" - `createdOn` (string) The date and time the comment was created (ISO-8601 format). Example: "2024-06-23T19:37:23+0000" - `updatedOn` (string) The date and time the comment was last updated (ISO-8601 format). Example: "2024-06-27T22:28:30+0000" - `sourceUpdatedOn` (string) The date and time the comment was updated in teh source system (ISO-8601 format). - `deletedOn` (string) The date and time the comment was deleted (ISO-8601 format). - `isInternal` (boolean) Whether the comment is internal-only and not visible to external auditors.