CloudIO Platform
cloudio.ioVersion 3.0 Docs
  • CloudIO Platform
  • Architecture
  • Service Architecture
  • Scalability
  • Installation
  • Getting Started
    • Overview
    • How Tos
  • UI
    • App Controller
    • Page Controller
    • Controller Component
    • Custom Component
      • Sample Property Definitions
      • Custom Component Types
  • DataSource
    • Server Side Scripts
      • Sample Scripts
      • Module Imports
    • WHO Columns
  • REST APIs
    • Authentication
    • Query
    • Post
    • Status
    • API Playground
  • Workflow REST APIs
    • Introduction
    • PUT
    • GET
    • Instance PUT
    • Instance GET
    • Increment and GET
    • Instance Increment and GET
  • App Deployment
    • CloudIO CLI
    • Patch Management
    • SQL Migrations
    • Component Help
    • Email Setup
    • Configure SSO/OAuth
      • OAUTH 2.0
        • GOOGLE
      • SAML
        • AUTH0
        • AZURE AD
        • OKTA
      • Auto User Creation
    • Test Automation
    • On Premise Agent
  • Oracle Instant client
    • Setup
Powered by GitBook
On this page

Was this helpful?

Edit on GitHub
  1. Workflow REST APIs

GET

Workflow GET

POST https://next.cloudio.io/v1/wf/get

This endpoint allows you to retrieve the value of a key at the workflow level from within the task at execution time.

Request Body

Name
Type
Description

wfUid

string

Workflow UID

wfInstUid

string

Workflow Instance UID

version

string

Workflow Version

token

string

The token value passed to the task request

nodeUid

string

Node UID that was passed to the task request

executionId

string

Execution Id passed to the task request

key

string

A unique key within the workflow

{
    "status": "OK",
    "value": "some value"
}
{
    "status": "ERROR",
    "code": 403,
    "title": "Invalid Request",
    "message": "Invalid token: `a5bac5cb-b312-4038-b06f-e58a54ce56a`!"
}
PreviousPUTNextInstance PUT

Last updated 3 years ago

Was this helpful?