Skip to main content
GET
/
api
/
v2
/
account-campaign-mappings
/
{email}
Get campaigns associated with an email
curl --request GET \
  --url https://api.instantly.ai/api/v2/account-campaign-mappings/{email} \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "campaign_id": "019cc043-aec6-780b-b822-2fba78a2dbe3",
      "campaign_name": "Campaign Name",
      "timestamp_created": "2026-03-05T23:09:47.078Z",
      "status": 1
    }
  ],
  "next_starting_after": "019cc043-e294-79b4-a660-0a66c47e190f"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

email
string
required

Email

Example:

"user@example.com"

Query Parameters

limit
number
Example:

10

starting_after
string
Example:

"2025-03-07T00:00:00.000Z"

Response

The list of Account Campaign Mapping

items
Account Campaign Mapping · object[]
required

The list of Account Campaign Mapping

next_starting_after
string

The filter for getting the next items after this one, this could either be a UUID, a timestamp, on an email depending on the specific API

Example:

"019cc043-e294-79b4-a660-0a66c47e190f"