The unique identifier (UUID) of the device
Example:123e4567-e89b-12d3-a456-426614174000
Retrieves comprehensive information about a specific device including its configuration, connection status, associated user, hardware details, and security posture information.
The unique identifier (UUID) of the device
Example:123e4567-e89b-12d3-a456-426614174000
Successfully retrieved the device
Device information including connection status, user association, and security posture
Unique identifier for the device
Timestamp when the device was registered
Timestamp when the device information was last updated
Human-readable name for the device
Whether the device is currently active and can connect
Timestamp of the device’s last network connection
Current connection status of the device
Allowed values:OnlineOfflineDeactivated
Information about the user who owns this device
Example:{"id":"550e8400-e29b-41d4-a716-446655440000","email":"john.doe@company.com","firstName":"John","lastName":"Doe","lastConnection":"2023-01-15T14:30:00Z"}
Unique hardware identifier for the device
Security posture information and compliance status
Version of the Cipherscale client application installed on the device
curl --request GET \
--url https://public-api.cipherscale.com/qa/tenants/devices/123e4567-e89b-12d3-a456-426614174000 \
--header 'Accept: application/json' \
--header 'Content-Type: application/json'{
"id": "id",
"createdAt": "createdAt",
"updatedAt": "updatedAt",
"name": "name",
"active": false,
"lastConnection": "lastConnection",
"status": "Online",
"user": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"email": "john.doe@company.com",
"firstName": "John",
"lastName": "Doe",
"lastConnection": "2023-01-15T14:30:00Z"
},
"hardwareId": "hardwareId",
"posture": {},
"appVersion": "appVersion"
}Permanently removes a device from the tenant. This operation will disconnect the device from the network and revoke all associated access permissions.
The unique identifier (UUID) of the device to delete
Successfully deleted the device
curl --request DELETE \
--url https://public-api.cipherscale.com/qa/tenants/devices/ \
--header 'Content-Type: application/json'Successfully deleted the deviceTemporarily disables a device, preventing it from connecting to the network while preserving its configuration and user association. This is useful for security incidents or temporary access restrictions.
The unique identifier (UUID) of the device to deactivate
Successfully deactivated the device
curl --request POST \
--url https://public-api.cipherscale.com/qa/tenants/devices//deactivate \
--header 'Content-Type: application/json'Successfully deactivated the deviceRestores network access for a previously deactivated device. This operation allows the device to reconnect to the network with its previous configuration and permissions.
The unique identifier (UUID) of the device to reactivate
Successfully reactivated the device
curl --request POST \
--url https://public-api.cipherscale.com/qa/tenants/devices//reactivate \
--header 'Content-Type: application/json'Successfully reactivated the deviceNetwork gateway configuration and management