| GET,OPTIONS | /v1/engine/catalog |
|---|
namespace CRM.AgencyPlatform.API.Internal
open System
open System.IO
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations
[<AllowNullLiteral>]
type WorkflowCatalogItemView() =
member val Name:String = null with get,set
member val Desc:String = null with get,set
member val FieldsJson:String = null with get,set
[<AllowNullLiteral>]
type WorkflowCatalogGroupView() =
member val Vertical:String = null with get,set
member val Color:String = null with get,set
member val Pack:String = null with get,set
member val Triggers:ResizeArray<WorkflowCatalogItemView> = new ResizeArray<WorkflowCatalogItemView>() with get,set
member val Actions:ResizeArray<WorkflowCatalogItemView> = new ResizeArray<WorkflowCatalogItemView>() with get,set
[<AllowNullLiteral>]
type EngineCatalogResponse() =
member val Groups:ResizeArray<WorkflowCatalogGroupView> = new ResizeArray<WorkflowCatalogGroupView>() with get,set
member val ResponseStatus:ResponseStatus = null with get,set
[<AllowNullLiteral>]
type EngineCatalogRequest() =
class end
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /v1/engine/catalog HTTP/1.1 Host: api.dev.dynamics.trendsic.com Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
Groups:
[
{
Vertical: String,
Color: String,
Pack: String,
Triggers:
[
{
Name: String,
Desc: String,
FieldsJson: String
}
],
Actions:
[
{
Name: String,
Desc: String,
FieldsJson: String
}
]
}
],
ResponseStatus:
{
ErrorCode: String,
Message: String,
StackTrace: String,
Errors:
[
{
ErrorCode: String,
FieldName: String,
Message: String,
Meta:
{
String: String
}
}
],
Meta:
{
String: String
}
}
}