v4

OpenAPI 3.1.02026-07-3163216290.7 KB
Workflow nodes

Update a workflow node

Update workflow-node-owned fields for a single node. Shared resources such as email messages and audience segments should be updated through their own APIs.

post/v1/workflows/{workflowId}/nodes/{nodeId}

Request body

expectedRevisionIdstring nullable required

The workflow revision token returned by the latest workflow read or mutation. Older workflows may return null before their first revision-aware mutation; pass null back as expectedRevisionId in that case. If the token is stale, the API returns a 409 Conflict error.

Example request

{
  "payload": {
    "contactPropertyQuery": {
      "key": "firstName"
    }
  }
}

Response

Workflow node updated.

OR
OR
OR
OR
OR
OR
OR

Example response

{
  "contactPropertyQuery": {
    "key": "firstName"
  }
}