Recycle Bin - Get Items by Tenant
Retrieve recycle bin items for a specific tenant.
GET /recyclebin/tenants/:tenantId
Request Headers |
Authorization: Bearer <token> |
Path Parameters |
tenantId: string (required) |
Query Parameters |
offset: number (optional) limit: number (optional) |
Success Response |
HTTP/1.1 200 OK { "recyclebin": [ { // Recycle bin item object }, ... ] } |
Search - Get Items by Tenant
Search for items within a specific tenant based on a search query.
GET /search/tenants/:tenantId
Request Headers |
Authorization: Bearer <token> |
Path Parameters |
tenantId: string (required) |
Query Parameters |
offset: number (optional) limit: number (optional) q: search string |
Success Response |
HTTP/1.1 200 OK { "searchResults": [ { // Search result item object }, ... ] } |
โ