POST checks/browser/{checkId}/results/stepdata
Gets browser check results by step in json format by result ids.
URL Parameters
Name | Description |
---|---|
checkId | Check identifier. Type: numeric. |
Remarks
Request's ResultIds maximum count is limited to 50.
The default context for the route is the user context. To enable customer context (if it's allowed for the user) use the request query parameter customer_context=1.
Request example and description
curl --request POST "https://api-asm1.apica.io/v3/checks/browser/12345/results/stepdata?auth_ticket=C471ADC4-19B4-4219-BBF4-671A97EC653E" --header "Content-Type: application/json" --data-raw "{ \"result_ids\": [ \"29b6911c-5d1b-4689-bcbb-8957a53f656b\", \"e1802e41-7c20-4803-b7ed-e6607cbc33c3\", \"72ca6301-2736-423f-acf7-5ca091ceefa4\" ] }"
Name | Type | Required | Description |
---|---|---|---|
result_ids | Array | Yes |
The check results identifiers. |
Response body model example and description
{ "check_results": [ { "check_id": 1, "result_id": "4307f877-1719-4e8f-87bd-dbc4b1256322", "time_stamp_utc": "2024-11-09T02:05:01", "step_results": [ { "step": 2, "step_name": "Step #3", "url_count": 1, "started_utc": "2024-11-09T02:05:01", "elapsed_ms": 1000, "received_bytes": 100000, "sent_bytes": 10000, "compressed_content_bytes": 12345, "started_utc_iso_8601": "2024-11-09T02:05:01", "dom_interactive_ms": 1038, "dom_content_loaded_ms": 1138, "dom_complete_ms": 1338 }, { "step": 1, "step_name": "Step #2", "url_count": 1, "started_utc": "2024-11-09T02:05:01", "elapsed_ms": 2000, "received_bytes": 200000, "sent_bytes": 30000, "compressed_content_bytes": 45678, "started_utc_iso_8601": "2024-11-09T02:05:01", "dom_interactive_ms": 1038, "dom_content_loaded_ms": 1138, "dom_complete_ms": 1338 }, { "step": 3, "step_name": "Step #2", "url_count": 1, "started_utc": "2024-11-09T02:05:01", "elapsed_ms": 2000, "received_bytes": 300000, "sent_bytes": 30000, "compressed_content_bytes": 45678, "started_utc_iso_8601": "2024-11-09T02:05:01", "dom_interactive_ms": 1038, "dom_content_loaded_ms": 1138, "dom_complete_ms": 1338 } ] }, { "check_id": 1, "result_id": "47079b3b-cb29-4289-91e6-4ff16a02da75", "time_stamp_utc": "2024-11-09T02:05:01", "step_results": [ { "step": 1, "step_name": "Step #2", "url_count": 1, "started_utc": "2024-11-09T02:05:01", "elapsed_ms": 2000, "received_bytes": 200000, "sent_bytes": 30000, "compressed_content_bytes": 45678, "started_utc_iso_8601": "2024-11-09T02:05:01", "dom_interactive_ms": 1038, "dom_content_loaded_ms": 1138, "dom_complete_ms": 1338 }, { "step": 1, "step_name": "Step #2", "url_count": 1, "started_utc": "2024-11-09T02:05:01", "elapsed_ms": 2000, "received_bytes": 200000, "sent_bytes": 30000, "compressed_content_bytes": 45678, "started_utc_iso_8601": "2024-11-09T02:05:01", "dom_interactive_ms": 1038, "dom_content_loaded_ms": 1138, "dom_complete_ms": 1338 }, { "step": 2, "step_name": "Step #3", "url_count": 1, "started_utc": "2024-11-09T02:05:01", "elapsed_ms": 1000, "received_bytes": 100000, "sent_bytes": 10000, "compressed_content_bytes": 12345, "started_utc_iso_8601": "2024-11-09T02:05:01", "dom_interactive_ms": 1038, "dom_content_loaded_ms": 1138, "dom_complete_ms": 1338 } ] }, { "check_id": 1, "result_id": "e7af2ed2-af5c-47bf-9270-367a691dd9d7", "time_stamp_utc": "2024-11-09T02:05:01", "step_results": [ { "step": 1, "step_name": "Step #2", "url_count": 1, "started_utc": "2024-11-09T02:05:01", "elapsed_ms": 2000, "received_bytes": 200000, "sent_bytes": 30000, "compressed_content_bytes": 45678, "started_utc_iso_8601": "2024-11-09T02:05:01", "dom_interactive_ms": 1038, "dom_content_loaded_ms": 1138, "dom_complete_ms": 1338 }, { "step": 3, "step_name": "Step #2", "url_count": 1, "started_utc": "2024-11-09T02:05:01", "elapsed_ms": 2000, "received_bytes": 300000, "sent_bytes": 30000, "compressed_content_bytes": 45678, "started_utc_iso_8601": "2024-11-09T02:05:01", "dom_interactive_ms": 1038, "dom_content_loaded_ms": 1138, "dom_complete_ms": 1338 }, { "step": 3, "step_name": "Step #2", "url_count": 1, "started_utc": "2024-11-09T02:05:01", "elapsed_ms": 2000, "received_bytes": 300000, "sent_bytes": 30000, "compressed_content_bytes": 45678, "started_utc_iso_8601": "2024-11-09T02:05:01", "dom_interactive_ms": 1038, "dom_content_loaded_ms": 1138, "dom_complete_ms": 1338 } ] } ] }
Name | Type | Description |
---|---|---|
check_results | Array |
The check results data. |
step_results | Array |
The steps data of the result. |
step | Integer |
The number of the step. |
step_name | String |
The name of the step. |
url_count | Integer |
URL count. |
started_utc | DateTime |
The step started timestamp in UTC. |
elapsed_ms | Integer |
Elapsed ms. |
received_bytes | Integer |
Received bytes. |
sent_bytes | Integer |
Sent bytes. |
compressed_content_bytes | Integer |
Compressed content bytes. |
started_utc_iso_8601 | String |
The step started timestamp in UTC ISO 8601. |
dom_interactive_ms | Integer |
DOM Interactive. |
dom_content_loaded_ms | Integer |
DOM Content Loaded. |
dom_complete_ms | Integer |
DOM Complete. |
check_id | Integer |
The numeric identifier of the check. |
result_id | Guid |
The GUID of the check result. |
time_stamp_utc | DateTime |
The check result timestamp in UTC. |