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

Instance Increment and GET

Instance increment and GET

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

This endpoint allows you to increment and retrieve a number value for a given key at the workflow instance level. A value of number 1 will be set and retrieved when a given key doesn't exists.

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 instance

{
    "status": "OK",    
}
{
    "status": "ERROR",
    "code": 403,
    "title": "Invalid Request",
    "message": "Invalid token: `a5bac5cb-b312-4038-b06f-e58a54ce56a`!"
}
PreviousIncrement and GETNextCloudIO CLI

Last updated 3 years ago

Was this helpful?