...
The following table describes the new methods for performing CRUD on Activity objects.
URL | HTTP Type | Description |
---|
/activity | GET | Paginated service to get all Activities (that you can see) |
/activity | POST | Creates a new activity object. |
/activity/{activityId} | GET | Returns the specified activity. - Error Codes
- 403 - Unauthorized access of activity. READ access is permitted if you can see a single entity that was generated by this activity.
- 404 - If activityId is not found.
|
/activity/{activityId} | PUT | Updates the specified activity. - Error Codes
- 403 - Unauthorized update of activity. You must be the creator of the activity to modify it.
- 404 - If activityId is not found.
|
/activity/{activityId} | DELETE | - Error Codes
- 403 - Unauthorized delete of activity. You must be the creator of the activity to modify it.
- 404 - If activityId is not found.
|