Trendsic Platform Service

<back to all web services

EngineCatalogRequest

Requires Authentication
The following routes are available for this service:
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

F# EngineCatalogRequest DTOs

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

HTTP + OTHER

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/jsonl
HTTP/1.1 200 OK
Content-Type: text/jsonl
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"}}}