Health
Calls
Create a Call
POST
/
call
Copy
curl --request POST \
--url https://prod.featherhq.com/call \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"workflowId": "<string>",
"leadId": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"email": "jsmith@example.com",
"primaryPhone": "<string>",
"zipcode": "<string>",
"city": "<string>",
"state": "<string>"
}'
Copy
{
"status": "<string>",
"id": "<string>"
}
Authorizations
Body
application/json
Response
200
application/json
Call inquiry created successfully
The response is of type object
.
Copy
curl --request POST \
--url https://prod.featherhq.com/call \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"workflowId": "<string>",
"leadId": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"email": "jsmith@example.com",
"primaryPhone": "<string>",
"zipcode": "<string>",
"city": "<string>",
"state": "<string>"
}'
Copy
{
"status": "<string>",
"id": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.