authenticators_admin_webauthn_retrieve
GET/api/v3//authenticators/admin/webauthn/:id/
Viewset for WebAuthn authenticator devices (for admins)
Request
Path Parameters
id integerrequired
A unique integer value identifying this WebAuthn Device.
Responses
- 200
- 400
- 403
- application/json
- Schema
- Example (from schema)
Schema
pk ID (integer)required
name stringrequired
Possible values: <= 200 characters
created_on date-timerequired
device_type
object
nullable
required
aaguid stringrequired
{
"pk": 0,
"name": "string",
"created_on": "2024-09-27T14:26:17.996Z",
"device_type": {
"aaguid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"description": "string"
},
"aaguid": "string"
}
- 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/authenticators/admin/webauthn/:id/' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'