POST
/
v1
/
postcall
/
webhooks
/
resend
curl --request POST \
  --url https://api.bland.ai/v1/postcall/webhooks/resend \
  --header 'Content-Type: application/json' \
  --header 'authorization: <authorization>' \
  --data '{
  "call_ids": [
    {}
  ]
}'
{
  "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

authorization
string
required

Your API key for authentication.


Body Parameters

call_ids
array
required

Array of call IDs to resend webhooks for. Each call ID must be unique within the array.


Response

data
array

Array of webhook log objects for each resent webhook.

errors
array

Array of error objects if any errors occurred.