Routes
Update a connector route
Updates a route definition. Implementations should avoid mutating routes that are currently running unless they snapshot the effective route definition into each run.
patch/routes/{routeId}
Path parameters
routeIdstring uuid required
Stable identifier for a connector route.
Example:1e8ff011-2274-4f16-a7dd-bf0b4fd5262f
Stable identifier of a connector route that composes a source operation, destination operation, optional transformation, and trigger policy.
Request body
Example request
{
"trigger": {
"triggerType": "SCHEDULE",
"schedule": "0 2 * * *"
},
"atomicity": "ALL_OR_NOTHING"
}Response
Connector route updated.
Example response
{
"routeId": "1e8ff011-2274-4f16-a7dd-bf0b4fd5262f",
"displayName": "Employee CSV to license invitations",
"description": "Imports employee rows, maps them to invitation payloads, and writes them to the invitation service.",
"sourceBindingIds": [
"2777417e-82ce-4d3e-b96c-94e00a4d9a93"
],
"destinationBindingIds": [
"b1313b55-ee8c-41d1-8f4f-f4fe2c15e3be"
],
"transformationId": "0e60abcc-41b5-4cc5-bec2-f0047f129341",
"trigger": {
"triggerType": "ON_DEMAND"
},
"atomicity": "PER_RECORD",
"purpose": "credential-issuance",
"legalBasis": "contract",
"enabled": true,
"materializationPolicy": {
"mode": "NONE"
},
"createdAt": "2026-06-18T10:00:00Z",
"updatedAt": "2026-06-18T10:05:00Z"
}