Paginated list of activities for account. Ordered from the most recent one to the oldest one.
projectId required | string The unique ID of the project. You can find this on the Sinch Dashboard. |
Recent activities on account
BadRequest
Unauthorized
NotFound
InternalServerError
Response for all account activities.
{- "totalSize": 2,
- "pageSize": 50,
- "notifications": [
- {
- "type": "CREATED",
- "created": "2023-02-10T11:41:14.202Z"
}, - {
- "type": "COMMENT_ADDED",
- "created": "2023-02-10T11:41:14.202Z",
- "comment": "Example comment"
}
]
}
Creates a comment for an account.
projectId required | string The unique ID of the project. You can find this on the Sinch Dashboard. |
Comment data
Example body request to create a comment.
{- "comment": "Example comment."
}
Response when successfully creating a comment.
{- "type": "CREATED",
- "comment": "Example comment",
- "created": "2023-01-19T13:11:08.204Z"
}
{- "type": "RCS_ACCOUNT_COMMENT_ADDED",
- "comment": "Example comment"
}