Skip to main content

authenticators_webauthn_retrieve

GET 

/api/v3//authenticators/webauthn/:id/

Viewset for WebAuthn authenticator devices

Request

Path Parameters

    id integerrequired

    A unique integer value identifying this WebAuthn Device.

Responses

Schema

    pk ID (integer)required
    name stringrequired

    Possible values: <= 200 characters

    created_on date-timerequired

    device_type

    object

    nullable

    required

    WebAuthnDeviceType Serializer

    aaguid uuidrequired
    description stringrequired
    aaguid stringrequired

Authorization: http

name: authentiktype: httpscheme: bearer
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "/api/v3/authenticators/webauthn/:id/");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <TOKEN>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
/api/v3
Auth
Parameters
— pathrequired