Calls
Intelligence
Conversational Pathways
- GETGet All Pathways Information
- GETGet Single Pathway Information
- POSTCreate Pathway
- POSTUpdate Pathway
- DELDelete Pathway
- Pathway Chat
- Pathway Versions
- Pathway Folders
Vector Knowledge Bases
Blocked Numbers
Voices
Custom Tools
Web Agents
Custom Twilio Accounts
Account
Organizations
- POSTCreate Organization
- DELDelete Organization
- GETGet Organization
- GETGet Organization Members
- GETGet Organization's Current Service Version
- GETList Organization's Service Versions
- PATCHUpdate Organization's Service Version
- PATCHUpdate Organization Members
- PATCHUpdate Organization Member Permissions
- PATCHUpdate Organization Properties
- GETGet User Organization Memberships
- DELLeave Organization
- GETGet Organization Billing Information
- GETGet Organization Billing Refill Information
SMS
Resend Post Call Webhook
Resend post call webhooks for specified calls.
curl --request POST \
--url https://api.bland.ai/v1/postcall/webhooks/resend \
--header 'Content-Type: application/json' \
--header 'authorization: <authorization>' \
--data '{
"call_ids": [
"<string>"
]
}'
{
"data": [
{
"call_id": "<string>",
"payload": {},
"url": "<string>",
"user_id": "<string>",
"created_at": "<string>",
"metadata": [
{
"sent_at": "<string>",
"response_code": 123,
"response_time": "<string>",
"send_type": "<string>"
}
]
}
],
"errors": [
{
"error": "<string>",
"message": "<string>"
}
]
}
Overview
Resend post call webhooks for one or more call IDs. This endpoint allows you to manually trigger a resend of webhooks that were previously sent when calls completed. This endpoint can only re-send webhooks that were previously sent when calls completed. Webhooks will be re-sent to the same URL they were previously sent to.
Headers
Your API key for authentication.
Body Parameters
Array of call IDs to resend webhooks for. Each call ID must be unique within the array.
The unique identifier of a call to resend the webhook for.
Response
Array of webhook log objects for each resent webhook.
The unique identifier of the call this webhook is for.
The webhook payload data that was resent.
The URL the webhook was resent to.
The ID of the user/org that owns this webhook.
Timestamp of when the webhook was originally created.
Array of metadata objects about webhook send attempts.
curl --request POST \
--url https://api.bland.ai/v1/postcall/webhooks/resend \
--header 'Content-Type: application/json' \
--header 'authorization: <authorization>' \
--data '{
"call_ids": [
"<string>"
]
}'
{
"data": [
{
"call_id": "<string>",
"payload": {},
"url": "<string>",
"user_id": "<string>",
"created_at": "<string>",
"metadata": [
{
"sent_at": "<string>",
"response_code": 123,
"response_time": "<string>",
"send_type": "<string>"
}
]
}
],
"errors": [
{
"error": "<string>",
"message": "<string>"
}
]
}