Resources
Events
Every Events endpoint, with the scope it enforces, the body it takes, a response you can read, and the refusals it can return.
Read the organization event feed.
get
/organizations/{organization}/events- Scope
- events:read
Idempotency-Key- Not accepted
- Returns
- 200
Path parameters
organizationstringRequiredThe organization this request acts for. The credential must hold a grant for it.
Query parameters
limitstringOptionalHow many records to return. The server may return fewer.
cursorstringOptionalThe next_cursor from the previous page. A cursor encodes the filters it was issued under; sending it with different filters is refused with cursor_invalid.
typestring, repeatableOptionalRepeat to filter on more than one event type. Omit for every type.
Errors
Every refusal this endpoint can return, with the status it arrives with.
Request
curl "https://passportcraft.com/api/v1/organizations/8f14e45f-ceea-467a-9a5f-8dc7d9c6a1b2/events?type=passport.published&limit=25" \
-H "Authorization: Bearer $PASSPORTCRAFT_API_KEY"Response · 200
{
"object": "list",
"data": [
{
"object": "event",
"id": "e3b0c442-98fc-4c14-9afb-f4c8996fb924",
"name": "organizations/8f14e45f-ceea-467a-9a5f-8dc7d9c6a1b2/events/e3b0c442-98fc-4c14-9afb-f4c8996fb924",
"organization_id": "8f14e45f-ceea-467a-9a5f-8dc7d9c6a1b2",
"type": "passport.published",
"livemode": true,
"created_at": "2026-08-01T14:03:22.501Z",
"related": {
"object": "passport",
"id": "2c1f9e07-3b4d-4a18-9f6c-5e0a7b8d3c41",
"name": "organizations/8f14e45f-ceea-467a-9a5f-8dc7d9c6a1b2/passports/2c1f9e07-3b4d-4a18-9f6c-5e0a7b8d3c41",
"category": "textile",
"status": "published",
"previous_status": "draft",
"version": 4
}
}
],
"has_more": false,
"next_cursor": "eyJjIjoiMjAyNi0wOC0wMVQxNDowMzoyMi41MDFaIn0"
}GET /organizations/8f14e45f-ceea-467a-9a5f-8dc7d9c6a1b2/events?type=passport.published&limit=25