Skip to content

Get journey configuration info for specified journey run

Request

GET /v3/web-journeys/{webJourneyId}/runs/{runId}/info
Security
API_Key
Path
webJourneyIdinteger, (int64)required

Unique identification number for web journey item

Example:107239
runIdinteger, (int64)required

Unique identification number for web audit or journey run

Example:33010
GET
/v3/web-journeys/{webJourneyId}/runs/{runId}/info
curl -i -X GET \
  https://api.observepoint.com/v3/web-journeys/107239/runs/33010/info \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

Web Journey run configuration info

Bodyapplication/json
browserNamestringrequired

Browser name

browserVersionstringrequired

Browser version

widthintegerrequired

Browser width in pixels

heightintegerrequired

Browser height in pixels

userAgentstringrequired

User agent

locationIdintegerrequired

Location ID, this maps to a location in the location table

customProxystring

Custom proxy used for the run, if supplied by the user.

Example:"http://90.90.90.90:8888"
privacyConsentActionsbooleanrequired

Privacy Consent Actions present in configuration or not

vpnEnabledbooleanrequired

VPN enabled or not for the run configuration

gpcEnabledbooleanrequired

GPC enabled or not

technologyBlockingEnabledbooleanrequired

Tag ID/Tag Category ID blocking enabled or not

fileSubstitutionConfiguredbooleanrequired

File Substitution configured or not

blockThirdPartyCookiesbooleanrequired

Block third party cookies or not

customHeadersAppliedbooleanrequired

Custom HTTP headers applied or not

Response
{ "browserName": "string", "browserVersion": "string", "width": 0, "height": 0, "userAgent": "string", "locationId": 0, "customProxy": "http://90.90.90.90:8888", "privacyConsentActions": true, "vpnEnabled": true, "gpcEnabled": true, "technologyBlockingEnabled": true, "fileSubstitutionConfigured": true, "blockThirdPartyCookies": true, "customHeadersApplied": true }