Add redirect_url field to track where a visitor is redirected for a visit

This commit is contained in:
Alejandro Celaya
2024-11-24 12:53:49 +01:00
parent fef512a7a3
commit 8274525f75
9 changed files with 73 additions and 0 deletions

View File

@@ -247,6 +247,11 @@
"type": "string",
"nullable": true,
"description": "The originally visited URL that triggered the tracking of this visit"
},
"redirectUrl": {
"type": "string",
"nullable": true,
"description": "The URL to which the visitor was redirected"
}
},
"example": {

View File

@@ -25,6 +25,10 @@
"visitedUrl": {
"type": ["string", "null"],
"description": "The originally visited URL that triggered the tracking of this visit"
},
"redirectUrl": {
"type": ["string", "null"],
"description": "The URL to which the visitor was redirected"
}
}
}