Users

Retrieve a collection of Microsoft 365 users

Retrieve a collection of Microsoft 365 users.

get

/ms365/users

Authorizations
Responses
curl -L \
  --url 'https://HOSTNAME:8887/api/ms365/users' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "count": 100,
  "items": [
    {
      "id": "text",
      "name": "text",
      "email": null
    }
  ]
}

Was this helpful?