curl --request POST \
--url https://api2.rhombussystems.com/api/accesscontrol/updateAccessRevocation \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"accessRevocation": {
"accessControlledDoorUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"accessControlledElevatorLandingUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"createdAtMillis": 123,
"doorLabelIds": [
"<string>"
],
"groupUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"scheduleUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"storedInS3": true,
"updatedAtMillis": 123,
"userUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
}
'import requests
url = "https://api2.rhombussystems.com/api/accesscontrol/updateAccessRevocation"
payload = { "accessRevocation": {
"accessControlledDoorUuids": ["AAAAAAAAAAAAAAAAAAAAAA"],
"accessControlledElevatorLandingUuids": ["AAAAAAAAAAAAAAAAAAAAAA"],
"createdAtMillis": 123,
"doorLabelIds": ["<string>"],
"groupUuids": ["AAAAAAAAAAAAAAAAAAAAAA"],
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"scheduleUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"storedInS3": True,
"updatedAtMillis": 123,
"userUuids": ["AAAAAAAAAAAAAAAAAAAAAA"],
"uuid": "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({
accessRevocation: {
accessControlledDoorUuids: ['AAAAAAAAAAAAAAAAAAAAAA'],
accessControlledElevatorLandingUuids: ['AAAAAAAAAAAAAAAAAAAAAA'],
createdAtMillis: 123,
doorLabelIds: ['<string>'],
groupUuids: ['AAAAAAAAAAAAAAAAAAAAAA'],
locationUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
name: '<string>',
orgUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
scheduleUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
storedInS3: true,
updatedAtMillis: 123,
userUuids: ['AAAAAAAAAAAAAAAAAAAAAA'],
uuid: 'AAAAAAAAAAAAAAAAAAAAAA'
}
})
};
fetch('https://api2.rhombussystems.com/api/accesscontrol/updateAccessRevocation', 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/accesscontrol/updateAccessRevocation")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"accessRevocation\": {\n \"accessControlledDoorUuids\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"accessControlledElevatorLandingUuids\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"createdAtMillis\": 123,\n \"doorLabelIds\": [\n \"<string>\"\n ],\n \"groupUuids\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"locationUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"name\": \"<string>\",\n \"orgUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"scheduleUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"storedInS3\": true,\n \"updatedAtMillis\": 123,\n \"userUuids\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"uuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n }\n}")
.asString();{
"accessRevocation": {
"accessControlledDoorUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"accessControlledElevatorLandingUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"createdAtMillis": 123,
"doorLabelIds": [
"<string>"
],
"groupUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"scheduleUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"sortKey": "<string>",
"storedInS3": true,
"updatedAtMillis": 123,
"userUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"error": true,
"errorMsg": "<string>",
"expiredACDLicensesDoorUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"unassignedACDLicensesDoorUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"warningMsg": "<string>"
}Update access revocation
Updates a location access revocation
curl --request POST \
--url https://api2.rhombussystems.com/api/accesscontrol/updateAccessRevocation \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"accessRevocation": {
"accessControlledDoorUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"accessControlledElevatorLandingUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"createdAtMillis": 123,
"doorLabelIds": [
"<string>"
],
"groupUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"scheduleUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"storedInS3": true,
"updatedAtMillis": 123,
"userUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
}
'import requests
url = "https://api2.rhombussystems.com/api/accesscontrol/updateAccessRevocation"
payload = { "accessRevocation": {
"accessControlledDoorUuids": ["AAAAAAAAAAAAAAAAAAAAAA"],
"accessControlledElevatorLandingUuids": ["AAAAAAAAAAAAAAAAAAAAAA"],
"createdAtMillis": 123,
"doorLabelIds": ["<string>"],
"groupUuids": ["AAAAAAAAAAAAAAAAAAAAAA"],
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"scheduleUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"storedInS3": True,
"updatedAtMillis": 123,
"userUuids": ["AAAAAAAAAAAAAAAAAAAAAA"],
"uuid": "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({
accessRevocation: {
accessControlledDoorUuids: ['AAAAAAAAAAAAAAAAAAAAAA'],
accessControlledElevatorLandingUuids: ['AAAAAAAAAAAAAAAAAAAAAA'],
createdAtMillis: 123,
doorLabelIds: ['<string>'],
groupUuids: ['AAAAAAAAAAAAAAAAAAAAAA'],
locationUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
name: '<string>',
orgUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
scheduleUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
storedInS3: true,
updatedAtMillis: 123,
userUuids: ['AAAAAAAAAAAAAAAAAAAAAA'],
uuid: 'AAAAAAAAAAAAAAAAAAAAAA'
}
})
};
fetch('https://api2.rhombussystems.com/api/accesscontrol/updateAccessRevocation', 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/accesscontrol/updateAccessRevocation")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"accessRevocation\": {\n \"accessControlledDoorUuids\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"accessControlledElevatorLandingUuids\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"createdAtMillis\": 123,\n \"doorLabelIds\": [\n \"<string>\"\n ],\n \"groupUuids\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"locationUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"name\": \"<string>\",\n \"orgUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"scheduleUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"storedInS3\": true,\n \"updatedAtMillis\": 123,\n \"userUuids\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"uuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n }\n}")
.asString();{
"accessRevocation": {
"accessControlledDoorUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"accessControlledElevatorLandingUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"createdAtMillis": 123,
"doorLabelIds": [
"<string>"
],
"groupUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"scheduleUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"sortKey": "<string>",
"storedInS3": true,
"updatedAtMillis": 123,
"userUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"error": true,
"errorMsg": "<string>",
"expiredACDLicensesDoorUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"unassignedACDLicensesDoorUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"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
Request to update a location access revocation.
The access revocation to update
Show child attributes
Show child attributes
Response
OK
Response for location access revocation update operation.
The access revocation to update
Show child attributes
Show child attributes
Set of expired ACD license door UUIDs
base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
Set of unassigned ACD license door UUIDs
base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"