GET
/
v1
/
postcall
/
webhooks
/
{call_id}
curl --request GET \
  --url https://api.bland.ai/v1/postcall/webhooks/{call_id} \
  --header 'authorization: <authorization>'
{
  "data": {
    "payload": {},
    "url": "<string>",
    "created_at": "<string>",
    "call_id": "<string>",
    "user_id": "<string>",
    "metadata": [
      {
        "sent_at": "<string>",
        "response_code": 123,
        "response_time": "<string>",
        "send_type": "<string>"
      }
    ]
  },
  "errors": [
    {
      "error": "<string>",
      "message": "<string>"
    }
  ]
}

Overview

Retrieve the post call webhook data for a specific call using its call ID. This endpoint returns the webhook data that was sent when the call completed.


Headers

authorization
string
required

Your org API key for authentication.


Path Parameters

call_id
string
required

The unique identifier of the call to get the webhook data for.


Response

data
object

The post call webhook and send history for this call.

errors
array

Array of error objects if returned.