GET (Workflow) - Teradata Ecosystem Manager

Teradata Ecosystem Manager API Reference

Product
Teradata Ecosystem Manager
Release Number
16.10
Published
June 2017
Language
English (United States)
Last Update
2018-03-29
dita:mapPath
crq1488477755125.ditamap
dita:ditavalPath
ft:empty
dita:id
B035-3204
lifecycle
previous
Product Category
Analytical Ecosystem

Purpose

List workflows.

URL

/emrest/datadiscovery/workflows

HTTP Method

GET

Request Parameters

Query parameter:execution_status (Optional values: success, failed, paused, and running), status (Optional values: created, deployed, pending, and failed), workflow_name (Optional values: workflow Name)

Response

An array of JSON as follows.
Name Description Data Type Notes
workflow_name Name of workflow. String  
status Status of the workflow. String Possible values:
  • created
  • deployed
  • pending
  • failed
execution_status Execution status of the workflow. This is non-empty only if a deployed workflow is executing or was executed. String Possible values:
  • success
  • failed
  • paused
  • running

Status

A status code of 200 is returned on a successful completion. A non-200 status code is returned if an error occurs.

Example

[{
	"workflow_name": "workflow1",
	"status": "deployed"
},  {
	"workflow_name": "workflow2",
	"status": "Created"
},  {
	"workflow_name": "workflow3",
	"execution_status": "SUCCESS",
	"status": "deployed"
}]