Start Claim

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

Overview

Starts the asynchronous claim process for a device reachable via an edge proxy. The device is identified by its IP/Host address, and the claim is handled through the Edge.

The following information is required to claim an Edge device:

  1. The ID of the Edge (Available in the End Customer Portal)
  2. Device Model - The list of currently supported models is available from Xyte's support. To claim "Heartbeat monitoring" (only Ping) use the Heartbeat model id: 5dc4ba6c-c323-4118-a4e4-504f074426f2
  3. The IP/Hostname of the device to monitor.

The Claiming flow is asynchronous, to check the status of the process poll the Get Claim Status API.

Authorization

This endpoint requires Authorization.

Request Body

KeyTypeDescriptionRequired
proxy_idstringID of the Edge through which the device is reachable.Yes
device_ipstringIP address or Hostname of the device to claim.Yes
device_model_idstringID of the device model.Yes
space_idnumberID of the space to claim the device into.Yes
display_namestringDisplay name to assign to the device.No
macstringMAC address to assign to the device. Accepts common formats (aa:bb:cc:dd:ee:ff, AA-BB-CC-DD-EE-FF, aabbccddeeff); it is normalized on the server. An invalid MAC returns 422.No
snstringSerial number to assign to the device. When omitted, the device is created without a serial number.No
custom_parametersobjectAdditional custom parameters for the device.No
custom_partner_namestringCustom partner name override.No
custom_model_namestringCustom model name override.No
skip_connectivity_checkbooleanSkip the pre-claim connectivity check. Defaults to false.No

By default the claiming process requires a ping check, to verify the device is reachable from the Edge. To skip this step, pass skip_connectivity_check as false

{
  "proxy_id": "proxy-uuid",
  "device_ip": "192.168.1.100",
  "device_model_id": "model-uuid",
  "space_id": 10000,
  "display_name": "Conference Room Display",
  "mac": "aa:bb:cc:dd:ee:ff",
  "sn": "SN-12345",
  "custom_parameters": {},
  "skip_connectivity_check": false
}

Response

204 No Content — The claim process has been initiated. No response body is returned. Use Get Claim Status to poll for the result.

Errors

StatusDescription
401Missing or invalid Authorization header.
422Invalid parameters, e.g. unknown device_model_id, invalid mac, or unreachable edge.
Body Params
string
required
string
required
string
required
number
required
string
string
string
custom_parameters
object
string
string
boolean
Responses
204

The claim process has been initiated. No response body is returned. Use Get Claim Status to poll for the result.

401

Missing or invalid Authorization header.

422

Invalid parameters, e.g. unknown device_model_id, invalid mac, or unreachable edge.

Language
Credentials
Header
LoadingLoading…
Response
Click Try It! to start a request and see the response here!