Trendsic Platform Service

<back to all web services

EngineWorkflowsRequest

Requires Authentication
The following routes are available for this service:
GET,OPTIONS/v1/engine/workflows
import java.math.*
import java.util.*
import java.io.InputStream
import net.servicestack.client.*


open class EngineWorkflowsRequest
{
}

open class EngineWorkflowsResponse
{
    open var Workflows:ArrayList<WorkflowView> = ArrayList<WorkflowView>()
    open var ResponseStatus:ResponseStatus? = null
}

open class WorkflowView
{
    open var WorkflowId:Int? = null
    open var SourceKey:String? = null
    open var Name:String? = null
    open var Vertical:String? = null
    open var Pack:String? = null
    open var Status:String? = null
    open var VersionNum:Int? = null
    open var Description:String? = null
    open var OwnerRole:String? = null
    open var GraphJson:String? = null
    open var Ok30:Int? = null
    open var Fail30:Int? = null
    open var Waiting:Int? = null
    open var UpdatedBy:String? = null
    open var UpdatedAt:Date? = null
    open var Versions:ArrayList<WorkflowVersionInfo> = ArrayList<WorkflowVersionInfo>()
}

open class WorkflowVersionInfo
{
    open var VersionNum:Int? = null
    open var Status:String? = null
    open var CreatedBy:String? = null
    open var CreatedAt:Date? = null
    open var PublishedAt:Date? = null
}

Kotlin EngineWorkflowsRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

GET /v1/engine/workflows HTTP/1.1 
Host: api.dev.dynamics.trendsic.com 
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	Workflows: 
	[
		{
			WorkflowId: 0,
			SourceKey: String,
			Name: String,
			Vertical: String,
			Pack: String,
			Status: String,
			VersionNum: 0,
			Description: String,
			OwnerRole: String,
			GraphJson: String,
			Ok30: 0,
			Fail30: 0,
			Waiting: 0,
			UpdatedBy: String,
			UpdatedAt: 0001-01-01,
			Versions: 
			[
				{
					VersionNum: 0,
					Status: String,
					CreatedBy: String,
					CreatedAt: 0001-01-01,
					PublishedAt: 0001-01-01
				}
			]
		}
	],
	ResponseStatus: 
	{
		ErrorCode: String,
		Message: String,
		StackTrace: String,
		Errors: 
		[
			{
				ErrorCode: String,
				FieldName: String,
				Message: String,
				Meta: 
				{
					String: String
				}
			}
		],
		Meta: 
		{
			String: String
		}
	}
}