v3 API//
- Get web journey remote file mappings
Get web journeys
Create web journey
Delete web journeys by domain or folder
Get web journey by ID
Update web journey
Delete web journey
Undelete a web journey
Get web journey status
Get web journey actions
Update web journey actions
Get web journey action by ID
Update web journey action
Get web journey run status
Delete web journey run
Delete current web journey run
Get web journey notification configuration
Update web journey notification configuration
Get web journey rules
Update web journey rules
Get web journey action rules
Update web journey action rules
Update web journey remote file mappings
Get action requests
Get action logs
Get all labels attached to specified web journey
Patch labels attached to specified web journey
Get journey configuration info for specified journey run
Run web journey
Get web journey remote fi...
GET /v3/web-journeys/{webJourneyId}/remotefilemappings
Retrieve all remote file mappings associated with a web journey
Security
API_Key
GET
curl -i -X GET \
https://api.observepoint.com/v3/web-journeys/107239/remotefilemappings \
-H 'Authorization: YOUR_API_KEY_HERE'Remote file mappings retrieved successfully
Array []
A user-supplied name to identify this RFM config
Example:"Google Analytics Replacement"
A string GUID used as the uploaded replacement file's "name" in S3
Example:"8c59d02b-6ebc-4893-9391-9be26c6d34cc"
The replacement URL, or else the name of the replacement file before it was uploaded
Example:"https://example.com/replacement-script.js"
The request URL to be replaced (or the regex that matches URLs to replace)
Example:"https://www.google-analytics.com/analytics.js"
Foreign key reference to accounts table. The owner of this RemoteFileMapping
Example:343
Foreign key reference to the users table. Who updated this RFM most recently?
Example:1362
Response
[ { "id": 123, "name": "Google Analytics Replacement", "fileId": "8c59d02b-6ebc-4893-9391-9be26c6d34cc", "fileUrl": "https://example.com/replacement-script.js", "matchType": "equals", "matchValue": "https://www.google-analytics.com/analytics.js", "accountId": 343, "createdBy": 1362, "createdAt": "2024-01-01T10:15:00.000Z", "updatedBy": 1362, "updatedAt": "2024-01-02T10:15:00.000Z" } ]