curl --request GET \
--url https://api.example.com/sessions/{session_id}/network/logs \
--header 'Authorization: Bearer <token>'{
"session_id": "<string>",
"requests": [
{
"path": "<string>",
"filename": "<string>",
"type": "request",
"download_url": "<string>",
"download_url_expires_in_seconds": 123
}
],
"responses": [
{
"path": "<string>",
"filename": "<string>",
"type": "request",
"download_url": "<string>",
"download_url_expires_in_seconds": 123
}
],
"total_count": 123
}curl --request GET \
--url https://api.example.com/sessions/{session_id}/network/logs \
--header 'Authorization: Bearer <token>'{
"session_id": "<string>",
"requests": [
{
"path": "<string>",
"filename": "<string>",
"type": "request",
"download_url": "<string>",
"download_url_expires_in_seconds": 123
}
],
"responses": [
{
"path": "<string>",
"filename": "<string>",
"type": "request",
"download_url": "<string>",
"download_url_expires_in_seconds": 123
}
],
"total_count": 123
}The access token received from the authorization server in the OAuth 2.0 flow.
Maximum number of logs to return
1 <= x <= 1000Whether to include download URLs for the logs
Was this page helpful?
Suggestions