Trendsic Platform Service

<back to all web services

SendQuoteRequest

Requires Authentication
The following routes are available for this service:
POST,OPTIONS/v1/quote/{QuoteUID}/send
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 SendQuoteResponse() = 
        member val ResponseStatus:ResponseStatus = null with get,set
        member val PortalUrl:String = null with get,set
        member val DeliveryErrors:ResizeArray<String> = new ResizeArray<String>() with get,set

    [<AllowNullLiteral>]
    type SendQuoteRequest() = 
        member val QuoteUID:Guid = new Guid() with get,set
        member val RecipientContactId:Nullable<Int32> = new Nullable<Int32>() with get,set
        member val RecipientEmail:String = null with get,set
        member val RecipientPhone:String = null with get,set
        member val DeliverEmail:Boolean = new Boolean() with get,set
        member val DeliverSms:Boolean = new Boolean() with get,set

F# SendQuoteRequest 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/quote/{QuoteUID}/send HTTP/1.1 
Host: api.dev.dynamics.trendsic.com 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	QuoteUID: 00000000000000000000000000000000,
	RecipientContactId: 0,
	RecipientEmail: String,
	RecipientPhone: String,
	DeliverEmail: False,
	DeliverSms: False
}
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
		}
	},
	PortalUrl: String,
	DeliveryErrors: 
	[
		String
	]
}