Trendsic Platform Service

<back to all web services

QueueSweepRequest

The following routes are available for this service:
POST/v1/queue/sweep
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 LocationSweepResult() = 
        member val LocationId:Guid = new Guid() with get,set
        member val LocationName:String = null with get,set
        member val NoShow:Int32 = new Int32() with get,set
        member val Unfulfilled:Int32 = new Int32() with get,set

    [<AllowNullLiteral>]
    type QueueSweepResponse() = 
        member val ResponseStatus:ResponseStatus = null with get,set
        member val Locations:ResizeArray<LocationSweepResult> = new ResizeArray<LocationSweepResult>() with get,set
        member val TotalNoShow:Int32 = new Int32() with get,set
        member val TotalUnfulfilled:Int32 = new Int32() with get,set

    [<AllowNullLiteral>]
    type QueueSweepRequest() = 
        class end

F# QueueSweepRequest 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.

POST /v1/queue/sweep HTTP/1.1 
Host: api.dev.dynamics.trendsic.com 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	ResponseStatus: 
	{
		ErrorCode: String,
		Message: String,
		StackTrace: String,
		Errors: 
		[
			{
				ErrorCode: String,
				FieldName: String,
				Message: String,
				Meta: 
				{
					String: String
				}
			}
		],
		Meta: 
		{
			String: String
		}
	},
	Locations: 
	[
		{
			LocationId: 00000000000000000000000000000000,
			LocationName: String,
			NoShow: 0,
			Unfulfilled: 0
		}
	],
	TotalNoShow: 0,
	TotalUnfulfilled: 0
}