Skip to main content
GET
/
app
/
workflows
import cobo_waas2
from cobo_waas2.models.app_workflow import AppWorkflow
from cobo_waas2.rest import ApiException
from pprint import pprint

# See configuration.py for a list of all supported configurations.
configuration = cobo_waas2.Configuration(
    # Replace `<YOUR_PRIVATE_KEY>` with your private key
    api_private_key="<YOUR_PRIVATE_KEY>",
    # Select the development environment. To use the production environment, change the URL to https://api.cobo.com/v2.
    host="https://api.dev.cobo.com/v2",
)
# Enter a context with an instance of the API client
with cobo_waas2.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = cobo_waas2.AppWorkflowsApi(api_client)

    try:
        # List app workflows
        api_response = api_instance.list_app_workflows()
        print("The response of AppWorkflowsApi->list_app_workflows:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling AppWorkflowsApi->list_app_workflows: %s\n" % e)

[
  {
    "workflow_id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
    "operation_id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
    "operation_name": "Make Batch Payout",
    "current_policies": [
      {
        "action": {
          "action_type": "Pending",
          "content": {
            "type": "PART_APPROVAL",
            "roles": [
              "admin"
            ],
            "user_ids": [
              "f47ac10b-58cc-4372-a567-0e02b2c3d479"
            ],
            "threshold": 15
          }
        },
        "conditions": [
          {
            "field": "amount",
            "value_type": "INT",
            "value": "11.23",
            "operator": "="
          }
        ]
      }
    ]
  }
]
import cobo_waas2
from cobo_waas2.models.app_workflow import AppWorkflow
from cobo_waas2.rest import ApiException
from pprint import pprint

# See configuration.py for a list of all supported configurations.
configuration = cobo_waas2.Configuration(
    # Replace `<YOUR_PRIVATE_KEY>` with your private key
    api_private_key="<YOUR_PRIVATE_KEY>",
    # Select the development environment. To use the production environment, change the URL to https://api.cobo.com/v2.
    host="https://api.dev.cobo.com/v2",
)
# Enter a context with an instance of the API client
with cobo_waas2.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = cobo_waas2.AppWorkflowsApi(api_client)

    try:
        # List app workflows
        api_response = api_instance.list_app_workflows()
        print("The response of AppWorkflowsApi->list_app_workflows:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling AppWorkflowsApi->list_app_workflows: %s\n" % e)

Authorizations

BIZ-API-KEY
string
header
required

The API key. For more details, refer to API key.

In the API playground, enter your API secret, and your API key will be accordingly calculated.

Response

A list of approval workflows successfully retrieved

workflow_id
string
required

The unique ID distinguishing the approval workflow instance among organizations.

Example:

"f47ac10b-58cc-4372-a567-0e02b2c3d479"

operation_id
string
required

The unique ID of the approval workflow.

Example:

"f47ac10b-58cc-4372-a567-0e02b2c3d479"

operation_name
string
required

The name of the approval workflow.

Example:

"Make Batch Payout"

current_policies
object[]
required