API Reference
GET ping
Smoke-test a wp_live_* key before wiring production traffic. No body, no query parameters — just the bearer token.
Endpoint
GET
/api/v1/ingest/pingBase URL: https://wepeople.app
Request
Requires Authorization header only.
curl "https://wepeople.app/api/v1/ingest/ping" \
-H "Authorization: Bearer $WEPEOPLE_API_KEY"Response 200
{
"ok": true,
"organizationId": "org_2Mf1…",
"app": {
"id": "app_2Nh8…",
"slug": "crm-hub",
"name": "CRM Hub"
}
}Use app.slug to confirm you are hitting the intended developer app. Events from this key appear as custom:<slug> on the timeline.
Errors
- 401 —
missing_authorization,invalid_key,key_revoked,key_expired - 402 —
plan_disabledorquota_exceeded
Full table: Error codes.