curl --request POST \
--url https://api2.rhombussystems.com/api/partner/hardware/moveToClient \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"fromClientOrgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"moveLicense": true,
"serials": [
"<string>"
],
"toClientOrgUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'import requests
url = "https://api2.rhombussystems.com/api/partner/hardware/moveToClient"
payload = {
"fromClientOrgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"moveLicense": True,
"serials": ["<string>"],
"toClientOrgUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
headers = {
"x-auth-scheme": "<x-auth-scheme>",
"x-auth-apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-auth-scheme': '<x-auth-scheme>',
'x-auth-apikey': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
fromClientOrgUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
moveLicense: true,
serials: ['<string>'],
toClientOrgUuid: 'AAAAAAAAAAAAAAAAAAAAAA'
})
};
fetch('https://api2.rhombussystems.com/api/partner/hardware/moveToClient', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.post("https://api2.rhombussystems.com/api/partner/hardware/moveToClient")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"fromClientOrgUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"moveLicense\": true,\n \"serials\": [\n \"<string>\"\n ],\n \"toClientOrgUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n}")
.asString();{
"blocked": [
{
"bindings": [
{
"name": "<string>",
"type": "<string>"
}
],
"reason": "<string>",
"serial": "<string>"
}
],
"error": true,
"errorMsg": "<string>",
"failed": [
{
"reason": "<string>",
"serial": "<string>"
}
],
"moved": [
"<string>"
],
"warningMsg": "<string>"
}Move controlled hardware to another managed client
MSP only. Moves controlled devices from one managed client org to another (soft-delete in the source, pending registration in the target). Door-bound DC20 / DR40 / DR20 units are refused until unbound. Optionally moves an MSP-owned device license along. Per-serial results.
curl --request POST \
--url https://api2.rhombussystems.com/api/partner/hardware/moveToClient \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"fromClientOrgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"moveLicense": true,
"serials": [
"<string>"
],
"toClientOrgUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'import requests
url = "https://api2.rhombussystems.com/api/partner/hardware/moveToClient"
payload = {
"fromClientOrgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"moveLicense": True,
"serials": ["<string>"],
"toClientOrgUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
headers = {
"x-auth-scheme": "<x-auth-scheme>",
"x-auth-apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-auth-scheme': '<x-auth-scheme>',
'x-auth-apikey': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
fromClientOrgUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
moveLicense: true,
serials: ['<string>'],
toClientOrgUuid: 'AAAAAAAAAAAAAAAAAAAAAA'
})
};
fetch('https://api2.rhombussystems.com/api/partner/hardware/moveToClient', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.post("https://api2.rhombussystems.com/api/partner/hardware/moveToClient")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"fromClientOrgUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"moveLicense\": true,\n \"serials\": [\n \"<string>\"\n ],\n \"toClientOrgUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n}")
.asString();{
"blocked": [
{
"bindings": [
{
"name": "<string>",
"type": "<string>"
}
],
"reason": "<string>",
"serial": "<string>"
}
],
"error": true,
"errorMsg": "<string>",
"failed": [
{
"reason": "<string>",
"serial": "<string>"
}
],
"moved": [
"<string>"
],
"warningMsg": "<string>"
}Authorizations
Your Rhombus API key. Must be accompanied by the x-auth-scheme header set to api-token (or partner-api-token for partner endpoints).
Headers
Authentication scheme identifier. Use api-token for standard API key authentication, partner-api-token for partner API key authentication. Must be paired with the x-auth-apikey header containing your API key.
api-token, api, partner-api-token, partner-api Body
Move controlled devices from one managed client to another.
base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
When true, an MSP-owned device license follows the device to the target org.
base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"