- Added the
search
query param to theGET v3/templates
endpoint to filter templates by their title. - Introduced the
PATCH /events/{id}
endpoint, which lets you update an event.
- Updated the
POST v3/tasks
endpoint to clarify the behavior of thestart_at
anddue_at
fields in the request body. - Updated the
POST v3/work-requests/:id/tasks
endpoint to clarify the behavior of thestart_at
anddue_at
fields in the request body.
Introduced the PUT /events/{id}/fields
endpoint, which lets you replace existing fields of an event.
Introduced the POST /events
endpoint, which lets you create an event.
Introduced the GET /userlist
endpoint, which lets you fetch a list of users.
Added missing pagination query parameters for the GET /teams
endpoint:
offset
page_size
- Updated experimental Asset and Folder Permission Routes and Request payload schema
- Removed
{accessor_type}
from the following routes:- POST
/assets/{asset_id}/permissions/{accessor_type}
updated to POST/assets/{asset_id}/permissions
. - PATCH
/assets/{asset_id}/permissions/{accessor_type}/{accessor_id}
updated to PATCH/assets/{asset_id}/permissions/{accessor_id}
. - DELETE
/asstes/{asset_id}/permissions/{accessor_type}/{accessor_id}
updated to DELETE/asstes/{asset_id}/permissions/{accessor_id}
. - POST
/folders/{id}/permissions/{accessor_type}
updated to POST/folders/{id}/permissions
. - PATCH
/folders/{folder_id}/permissions/{accessor_type}/{accessor_id}
updated to PATCH/folders/{folder_id}/permissions/{accessor_id}
.
- POST
- Updated the request payload schema of POST
/assets/{asset_id}/permissions
and POST/folders/{id}/permissions
.
- Removed
- Added DELETE
/folders/{id}/permissions/{accessor_id}
to support removing the accessor's access from a folder. - Introduced the GET
v3/teams
endpoint to list available teams.
Updated the following response fields for the GET v3/events/{id}
endpoint:
reference_number
is nowreference_id
is_achieved
is nowis_archived
Introduced the POST v3/campaigns
endpoint, which lets you create a campaign.
Introduced the GET v3/events/{id}
endpoint, which provides details about the specific event.