Create access grant
curl --request POST \
--url https://api2.rhombussystems.com/api/accesscontrol/createAccessGrant \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"accessGrant": {
"accessControlledDoorUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"accessControlledElevatorLandingUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"createdAtMillis": 123,
"doorLabelIds": [
"<string>"
],
"groupUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"locationGuestPassUuids": [
"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/createAccessGrant"
payload = { "accessGrant": {
"accessControlledDoorUuids": ["AAAAAAAAAAAAAAAAAAAAAA"],
"accessControlledElevatorLandingUuids": ["AAAAAAAAAAAAAAAAAAAAAA"],
"createdAtMillis": 123,
"doorLabelIds": ["<string>"],
"groupUuids": ["AAAAAAAAAAAAAAAAAAAAAA"],
"locationGuestPassUuids": ["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({
accessGrant: {
accessControlledDoorUuids: ['AAAAAAAAAAAAAAAAAAAAAA'],
accessControlledElevatorLandingUuids: ['AAAAAAAAAAAAAAAAAAAAAA'],
createdAtMillis: 123,
doorLabelIds: ['<string>'],
groupUuids: ['AAAAAAAAAAAAAAAAAAAAAA'],
locationGuestPassUuids: ['AAAAAAAAAAAAAAAAAAAAAA'],
locationUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
name: '<string>',
orgUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
scheduleUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
storedInS3: true,
updatedAtMillis: 123,
userUuids: ['AAAAAAAAAAAAAAAAAAAAAA'],
uuid: 'AAAAAAAAAAAAAAAAAAAAAA'
}
})
};
fetch('https://api2.rhombussystems.com/api/accesscontrol/createAccessGrant', 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/createAccessGrant")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"accessGrant\": {\n \"accessControlledDoorUuids\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"accessControlledElevatorLandingUuids\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"createdAtMillis\": 123,\n \"doorLabelIds\": [\n \"<string>\"\n ],\n \"groupUuids\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"locationGuestPassUuids\": [\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();{
"accessGrant": {
"accessControlledDoorUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"accessControlledElevatorLandingUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"createdAtMillis": 123,
"doorLabelIds": [
"<string>"
],
"groupUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"locationGuestPassUuids": [
"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>"
}Access Control Webservice
Create access grant
Create a location access grant
POST
/
api
/
accesscontrol
/
createAccessGrant
Create access grant
curl --request POST \
--url https://api2.rhombussystems.com/api/accesscontrol/createAccessGrant \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"accessGrant": {
"accessControlledDoorUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"accessControlledElevatorLandingUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"createdAtMillis": 123,
"doorLabelIds": [
"<string>"
],
"groupUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"locationGuestPassUuids": [
"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/createAccessGrant"
payload = { "accessGrant": {
"accessControlledDoorUuids": ["AAAAAAAAAAAAAAAAAAAAAA"],
"accessControlledElevatorLandingUuids": ["AAAAAAAAAAAAAAAAAAAAAA"],
"createdAtMillis": 123,
"doorLabelIds": ["<string>"],
"groupUuids": ["AAAAAAAAAAAAAAAAAAAAAA"],
"locationGuestPassUuids": ["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({
accessGrant: {
accessControlledDoorUuids: ['AAAAAAAAAAAAAAAAAAAAAA'],
accessControlledElevatorLandingUuids: ['AAAAAAAAAAAAAAAAAAAAAA'],
createdAtMillis: 123,
doorLabelIds: ['<string>'],
groupUuids: ['AAAAAAAAAAAAAAAAAAAAAA'],
locationGuestPassUuids: ['AAAAAAAAAAAAAAAAAAAAAA'],
locationUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
name: '<string>',
orgUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
scheduleUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
storedInS3: true,
updatedAtMillis: 123,
userUuids: ['AAAAAAAAAAAAAAAAAAAAAA'],
uuid: 'AAAAAAAAAAAAAAAAAAAAAA'
}
})
};
fetch('https://api2.rhombussystems.com/api/accesscontrol/createAccessGrant', 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/createAccessGrant")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"accessGrant\": {\n \"accessControlledDoorUuids\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"accessControlledElevatorLandingUuids\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"createdAtMillis\": 123,\n \"doorLabelIds\": [\n \"<string>\"\n ],\n \"groupUuids\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"locationGuestPassUuids\": [\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();{
"accessGrant": {
"accessControlledDoorUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"accessControlledElevatorLandingUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"createdAtMillis": 123,
"doorLabelIds": [
"<string>"
],
"groupUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"locationGuestPassUuids": [
"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.
Available options:
api-token, api, partner-api-token, partner-api Body
application/json
Request to create a location access grant.
The access grant to update
Show child attributes
Show child attributes
Response
200 - application/json
OK
Response containing the created location access grant.
The access grant to update
Show child attributes
Show child attributes
Set of expired ACD license door UUIDs
base 64 (url-safe) uuid string
Example:
"AAAAAAAAAAAAAAAAAAAAAA"
Set of unassigned ACD license door UUIDs
base 64 (url-safe) uuid string
Example:
"AAAAAAAAAAAAAAAAAAAAAA"
Last modified on August 3, 2026
⌘I