Trying to trigger a Personal Connection outbound call via the API but getting a 400. Sent a POST to /api/v2/interactions/outbound/calls with a standard JSON payload including the to/from numbers and campaign ID. The response just says ‘invalid request’ with no specific field errors. Anyone see this before?
Check the campaignId format. It needs to be a UUID string, not just the ID number. Also, ensure the from number is actually configured in that specific campaign. Here’s a working payload structure:
{
"campaignId": "your-campaign-uuid-here",
"to": "+12025551234",
"from": "+12025559876"
}