API updates
December 19th, 2024
- 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 avialable teams.