Skip to main content

authenticators_admin_static_partial_update

PATCH 

/api/v3//authenticators/admin/static/:id/

Viewset for static authenticator devices (for admins)

Request

Path Parameters

    id integerrequired

    A unique integer value identifying this Static Device.

Body

    name string

    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.

    token_set

    object[]

    required

  • Array [

  • token stringrequired

    Possible values: <= 16 characters

  • ]

  • pk ID (integer)required
curl -L -X PATCH '/api/v3/authenticators/admin/static/: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
{
  "name": "string"
}