Reference map for currently available `v1` endpoints and shared response contracts.
https://www.securepointusa.com/api/v1Most routes require an authenticated user context and a valid organization scope.
| Method | Path | Purpose |
|---|---|---|
| POST | /api/v1/checkin | Submit a v1 check-in request. |
| POST | /api/v1/prescreen | Run a prescreen decision workflow. |
| POST | /api/v1/vendors/screen | Screen vendor entities against sanctions sources. |
| GET | /api/v1/screenings/{id} | Fetch one screening record by id. |
| POST | /api/v1/sessions/{id}/update | Update a session state or metadata. |
| GET | /api/v1/audit/export | Export audit records for authorized users. |
| PUT | /api/v1/adjudication/rules | Update adjudication rules configuration. |
| PUT | /api/v1/workforce/sync | Sync workforce identity records. |
| GET | /api/v1/compliance/sales-matrix | Retrieve compliance capability matrix data. |
| POST | /api/v1/webhooks/visitor_checked_in | Ingest visitor_checked_in event. |
| POST | /api/v1/webhooks/visitor_checked_out | Ingest visitor_checked_out event. |
| POST | /api/v1/webhooks/screening_completed | Ingest screening_completed event. |
| POST | /api/v1/webhooks/session_escalated | Ingest session_escalated event. |
{
"success": true,
"data": {
"...": "resource payload"
},
"meta": {
"requestId": "uuid",
"timestamp": "2026-02-24T00:00:00.000Z"
}
}{
"success": false,
"error": {
"code": "FORBIDDEN",
"message": "Insufficient permissions",
"details": {
"...": "optional diagnostic data"
}
},
"meta": {
"requestId": "uuid",
"timestamp": "2026-02-24T00:00:00.000Z"
}
}curl -X POST "https://www.securepointusa.com/api/v1/checkin" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <session_or_service_token>" \
-d '{
"visitor": {
"first_name": "Alex",
"last_name": "Morgan"
}
}'Review rate-limit and error-handling guidance before integrating production traffic.
Open Error Handling Guide