curl --request POST \
--url https://dashboard.hologram.io/api/1/devices/transfer \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"orgid": 4,
"deviceids": [
1
]
}
'{
"success": true,
"data": {
"destination_orgid": 3,
"transferred_deviceids": [
4,
3,
2,
1
],
"warnings": []
}
}curl --request POST \
--url https://dashboard.hologram.io/api/1/devices/transfer \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"orgid": 4,
"deviceids": [
1
]
}
'{
"success": true,
"data": {
"destination_orgid": 3,
"transferred_deviceids": [
4,
3,
2,
1
],
"warnings": []
}
}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.
Successful response
Was this page helpful?