authenticators_sms_update
PUT/api/v3//authenticators/sms/:id/
Viewset for sms authenticator devices
Request
Path Parameters
id integerrequired
A unique integer value identifying this SMS Device.
- application/json
Body
required
name stringrequired
Possible values: non-empty
and <= 64 characters
The human-readable name of this device.
Responses
- 200
- 400
- 403
- application/json
- Schema
- Example (from schema)
Schema
name stringrequired
Possible values: <= 64 characters
The human-readable name of this device.
pk ID (integer)required
phone_number stringrequired
{
"name": "string",
"pk": 0,
"phone_number": "string"
}
- application/json
- Schema
- Example (from schema)
Schema
non_field_errors string[]
code string
{
"non_field_errors": [
"string"
],
"code": "string"
}
- application/json
- Schema
- Example (from schema)
Schema
detail stringrequired
code string
{
"detail": "string",
"code": "string"
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X PUT '/api/v3/authenticators/sms/:id/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"name": "string"
}'