ANABOX smart

Create a new device

Create a new device and associate it with the current organization.

POST
/devices/
x-api-key<token>

API key for authentication

In: header

kind?string
patient?string|null

Patient ObjectId

paper?string|null

Paper ObjectId

organizationstring

Organization ObjectId

Response Body

application/json

curl -X POST "https://api.memo.wirewire.de/v1/devices/" \  -H "Content-Type: application/json" \  -d '{    "kind": "paper-display",    "patient": "682fd0d7d4a6325d9d45b86d",    "paper": null,    "organization": "682fd0d7d4a6325d9d45b86e"  }'
{
  "id": "682fd0d7d4a6325d9d45b86f",
  "name": "Kitchen Display",
  "serialNumber": "nrf-352656106701140",
  "status": "online",
  "createdAt": "2026-05-21T09:30:00.000Z",
  "updatedAt": "2026-05-21T10:15:00.000Z"
}