Skip to main content

authenticators_sms_partial_update

PATCH 

/api/v3//authenticators/sms/:id/

Viewset for sms authenticator devices

Request

Path Parameters

    id integerrequired

    A unique integer value identifying this SMS 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.

    pk ID (integer)required
    phone_number stringrequired
curl -L -X PATCH '/api/v3/authenticators/sms/: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"
}