v1

latestOpenAPI 3.0.3MIT2026-07-22399194.2 KB
Devices

Activation Token

Create a new device activation token.

post/devices/{device_id}/activation_token

Path parameters

device_idstring required
Example:dvc_123

The unique identifier of the device.

Request body

allow_reactivationboolean

Whether this token can reactivate already activated devices. If false, the token is unable to activate devices which are already activated.

Response

Successfully created the device activation token.

tokenstring required

The token.

expires_atstring date-time required

The expiration date and time of the token.

Example response

{
  "token": "eyJhbGciOiJ...",
  "expires_at": "2025-01-01T00:00:00Z"
}