Skip to content

Get action requests

Request

GET /v3/web-journeys/{webJourneyId}/runs/{runId}/actions/{actionSequenceId}/requests

Retrieve all network requests made during an action execution

Security
API_Key
Path
webJourneyIdinteger, (int64)required

Unique identification number for web journey item

Example:107239
runIdinteger, (int64)required

The ID of the web journey run

Example:12345
actionSequenceIdinteger, (int64)required

The sequence ID of the action

Example:1
GET
/v3/web-journeys/{webJourneyId}/runs/{runId}/actions/{actionSequenceId}/requests
curl -i -X GET \
  https://api.observepoint.com/v3/web-journeys/107239/runs/12345/actions/1/requests \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

Action requests retrieved successfully

Bodyapplication/json
Array [
pagerefstring
startedDateTimestring, (date-time)

The full date and time, according to ISO-8601 (e. g. 2020-08-25T21:15:43Z)

timeinteger, >= 0

Request's duration in milliseconds

requestobject
responseobject
cacheobject or null
timingsobject
serverIPAddressstring
connectionstring
commentstring
resourceTypestring

Resource type (script, xhr, image, document, font, ping, etc.)

locationDataobject
tagobject

Tag information object containing category and tag details

tagIdinteger
]
Response
[ { "pageref": "string", "startedDateTime": "2019-08-24T14:15:22Z", "time": 0, "request": {}, "response": {}, "cache": {}, "timings": {}, "serverIPAddress": "string", "connection": "string", "comment": "string", "resourceType": "string", "locationData": {}, "tag": {}, "tagId": 0 } ]