Atlas
  1. Triggers
Atlas
  • Documentation
    • Dashboard
    • Campaigns
    • Account
    • Knowledge
    • Global Actions
    • Contacts
    • Call Records
    • Agents
    • Campaign Actions and integrations
    • Integrations
      • Integrations
      • Zapier
      • Make
      • Keragon
      • Go High Level
  • API Reference
    • API documentation
    • Authentication
      • Authentication
      • Authorization
      • Token
      • User Info
    • Triggers
      • Subscribe
        GET
      • Unsubscribe
        DELETE
      • Campaigns
        GET
      • PerformList operation
        GET
    • Actions
      • Start a Call
  1. Triggers

Campaigns

GET
https://api.aqx.ai/api/events-gateway/resource/campaigns
This endpoint is used get the list of campaigns from the user.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.aqx.ai/api/events-gateway/resource/campaigns?CallType=' \
--header 'Ocp-Apim-Subscription-Key: {{api-key}}' \
--header 'Authorization: Bearer {{user_access_token}}' \
--header 'Content-Type: application/json'
Response Response Example
[
  {
    "id": "96aacfac-cb2e-4b45-9c48-93b392ac3924",
    "name": "Outbound - Insurance Company"
  },
  {
    "id": "e8704f90-682a-431a-996c-4a3607fc87ee",
    "name": "Inbound - Appointment Booking"
  },
  {
    "id": "4f17b1af-451e-486d-b6c7-3fb2974eb21b",
    "name": "Voice Bubble - Receptionist"
  },
  {
    "id": "de30266e-f2cd-4394-97bf-df19d7d99cee",
    "name": "Voice Bubble - Dentist Office"
  },
  {
    "id": "ae4e3f1f-c77d-41ca-8e1e-ed3789bbf032",
    "name": "Voice Bubble - Auto Dealership"
  }
]

Request

Query Params
CallType
enum<string> 
optional
0 - Voice bubble
1 - Inbound
2 - Outbound
Allowed values:
012
Header Params
Content-Type
string 
optional
Example:
application/json
Ocp-Apim-Subscription-Key
string 
required
Example:
{{api-key}}
Authorization
string 
required
Example:
Bearer {{user_access_token}}

Responses

🟢200Success
application/json
Body
array of:
id
string 
required
name
string 
required
Previous
Unsubscribe
Next
PerformList operation
Built with