Access confirmation API 1.5.0
Access confirmation from an external system.
Base path: https://{controller_ip}/api/v1.
API description version: 1.5.0.
Examples use placeholder values for passwords, tokens, UUIDs, addresses and secrets. Replace them with values from your controller before sending requests.
Section methods
| Method | Path |
|---|---|
POST | /access_confirmation |
POST /access_confirmation
Section: Access confirmation.
Creates a record or starts an operation for the access confirmation endpoint /access_confirmation.
Request example
curl -k -X POST "https://{controller_ip}/api/v1/access_confirmation" \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" \
--data-raw '{
"access_event_uuid": "<access_event_uuid>",
"confirmed": true
}'
Request body example
{
"access_event_uuid": "<access_event_uuid>",
"confirmed": true
}
Response command example
curl -k -sS -X POST "https://{controller_ip}/api/v1/access_confirmation" \
-H "Authorization: Bearer <token>" | jq .
Response example
{
"status": "success",
"data": {
"uuid": "<uuid>"
}
}