Instances

Get my devices (current user)

Returns a summary of the devices belonging to the authenticated user, including connection state and last-seen timestamps, wrapped in the standard WUTS response envelope.

GET
/user/devices

Returns a summary of the devices belonging to the authenticated user, including connection state and last-seen timestamps, wrapped in the standard WUTS response envelope.

Authorization

bearerAuth
AuthorizationBearer <token>

Per-user API token (UUID v4) sent as Authorization: Bearer <token>. Identifies the tenant and user.

In: header

Response Body

application/json

application/json

curl -X GET "https://example.com/user/devices"
{  "success": true,  "data": {    "devices": [      {        "id": "d3f1a2b4-7c6e-4f01-9a2b-1c2d3e4f5a6b",        "name": "Sales WhatsApp",        "connected": true,        "last_seen": "2026-06-15T13:45:00Z",        "created_at": "2026-06-01T09:00:00Z"      }    ],    "count": 1,    "user_id": "9b1c7e2a-44d3-4a55-8f10-2b3c4d5e6f70"  }}
{  "success": false,  "error": "validation failed",  "error_code": "VALIDATION_ERROR",  "timestamp": "2026-06-15T12:00:00Z"}