1. The Comments Object

The Comments Object

Properties

  • user_id

    number

    User/numeric id of collaborator

  • id

    number

    The numeric ID

  • message

    null or string

    The message of a comment, with the datatype of null or a string.

  • message_json

    object

    The message_json property is an array containing JSON objects representing the comments’ messages.


    • text

      string

      A text property usually of type String

    • type

      string

      The type of your field

  • created_at

    string

    Creation date (Format: yyyy-MM-dd'T'HH:mm:ssZ)

  • updated_at

    string

    Latest update date (Format: yyyy-MM-dd'T'HH:mm:ssZ)

Example Object
{
   "comments":[
      {
         "user_id":99734,
         "id":141546,
         "message":null,
         "message_json":[
            {
               "text":"hello 4",
               "type":"text"
            }
         ],
         "created_at":"2024-02-06T22:11:00.119Z",
         "updated_at":"2024-02-06T22:11:00.119Z"
      }
   ]
}