GET
/
dial
/
campaigns
Get Campaigns
curl --request GET \
  --url https://app.happyrobot.ai/api/v1/dial/campaigns \
  --header 'authorization: <authorization>'
[
  {
    "id": "<string>",
    "organization_id": "<string>",
    "name": "<string>",
    "status": "<string>",
    "created": "<string>"
  }
]

Headers

authorization
string
required

Your API key for authentication. Use Bearer format.

Example:

"Bearer API_KEY"

Response

200

Array of campaigns.

id
string
required
organization_id
string
required

ID of the organization that owns the campaign.

name
string
required

Name of the campaign.

status
string
required

Status of the campaign.

created
string

Date the campaign was created.