27 lines
495 B
YAML
27 lines
495 B
YAML
|
Updates device secret info (algorithm)
|
||
|
---
|
||
|
tags:
|
||
|
- Device
|
||
|
parameters:
|
||
|
- in: path
|
||
|
name: device_id
|
||
|
required: true
|
||
|
type: integer
|
||
|
description: Id of the device
|
||
|
- in: body
|
||
|
name: body
|
||
|
required: true
|
||
|
schema:
|
||
|
type: object
|
||
|
$ref: '#/definitions/DeviceSecretInfo'
|
||
|
responses:
|
||
|
200:
|
||
|
description: Success
|
||
|
schema:
|
||
|
type: object
|
||
|
required:
|
||
|
- content
|
||
|
properties:
|
||
|
content:
|
||
|
$ref: '#/definitions/DeviceSecretInfo'
|