Post Call Webhook
Reference for receiving Phonely post-call data on your own webhook endpoint.
POST request to your webhook endpoint after a call completes. Use this when you want to forward summaries, transcripts, outcomes, or call links into another system.
Where To Configure It In Phonely
- Open
/agent/{agentId}?tab=workflows. - Add the
Send Call Datapost-call action to the workflow. - In the
Configuretab, enter your webhook URL. - Choose whether to send the full call payload or a custom body.
- Open the
Testtab and send a sample request. - Confirm your receiver returns a success response.
Receiver Requirements
- The receiver must accept HTTPS requests.
- The receiver must be ready to parse JSON request bodies.
- The receiver should return a
2xxresponse after successful processing. - The receiver should log failures for later debugging.
Payload Contents
The schema below documents the standard post-call payload. It includes fields such as:- call and agent identifiers
- transcript text and structured transcript
- summary, long summary, topic, and sentiment
- recording and dashboard URLs
- caller and business phone numbers
- call start time, end time, duration, and end reason
Testing Tips
- Return
200 OKafter storing or accepting the payload. - Re-run the
Testtab any time you change the expected body or the receiver. - If the receiver returns a non-success status, inspect the receiver logs before publishing the workflow.
Response
Successful response
Name of the agent handling the call
Email address mentioned during the call
List of questions that were not answered during the call
List of action items identified during the call
Reason for any required follow-up
Indicator if follow-up is required
URL to access the call recording
URL to access the call dashboard
Main purpose or topic of the call
Overall sentiment of the call
Full text transcript of the call
Structured transcript of the call
Any specific date mentioned during the call
Phone number of the agent
Key points or highlights from the call
Main topic or category of the call
Detailed summary of the call
Unique identifier for the call
Indicator of AI's success in handling the call
Phone number of the customer
Date string when the call started
Date string when the call ended
Duration of the call in seconds
Name of the caller
Direction of the call (inbound/outbound)
Any specific time mentioned during the call
Brief summary of the call
Reason for the call ending

