GET
/
calls
/
{id}
/
logs
curl --request GET \
  --url https://app.happyrobot.ai/api/v1/calls/{id}/logs \
  --header 'authorization: <authorization>'
[
  {
    "timestamp": "<string>",
    "function": "<string>",
    "severity": "<string>",
    "message": "<string>"
  }
]

Headers

authorization
string
required

Your API key for authentication. Use Bearer format.

Path Parameters

id
string
required

ID of the call.

Response

200 - application/json
timestamp
string
required
function
string | null
severity
string | null
message
string
required