Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl --request GET \ --url https://api.royalti.io/labels/{labelId}/access \ --header 'Authorization: Bearer <token>'
{ "status": "<string>", "data": [ { "TenantId": 123, "LabelId": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "TenantUserId": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "permissions": [ "<string>" ], "TenantUser": { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "firstName": "<string>", "lastName": "<string>", "permissions": {}, "User": { "email": "jsmith@example.com", "profilePicture": "<string>" } } } ], "pagination": { "totalItems": 123, "totalPages": 123, "currentPage": 123, "filteredItems": 123 } }
List Label Access
const response = await fetch('https://api.royalti.io/labels/example-id/access', { method: 'GET', headers: { 'Authorization': `Bearer ${token}`, }, }); const data = await response.json(); console.log(data);
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
Success
Show child attributes