Overview
Ping is the safest first call when wiring up an integration. It validates your API key, host allowlist, organisation ownership, and event ownership in one request, and returns a stable success body without touching any photo or search data. Use it from a smoke test, a deploy health check, or a “Test Connection” button in your integration UI.Endpoint
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
org_id | number | Yes | Your organisation ID. |
event_id | number | Yes | The event you want to verify access to. |
Example Request
Example Response
Response Models
Ping uses the standard envelope from Conventions. The endpoint payload insidedata is:
| Field | Type | Description |
|---|---|---|
data.status | string | Always "ok" on a 200 response. |
data.org_id | number | The org_id from the URL, echoed back. |
data.event_id | number | The event_id from the URL, echoed back. |
Error Responses
| Status | Meaning |
|---|---|
401 | API key is missing. |
403 | API key is invalid/inactive, token/org/event ownership mismatch, or host not approved. |
404 | Event configuration not found. |
429 | Rate limit exceeded. Back off and retry. |
500 | Internal failure. |

