Get User
Retrieve a user.
Authorization
ApiKeyAuth In: header
Path Parameters
User ID or email
Response Body
application/json
application/json
application/json
curl -X GET "https://example.com/users/string"{ "id": "string", "fullName": "string", "email": "user@example.com", "phoneNumber": "string", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z"}Create User POST
Create a new user.
List Webhook Deliveries GET
List webhook deliveries across all of your endpoints, newest first. A delivery is one event sent to one endpoint — an event fanned out to multiple subscribed endpoints appears once per endpoint, each with its own `id`. Filter by `endpoint`, event `type`, created `from`/`to` range, or delivery `status`: `delivered` (the endpoint acknowledged with a 2xx), `pending` (automatic retries remain), or `failed` (retries exhausted). Filters accept multiple comma-separated values, matching any of them. Paginate by passing `nextCursor` from the previous page as `cursor` — cursors are opaque; pass them back verbatim, and restart from the first page whenever you change any other parameter. To resume a sync without a stored cursor, pass your last-processed delivery's `createdAt` as `from` with `order=asc` and skip ids you have already seen.