Skip to main content

authenticators_admin_totp_update

PUT 

/api/v3//authenticators/admin/totp/:id/

Viewset for totp authenticator devices (for admins)

Request

Path Parameters

    id integerrequired

    A unique integer value identifying this TOTP Device.

Body

required

    name stringrequired

    Possible values: non-empty and <= 64 characters

    The human-readable name of this device.

Responses

Schema

    name stringrequired

    Possible values: <= 64 characters

    The human-readable name of this device.

    pk ID (integer)required
curl -L -X PUT '/api/v3/authenticators/admin/totp/: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"
}