| GET,OPTIONS | /v1/records/settings |
|---|
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 WfBindingDto() =
member val SourceKey:String = null with get,set
member val WorkflowId:Int32 = new Int32() with get,set
member val Name:String = null with get,set
member val Paused:Boolean = new Boolean() with get,set
member val Runs30:Int32 = new Int32() with get,set
member val Summary:String = null with get,set
[<AllowNullLiteral>]
type RecordsSettingsDto() =
member val ThresholdsJson:String = null with get,set
member val VendorsJson:String = null with get,set
member val ArchivalJson:String = null with get,set
member val PoliciesJson:String = null with get,set
member val VisibilityJson:String = null with get,set
member val WfBindings:ResizeArray<WfBindingDto> = new ResizeArray<WfBindingDto>() with get,set
[<AllowNullLiteral>]
type RecordsSettingsResponse() =
member val ResponseStatus:ResponseStatus = null with get,set
member val Settings:RecordsSettingsDto = null with get,set
[<AllowNullLiteral>]
type RecordsSettingsRequest() =
class end
F# RecordsSettingsRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /v1/records/settings HTTP/1.1 Host: api.dev.dynamics.trendsic.com Accept: application/json
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}},"Settings":{"ThresholdsJson":"String","VendorsJson":"String","ArchivalJson":"String","PoliciesJson":"String","VisibilityJson":"String","WfBindings":[{"SourceKey":"String","WorkflowId":0,"Name":"String","Paused":false,"Runs30":0,"Summary":"String"}]}}