/
/Workflow APIs
DocsSign in
Sign in
  • APIs
  • Generators
  • Stacks
  • Projects
  • Docs
  • History
  • Schema
Checked 1h 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

load encoded object from storage

post/api/v1/workflow/encodedobject/load

Request body

extStoreIdstring
extPathstring
encodingstring
datastring

Example request

{
  "data": "data",
  "extStoreId": "extStoreId",
  "extPath": "extPath",
  "encoding": "encoding"
}

Response

successful operation

extStoreIdstring
extPathstring
encodingstring
datastring

Example response

{
  "data": "data",
  "extStoreId": "extStoreId",
  "extPath": "extPath",
  "encoding": "encoding"
}

Changes