GET (Workflows) - Teradata Ecosystem Manager

Teradata Ecosystem Manager API Reference

Product
Teradata Ecosystem Manager
Release Number
16.00
Published
December 2016
Language
English (United States)
Last Update
2018-03-29
dita:mapPath
qvc1470238851347.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)

Response

An array of JSON as follows.
Name Description Data Type
workflow_name Name of workflow. String
status Status of the workflow. Possible values are created and deployed. String
execution_status Execution status of the workflow. This is non-empty only if a deployed workflow is executing or has been executed. Possible values are success, failed, paused, and running. String

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"
}]