stages_authenticator_duo_import_devices_automatic_create
POST/api/v3//stages/authenticator/duo/:stage_uuid/import_devices_automatic/
Import duo devices into authentik
Request
Path Parameters
stage_uuid uuidrequired
A UUID string identifying this Duo Authenticator Setup Stage.
Responses
- 200
- 400
- 403
- application/json
- Schema
- Example (auto)
Schema
countintegerrequired
errorstringrequired
{
"count": 0,
"error": "string"
}
Bad request
- application/json
- Schema
- Example (auto)
Schema
detailstringrequired
codestring
{
"detail": "string",
"code": "string"
}
Authorization: http
name: authentiktype: httpscheme: bearer
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "/api/v3/stages/authenticator/duo/:stage_uuid/import_devices_automatic/");
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());