# Lists activities on sender Paginated list of activities for sender. Ordered from the most recent one to the oldest one. Endpoint: GET /v1/projects/{projectId}/rcs/senders/{senderId}/activities Version: 1.2.16 Security: BasicAuth, BearerAuth ## Path parameters: - `projectId` (string, required) The unique ID of the project. You can find this on the Sinch Dashboard. - `senderId` (string, required) The unique ID of the sender. ## Query parameters: - `pageToken` (string) The page token if retrieving the next page from a previous query. - `pageSize` (number) The page size requested. ## Response 200 fields (application/json): - `totalSize` (number, required) Total size of the entries matching the search query. - `pageSize` (number, required) Requested size of the page. - `notifications` (array, required) - `notifications.type` (string, required) Enum: "ACTIVE", "COMMENT_ADDED", "CREATED", "DELETED", "EDITED", "INACTIVE", "TEST" - `notifications.created` (string) - `notifications.author` (string) - `notifications.comment` (string) - `previousPageToken` (string) Encoded token to use in list request to fetch previous batch of entries. - `nextPageToken` (string) Encoded token to use in list request to fetch next batch of entries. ## Response 401 fields (application/json): - `errorCode` (string) Error code allows to programmatically handle errors. Example: "unauthorized_error" - `message` (string) Human readable message. Example: "Unauthorized error." - `resolution` (string) Human readable message with an explanation of how to solve the error. Example: "Verify that projectId is correct." ## Response 404 fields (application/json): - `errorCode` (string) Error code allows to programmatically handle errors. Example: "sender_not_found" - `message` (string) Human readable message. Example: "Sender not found." - `resolution` (string) Human readable message with an explanation of how to solve the error. Example: "Verify that the parameters are correct." ## Response 500 fields (application/json): - `errorCode` (string) Error code allows to programmatically handle errors. Example: "internal_error" - `message` (string) Human readable message. Example: "Internal server error." - `resolution` (string) Human readable message with an explanation of how to solve the error. Example: "Please wait and try again, if the error persist please contact support."