Update a third party Wiegand Reader component
curl --request POST \
--url https://api2.rhombussystems.com/api/component/updateWiegandDoorReader \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"buzzerPort": {
"boardNum": 123,
"portNum": 123,
"portType": "WIEGAND_OUTPUT"
},
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"d0Port": {
"boardNum": 123,
"portNum": 123,
"portType": "WIEGAND_INPUT"
},
"d1Port": {
"boardNum": 123,
"portNum": 123,
"portType": "WIEGAND_INPUT"
},
"disableCardReader": true,
"disableKeypad": true,
"gledPort": {
"boardNum": 123,
"portNum": 123,
"portType": "WIEGAND_OUTPUT"
},
"name": "<string>",
"otherReaderUnlockAudioFeedbackEnabled": true,
"remoteUnlockAudioFeedbackEnabled": true,
"rledPort": {
"boardNum": 123,
"portNum": 123,
"portType": "WIEGAND_OUTPUT"
},
"tamperPort": {
"boardNum": 123,
"portNum": 123
}
}
'import requests
url = "https://api2.rhombussystems.com/api/component/updateWiegandDoorReader"
payload = {
"buzzerPort": {
"boardNum": 123,
"portNum": 123,
"portType": "WIEGAND_OUTPUT"
},
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"d0Port": {
"boardNum": 123,
"portNum": 123,
"portType": "WIEGAND_INPUT"
},
"d1Port": {
"boardNum": 123,
"portNum": 123,
"portType": "WIEGAND_INPUT"
},
"disableCardReader": True,
"disableKeypad": True,
"gledPort": {
"boardNum": 123,
"portNum": 123,
"portType": "WIEGAND_OUTPUT"
},
"name": "<string>",
"otherReaderUnlockAudioFeedbackEnabled": True,
"remoteUnlockAudioFeedbackEnabled": True,
"rledPort": {
"boardNum": 123,
"portNum": 123,
"portType": "WIEGAND_OUTPUT"
},
"tamperPort": {
"boardNum": 123,
"portNum": 123
}
}
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({
buzzerPort: {boardNum: 123, portNum: 123, portType: 'WIEGAND_OUTPUT'},
componentUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
d0Port: {boardNum: 123, portNum: 123, portType: 'WIEGAND_INPUT'},
d1Port: {boardNum: 123, portNum: 123, portType: 'WIEGAND_INPUT'},
disableCardReader: true,
disableKeypad: true,
gledPort: {boardNum: 123, portNum: 123, portType: 'WIEGAND_OUTPUT'},
name: '<string>',
otherReaderUnlockAudioFeedbackEnabled: true,
remoteUnlockAudioFeedbackEnabled: true,
rledPort: {boardNum: 123, portNum: 123, portType: 'WIEGAND_OUTPUT'},
tamperPort: {boardNum: 123, portNum: 123}
})
};
fetch('https://api2.rhombussystems.com/api/component/updateWiegandDoorReader', 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/component/updateWiegandDoorReader")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"buzzerPort\": {\n \"boardNum\": 123,\n \"portNum\": 123,\n \"portType\": \"WIEGAND_OUTPUT\"\n },\n \"componentUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"d0Port\": {\n \"boardNum\": 123,\n \"portNum\": 123,\n \"portType\": \"WIEGAND_INPUT\"\n },\n \"d1Port\": {\n \"boardNum\": 123,\n \"portNum\": 123,\n \"portType\": \"WIEGAND_INPUT\"\n },\n \"disableCardReader\": true,\n \"disableKeypad\": true,\n \"gledPort\": {\n \"boardNum\": 123,\n \"portNum\": 123,\n \"portType\": \"WIEGAND_OUTPUT\"\n },\n \"name\": \"<string>\",\n \"otherReaderUnlockAudioFeedbackEnabled\": true,\n \"remoteUnlockAudioFeedbackEnabled\": true,\n \"rledPort\": {\n \"boardNum\": 123,\n \"portNum\": 123,\n \"portType\": \"WIEGAND_OUTPUT\"\n },\n \"tamperPort\": {\n \"boardNum\": 123,\n \"portNum\": 123\n }\n}")
.asString();{
"component": {
"buzzerPort": {
"boardNum": 123,
"portNum": 123,
"portType": "WIEGAND_OUTPUT"
},
"createdAtMillis": 123,
"d0Port": {
"boardNum": 123,
"portNum": 123,
"portType": "WIEGAND_INPUT"
},
"d1Port": {
"boardNum": 123,
"portNum": 123,
"portType": "WIEGAND_INPUT"
},
"disableCardReader": true,
"disableKeypad": true,
"disableWaveToUnlock": true,
"gledPort": {
"boardNum": 123,
"portNum": 123,
"portType": "WIEGAND_OUTPUT"
},
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"otherReaderUnlockAudioFeedbackEnabled": true,
"ownerDeviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"portImmutable": true,
"remoteUnlockAudioFeedbackEnabled": true,
"rledPort": {
"boardNum": 123,
"portNum": 123,
"portType": "WIEGAND_OUTPUT"
},
"tamperPort": {
"boardNum": 123,
"portNum": 123
},
"updatedAtMillis": 123,
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
}Component Webservice
Update a third party Wiegand Reader component
Update a third party Wiegand Reader component
POST
/
api
/
component
/
updateWiegandDoorReader
Update a third party Wiegand Reader component
curl --request POST \
--url https://api2.rhombussystems.com/api/component/updateWiegandDoorReader \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"buzzerPort": {
"boardNum": 123,
"portNum": 123,
"portType": "WIEGAND_OUTPUT"
},
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"d0Port": {
"boardNum": 123,
"portNum": 123,
"portType": "WIEGAND_INPUT"
},
"d1Port": {
"boardNum": 123,
"portNum": 123,
"portType": "WIEGAND_INPUT"
},
"disableCardReader": true,
"disableKeypad": true,
"gledPort": {
"boardNum": 123,
"portNum": 123,
"portType": "WIEGAND_OUTPUT"
},
"name": "<string>",
"otherReaderUnlockAudioFeedbackEnabled": true,
"remoteUnlockAudioFeedbackEnabled": true,
"rledPort": {
"boardNum": 123,
"portNum": 123,
"portType": "WIEGAND_OUTPUT"
},
"tamperPort": {
"boardNum": 123,
"portNum": 123
}
}
'import requests
url = "https://api2.rhombussystems.com/api/component/updateWiegandDoorReader"
payload = {
"buzzerPort": {
"boardNum": 123,
"portNum": 123,
"portType": "WIEGAND_OUTPUT"
},
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"d0Port": {
"boardNum": 123,
"portNum": 123,
"portType": "WIEGAND_INPUT"
},
"d1Port": {
"boardNum": 123,
"portNum": 123,
"portType": "WIEGAND_INPUT"
},
"disableCardReader": True,
"disableKeypad": True,
"gledPort": {
"boardNum": 123,
"portNum": 123,
"portType": "WIEGAND_OUTPUT"
},
"name": "<string>",
"otherReaderUnlockAudioFeedbackEnabled": True,
"remoteUnlockAudioFeedbackEnabled": True,
"rledPort": {
"boardNum": 123,
"portNum": 123,
"portType": "WIEGAND_OUTPUT"
},
"tamperPort": {
"boardNum": 123,
"portNum": 123
}
}
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({
buzzerPort: {boardNum: 123, portNum: 123, portType: 'WIEGAND_OUTPUT'},
componentUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
d0Port: {boardNum: 123, portNum: 123, portType: 'WIEGAND_INPUT'},
d1Port: {boardNum: 123, portNum: 123, portType: 'WIEGAND_INPUT'},
disableCardReader: true,
disableKeypad: true,
gledPort: {boardNum: 123, portNum: 123, portType: 'WIEGAND_OUTPUT'},
name: '<string>',
otherReaderUnlockAudioFeedbackEnabled: true,
remoteUnlockAudioFeedbackEnabled: true,
rledPort: {boardNum: 123, portNum: 123, portType: 'WIEGAND_OUTPUT'},
tamperPort: {boardNum: 123, portNum: 123}
})
};
fetch('https://api2.rhombussystems.com/api/component/updateWiegandDoorReader', 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/component/updateWiegandDoorReader")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"buzzerPort\": {\n \"boardNum\": 123,\n \"portNum\": 123,\n \"portType\": \"WIEGAND_OUTPUT\"\n },\n \"componentUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"d0Port\": {\n \"boardNum\": 123,\n \"portNum\": 123,\n \"portType\": \"WIEGAND_INPUT\"\n },\n \"d1Port\": {\n \"boardNum\": 123,\n \"portNum\": 123,\n \"portType\": \"WIEGAND_INPUT\"\n },\n \"disableCardReader\": true,\n \"disableKeypad\": true,\n \"gledPort\": {\n \"boardNum\": 123,\n \"portNum\": 123,\n \"portType\": \"WIEGAND_OUTPUT\"\n },\n \"name\": \"<string>\",\n \"otherReaderUnlockAudioFeedbackEnabled\": true,\n \"remoteUnlockAudioFeedbackEnabled\": true,\n \"rledPort\": {\n \"boardNum\": 123,\n \"portNum\": 123,\n \"portType\": \"WIEGAND_OUTPUT\"\n },\n \"tamperPort\": {\n \"boardNum\": 123,\n \"portNum\": 123\n }\n}")
.asString();{
"component": {
"buzzerPort": {
"boardNum": 123,
"portNum": 123,
"portType": "WIEGAND_OUTPUT"
},
"createdAtMillis": 123,
"d0Port": {
"boardNum": 123,
"portNum": 123,
"portType": "WIEGAND_INPUT"
},
"d1Port": {
"boardNum": 123,
"portNum": 123,
"portType": "WIEGAND_INPUT"
},
"disableCardReader": true,
"disableKeypad": true,
"disableWaveToUnlock": true,
"gledPort": {
"boardNum": 123,
"portNum": 123,
"portType": "WIEGAND_OUTPUT"
},
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"otherReaderUnlockAudioFeedbackEnabled": true,
"ownerDeviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"portImmutable": true,
"remoteUnlockAudioFeedbackEnabled": true,
"rledPort": {
"boardNum": 123,
"portNum": 123,
"portType": "WIEGAND_OUTPUT"
},
"tamperPort": {
"boardNum": 123,
"portNum": 123
},
"updatedAtMillis": 123,
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
}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
Show child attributes
Show child attributes
base 64 (url-safe) uuid string
Example:
"AAAAAAAAAAAAAAAAAAAAAA"
Available options:
MSB, LSB Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Response
200 - application/json
OK
Show child attributes
Show child attributes
Last modified on August 7, 2026
⌘I