Last updated 5 months ago
Expects Id of an existing tenant
Indicates successful retrieval of a list of users of a workspace
const response = await fetch('/tenants/{tenantId}/pbiUsers', { method: 'GET', headers: { "Authorization": "Bearer JWT" }, }); const data = await response.json();
{ "odatacontext": "text", "value": [ { "emailAddress": "text", "displayName": "text", "identifier": "text", "graphId": "text", "userType": "text", "profile": { "id": "123e4567-e89b-12d3-a456-426614174000", "displayName": "text" } } ] }