GET Stream
Get parameters:
offset– (int) offsetmaxSize– (int) max size
GET {entityType}/{id}/stream
Get parameters:
offset– (int) offsetmaxSize– (int) max size
PUT {entityType}/{id}/subscription
DELETE {entityType}/{id}/subscription
POST Note
Payload attributes:
type– should be the string valuePostparentId– ID of the record to post toparentType– entity type of the record to post topost– text to postattachmentsIds– optional, array of IDs of attachments (should be uploaded in separate request beforehand)
Payload example:
{
"type": "Post",
"parentId": "someId",
"parentType": "Case",
"post": "This is a test\n\nHello"
}