cURL
curl --request POST \ --url https://api.pathstack.io/device \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "system_device_id": "<string>", "registration": "<string>", "make": "<string>", "model": "<string>", "year": 123, "active": true, "tags": [ "<string>" ], "connection_id": "<string>" }'
{ "data": { "system_device_id": "<string>", "registration": "<string>", "make": "<string>", "model": "<string>", "year": 123, "active": true, "tags": [ "<string>" ], "id": "<string>", "connection_id": "<string>" } }
This endpoint creates a Device.
Not all providers are supported, currently only Digital Matter is supported.
The created Device is returned in the response.
Show child attributes