Skip to main content

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.

Body

required

    duo_user_id stringrequired

    Possible values: non-empty

    username stringrequired

    Possible values: non-empty

Responses

Enrollment successful

curl -L -X POST '/api/v3/stages/authenticator/duo/:stage_uuid/import_device_manual/' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"duo_user_id": "string",
"username": "string"
}'
Request Collapse all
Base URL
/api/v3
Auth
Parameters
— pathrequired
Body required
{
  "duo_user_id": "string",
  "username": "string"
}