curl --request PUT \
--url https://api.questra.ai/navigation-rules/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'X-Org-Id: <x-org-id>' \
--data '
{
"source_page_id": "<string>",
"target_page_id": "<string>",
"condition": "<string>",
"order": 1
}
'{
"id": "<string>",
"source_page_id": "<string>",
"target_page_id": "<string>",
"order": 1,
"condition": "<string>",
"attention_required": {
"reason": "<string>",
"dismissed": false
}
}curl --request PUT \
--url https://api.questra.ai/navigation-rules/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'X-Org-Id: <x-org-id>' \
--data '
{
"source_page_id": "<string>",
"target_page_id": "<string>",
"condition": "<string>",
"order": 1
}
'{
"id": "<string>",
"source_page_id": "<string>",
"target_page_id": "<string>",
"order": 1,
"condition": "<string>",
"attention_required": {
"reason": "<string>",
"dismissed": false
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Unique ID of the navigation rule to update
Unique ID of the page to be routed from
Unique ID of the page to route to
Condition under which this rule should be followed. Null will unassign the condition, while neglecting to set a value will keep the condition as-is.
The order in which this rule should be evaluated compared to others from the same source
x >= 0Unique ID of the navigation rule
Unique ID of the page this rule routes traffic from
Unique ID of the page this rule routes traffic to
Order in which this rule should be evaluated to determine which one should be followed (0 is first, 1 is second, etc.)
x >= 0If the condition evaluates to true, this condition should be used and the user should be sent to the target page
Present when the AI flagged this navigation rule as needing human review before export
Show child attributes