stages_authenticator_duo_import_device_manual_create
POST/api/v3//stages/authenticator/duo/:stage_uuid/import_device_manual/
Import duo devices into authentik
Request
Path Parameters
stage_uuid uuidrequired
A UUID string identifying this Duo Authenticator Setup Stage.
- application/json
Bodyrequired
duo_user_idstringrequired
Possible values: non-empty
usernamestringrequired
Possible values: non-empty
Responses
- 204
- 400
- 403
Enrollment successful
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_device_manual/");
request.Headers.Add("Authorization", "Bearer <token>");
var content = new StringContent("{\n \"duo_user_id\": \"string\",\n \"username\": \"string\"\n}", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());