Skip to main content
List contact events
curl --request GET \
  --url https://api.maildiver.com/v1/automation/contacts/{email}/events \
  --header 'Authorization: Bearer <token>'
{
  "events": [
    {
      "event_id": "0195c9e3-5067-741d-be87-a4f75ef93372",
      "event_name": "user_signed_up",
      "email": "user@example.com",
      "workspace_id": "0195a927-b706-725a-94dd-372770d920f2",
      "timestamp": 1742843423033,
      "properties": {
        "plan": "pro",
        "signup_source": "landing_page"
      },
      "created_at": 1742843423033
    },
    {
      "event_id": "0195c413-3fe1-779d-804e-f5f9bd8cd523",
      "event_name": "purchase_completed",
      "email": "user@example.com",
      "workspace_id": "0195a927-b706-725a-94dd-372770d920f2",
      "timestamp": 1742751354368,
      "properties": {
        "amount": 99.99,
        "product_id": "prod_123"
      },
      "created_at": 1742751354368
    }
  ],
  "count": 2,
  "cursor": null
}

Authorizations

Authorization
string
header
required

API key with format "Bearer {your-api-key}"

Path Parameters

email
string
required

Contact's email address

Query Parameters

cursor
string | null

Pagination cursor for fetching the next page of results (base64-encoded)

Response

OK

The response is of type any.