API ReferenceapiclinicalGET /v1/wearables/connections

GET /v1/wearables/connections

Service: clinical · operationId: (none)

List the current patient’s wearable connections

Required scopes

(no scope declared — review service config)

Responses

200 Wearable connections

{
  "type": "object",
  "properties": {
    "connections": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "format": "uuid"
          },
          "patient_id": {
            "type": "string"
          },
          "provider": {
            "type": "string"
          },
          "junction_user_id": {
            "type": "string"
          },
          "status": {
            "type": "string",
            "enum": [
              "connected",
              "disconnected",
              "error",
              "pending"
            ]
          },
          "connected_at": {
            "type": "string"
          },
          "last_synced_at": {
            "type": [
              "string",
              "null"
            ]
          }
        },
        "required": [
          "id",
          "patient_id",
          "provider",
          "junction_user_id",
          "status",
          "connected_at",
          "last_synced_at"
        ]
      }
    }
  },
  "required": [
    "connections"
  ]
}

Example

curl -X GET https://clinical.platform.loop.health/v1/wearables/connections \
  -H "Authorization: Bearer $ACCESS_TOKEN"