/
/Workflow APIs
DocsSign in
Sign in
  • APIs
  • Generators
  • Stacks
  • Projects
  • Docs
  • History
  • Schema
Checked 32m ago · Updated 1mo ago
  • poststart a workflow
  • postsignal a workflow
  • postsignal a workflow
  • poststop a workflow
  • postget workflow data objects aka data attributes
  • postset workflow data objects aka data attributes
  • postget workflow search attributes
  • postset workflow search attributes
  • postload encoded object from storage
  • postget a workflow's status and results(if completed & requested)
  • postget a workflow's status and results(if completed & requested), wait if the workflow is still running
  • postsearch for workflows by a search attribute query
  • postreset a workflow
  • postexecute an RPC of a workflow
  • postskip the timer of a workflow
  • postupdate the config of a workflow
  • postdump internal info of a workflow
  • getreturn health info of the server
  • post/api/v1/workflow/waitForStateCompletion
  • posttrigger ContinueAsNew for a workflow
  • postfor invoking WorkflowState.start API
  • postfor invoking WorkflowState.decide API
  • postfor invoking workflow RPC API in the worker

set workflow data objects aka data attributes

post/api/v1/workflow/dataobjects/set

Request body

workflowIdstring required
workflowRunIdstring

Example request

{
  "objects": [
    {
      "value": {
        "data": "data",
        "extStoreId": "extStoreId",
        "extPath": "extPath",
        "encoding": "encoding"
      },
      "key": "key"
    },
    {
      "value": {
        "data": "data",
        "extStoreId": "extStoreId",
        "extPath": "extPath",
        "encoding": "encoding"
      },
      "key": "key"
    }
  ],
  "workflowRunId": "workflowRunId",
  "workflowId": "workflowId"
}

Response

successful operation

Changes