cURL
curl --request GET \ --url https://api.bolna.ai/executions/{execution_id}/log \ --header 'Authorization: Bearer <token>'
{ "data": [ { "created_at": "2024-01-23T05:14:37Z", "type": "request", "component": "synthesizer", "provider": "openai", "data": "Hello world" } ] }
Fetch raw logs of a specific phone call execution by its ID using Bolna APIs. This includes information such as prompts, requests & responses by the models
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The unique execution_id
execution_id
Retrieve specific execution raw logs
Show child attributes
Created timestamp of the log
"2024-01-23T05:14:37Z"
The log direction
request
response
type of component
"synthesizer"
The provider name
"openai"
The log content or message
"Hello world"
Was this page helpful?