Skip to main content
POST
/
devices
/
transfer
Transfer devices to organization (bulk)
curl --request POST \
  --url https://dashboard.hologram.io/api/1/devices/transfer \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "deviceids": [
    123
  ],
  "orgid": 4
}
'
{
  "success": true,
  "data": {
    "destination_orgid": 123,
    "transferred_deviceids": [
      123
    ],
    "warnings": [
      {
        "deviceid": 123,
        "message": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

HTTP Basic authentication using API keys. Set the username to apikey and the password to your API key. You can find your API key on the Hologram Dashboard under Account Settings.

Query Parameters

preview
boolean

If true, simulate the operation without making changes

Body

application/json
deviceids
integer[]
required

List of device IDs to transfer

orgid
integer
required

ID of the destination organization

Example:

4

Response

OK

success
boolean

Indicates whether the request was successful.

Example:

true

data
object