Regal · Example Payload

Regal List Campaigns Example

AIAI AgentsVoice AIContact CenterOutbound CallingInbound CallingPhone AgentsSMSChatWebRTCConversation IntelligenceJourney OrchestrationBranded Caller IDCCaaSCPaaSSales DialerCustomer Engagement

Regal List Campaigns Example is an example object payload from Regal, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://api.regal.ai/v1/campaigns",
    "headers": {
      "Authorization": "Bearer YOUR_REGAL_API_KEY"
    }
  },
  "response": {
    "status": 200,
    "body": [
      {
        "campaignId": 12345,
        "campaignFriendlyId": "support-callback-2026",
        "name": "Support Callback 2026",
        "channel": "voice",
        "status": "active"
      },
      {
        "campaignId": 67890,
        "campaignFriendlyId": "appointment-reminders",
        "name": "Appointment Reminders",
        "channel": "sms",
        "status": "active"
      }
    ]
  }
}