Objects

Discussion Object

accessLevel
string
Enum: "ADMIN" "COMMENTER" "EDITOR" "EDITOR_SHARE" "OWNER" "VIEWER"
id
number

Discussion Id.

Array of objects

Array of comments in discussion. Only returned if the include query string parameter contains comments.

Array of objects

Array of attachments on discussion comments. Only returned if the include query string parameter contains attachments.

commentCount
number

Number of comments in the discussion.

object

User object containing name and email of the user who created the discussion.

string or number
object

User object containing name and email of the user who last commented on the discussion.

parentId
number

The Id of the associated row or sheet.

parentType
string

Type of parent object.

Enum: "ROW" "SHEET"
readOnly
boolean

Indicates whether the user can modify the discussion.

title
string

Title automatically created by duplicating the first 100 characters of top-level comment.

{
  • "accessLevel": "ADMIN",
  • "id": 0,
  • "comments": [
    ],
  • "commentAttachments": [
    ],
  • "commentCount": 0,
  • "createdBy": {
    },
  • "lastCommentedAt": "2019-08-24T14:15:22Z",
  • "lastCommentedUser": {
    },
  • "parentId": 0,
  • "parentType": "ROW",
  • "readOnly": true,
  • "title": "string"
}
➔ Next to Methods