curl --request POST \
--url https://api.example.com/call/read \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"project_id": "<string>",
"id": "<string>",
"include_costs": false,
"include_storage_size": false,
"include_total_storage_size": false
}
'{
"call": {
"id": "<string>",
"project_id": "<string>",
"op_name": "<string>",
"trace_id": "<string>",
"started_at": "2023-11-07T05:31:56Z",
"attributes": {},
"inputs": {},
"display_name": "<string>",
"parent_id": "<string>",
"thread_id": "<string>",
"turn_id": "<string>",
"ended_at": "2023-11-07T05:31:56Z",
"exception": "<string>",
"output": "<unknown>",
"summary": {},
"wb_user_id": "<string>",
"wb_run_id": "<string>",
"wb_run_step": 123,
"wb_run_step_end": 123,
"deleted_at": "2023-11-07T05:31:56Z",
"storage_size_bytes": 123,
"total_storage_size_bytes": 123
}
}curl --request POST \
--url https://api.example.com/call/read \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"project_id": "<string>",
"id": "<string>",
"include_costs": false,
"include_storage_size": false,
"include_total_storage_size": false
}
'{
"call": {
"id": "<string>",
"project_id": "<string>",
"op_name": "<string>",
"trace_id": "<string>",
"started_at": "2023-11-07T05:31:56Z",
"attributes": {},
"inputs": {},
"display_name": "<string>",
"parent_id": "<string>",
"thread_id": "<string>",
"turn_id": "<string>",
"ended_at": "2023-11-07T05:31:56Z",
"exception": "<string>",
"output": "<unknown>",
"summary": {},
"wb_user_id": "<string>",
"wb_run_id": "<string>",
"wb_run_step": 123,
"wb_run_step_end": 123,
"deleted_at": "2023-11-07T05:31:56Z",
"storage_size_bytes": 123,
"total_storage_size_bytes": 123
}
}Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Successful Response
Show child attributes
Was this page helpful?