providers_microsoft_entra_users_retrieve
GET/api/v3//providers/microsoft_entra_users/:id/
MicrosoftEntraProviderUser Viewset
Request
Path Parameters
id uuidrequired
A UUID string identifying this Microsoft Entra Provider User.
Responses
- 200
- 400
- 403
- application/json
- Schema
- Example (from schema)
Schema
id uuidrequired
microsoft_id stringrequired
user integerrequired
user_obj
object
required
provider integerrequired
attributes required
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"microsoft_id": "string",
"user": 0,
"user_obj": {
"pk": 0,
"username": "string",
"name": "string",
"is_active": true,
"last_login": "2024-09-27T14:26:18.574Z",
"email": "[email protected]",
"attributes": {},
"uid": "string"
},
"provider": 0
}
- application/json
- Schema
- Example (from schema)
Schema
non_field_errors string[]
code string
{
"non_field_errors": [
"string"
],
"code": "string"
}
- application/json
- Schema
- Example (from schema)
Schema
detail stringrequired
code string
{
"detail": "string",
"code": "string"
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET '/api/v3/providers/microsoft_entra_users/:id/' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'