Regal · Example Payload

Regal Send Message Example

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

Regal Send Message 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": "POST",
    "url": "https://api.regal.ai/v1/messages/send",
    "headers": {
      "Authorization": "Bearer YOUR_REGAL_API_KEY",
      "Content-Type": "application/json"
    },
    "body": {
      "channel": "sms",
      "campaignId": 12345,
      "to": { "phoneNumber": "+15551234567" }
    }
  },
  "response": {
    "status": 202,
    "body": {
      "messageId": "msg_01HZX1234567890",
      "status": "queued"
    }
  }
}