🚧 The Rhombus Developer Documentation is currently in beta. For the official documentation, please visit docs.rhombus.com.
curl --request POST \
--url https://api2.rhombussystems.com/api/proximity/updateDetails \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data @- <<EOF
{
"deletedUpdated": false,
"description": "John Doe's employee badge",
"descriptionUpdated": true,
"imageUrl": "https://example.com/badge-image.jpg",
"imageUrlUpdated": false,
"name": "Employee Badge 001",
"nameUpdated": true,
"policyUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"policyUuidUpdated": true,
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
EOF{
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}Update details for a proximity tag
curl --request POST \
--url https://api2.rhombussystems.com/api/proximity/updateDetails \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data @- <<EOF
{
"deletedUpdated": false,
"description": "John Doe's employee badge",
"descriptionUpdated": true,
"imageUrl": "https://example.com/badge-image.jpg",
"imageUrlUpdated": false,
"name": "Employee Badge 001",
"nameUpdated": true,
"policyUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"policyUuidUpdated": true,
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
EOF{
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}Your API key for Rhombus.
Authentication scheme indicator ("api-token").
9Request object for updating details for a proximity tag.
Whether the deleted status has been updated
false
Description of the proximity tag
"John Doe's employee badge"
Whether the description has been updated
true
URL of the image for the proximity tag
"https://example.com/badge-image.jpg"
Whether the image URL has been updated
false
Name of the proximity tag
"Employee Badge 001"
Whether the name has been updated
true
base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
Whether the policy UUID has been updated
true
base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
Was this page helpful?