| POST,OPTIONS | /v1/dispatch/public/request/{SchedulerUrl} |
|---|
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 DispatchPublicRequestResponse() =
member val Code:String = null with get,set
member val ResponseStatus:ResponseStatus = null with get,set
[<AllowNullLiteral>]
type DispatchPublicRequestCreate() =
member val SchedulerUrl:String = null with get,set
member val CustomerName:String = null with get,set
member val CustomerPhone:String = null with get,set
member val CustomerEmail:String = null with get,set
member val Cargo:String = null with get,set
member val Units:Int32 = new Int32() with get,set
member val FromLoc:String = null with get,set
member val ToLoc:String = null with get,set
member val WindowText:String = null with get,set
member val IsUrgent:Boolean = new Boolean() with get,set
member val Notes:String = null with get,set
member val TurnstileToken:String = null with get,set
F# DispatchPublicRequestCreate DTOs
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.
POST /v1/dispatch/public/request/{SchedulerUrl} HTTP/1.1
Host: api.dev.dynamics.trendsic.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
SchedulerUrl: String,
CustomerName: String,
CustomerPhone: String,
CustomerEmail: String,
Cargo: String,
Units: 0,
FromLoc: String,
ToLoc: String,
WindowText: String,
IsUrgent: False,
Notes: String,
TurnstileToken: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
Code: String,
ResponseStatus:
{
ErrorCode: String,
Message: String,
StackTrace: String,
Errors:
[
{
ErrorCode: String,
FieldName: String,
Message: String,
Meta:
{
String: String
}
}
],
Meta:
{
String: String
}
}
}