Notifications
Clear all
Getting Started
2
Posts
2
Users
0
Reactions
4
Views
Hi there!
The resource you are requesting could not be found error typically indicates:
- The endpoint URL is incorrect,
- The HTTP method is wrong,
- Or you’re missing required headers or parameters.
If you’re trying to initiate a phone call using callin.io, try the following:
-
Method:
POST
-
Authentication:
ChooseNone
in the node, but set the header manually. -
Headers:
Add the following two headers:
Authorization: Bearer YOURAPIKEY
Content-Type: application/json -
Body Content:
Switch toRAW
mode and setContent-Type
toJSON
. Use this structure:
json
{
“phone_number”: “+1234567890”,
“agent_id”: “your-agent-id”
}
Replace +1234567890
with the real number and "your-agent-id"
with your actual agent ID from callin.io.
Posted : 08/07/2025 2:42 am