Skip to main content

authenticators_duo_update

PUT 

/api/v3//authenticators/duo/:id/

Viewset for Duo authenticator devices

Request

Path Parameters

    id integerrequired

    A unique integer value identifying this Duo Device.

Body

required

    name stringrequired

    Possible values: non-empty and <= 64 characters

    The human-readable name of this device.

Responses

Schema

    pk ID (integer)required
    name stringrequired

    Possible values: <= 64 characters

    The human-readable name of this device.

curl -L -X PUT '/api/v3/authenticators/duo/:id/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"name": "string"
}'
Request Collapse all
Base URL
/api/v3
Auth
Parameters
— pathrequired
Body required
{
  "name": "string"
}