Trendsic Platform Service

<back to all web services

RfpBriefRequest

Requires Authentication
Requires any of the roles:Agent, Administrator
The following routes are available for this service:
GET,OPTIONS/v1/Rfp/{RfpDocumentUID}/Brief
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 RfpLocation() = 
        member val Description:String = null with get,set
        member val City:String = null with get,set
        member val State:String = null with get,set
        member val Identifier:String = null with get,set

    [<AllowNullLiteral>]
    type RfpSchedule() = 
        member val BidDueDate:String = null with get,set
        member val EstimatedStartDate:String = null with get,set
        member val QuestionsDueDate:String = null with get,set
        member val ContractDurationDays:Nullable<Int32> = new Nullable<Int32>() with get,set
        member val Notes:String = null with get,set

    [<AllowNullLiteral>]
    type RfpLineItem() = 
        member val ItemNumber:String = null with get,set
        member val Description:String = null with get,set
        member val Quantity:Nullable<Double> = new Nullable<Double>() with get,set
        member val Unit:String = null with get,set
        member val Category:String = null with get,set
        member val SourceReference:String = null with get,set

    [<AllowNullLiteral>]
    type RfpBidConstraint() = 
        member val Constraint:String = null with get,set
        member val Detail:String = null with get,set

    [<AllowNullLiteral>]
    type RfpBrief() = 
        member val ProjectTitle:String = null with get,set
        member val SolicitationNumber:String = null with get,set
        member val IssuingOrganization:String = null with get,set
        member val ProjectType:String = null with get,set
        member val Summary:String = null with get,set
        member val Locations:ResizeArray<RfpLocation> = new ResizeArray<RfpLocation>() with get,set
        member val Schedule:RfpSchedule = null with get,set
        member val LineItems:ResizeArray<RfpLineItem> = new ResizeArray<RfpLineItem>() with get,set
        member val BidConstraints:ResizeArray<RfpBidConstraint> = new ResizeArray<RfpBidConstraint>() with get,set
        member val SpecialRequirements:ResizeArray<String> = new ResizeArray<String>() with get,set

    [<AllowNullLiteral>]
    type RfpBriefResponse() = 
        member val ResponseStatus:ResponseStatus = null with get,set
        member val RfpDocumentID:Int32 = new Int32() with get,set
        member val Brief:RfpBrief = null with get,set

    [<AllowNullLiteral>]
    type RfpBriefRequest() = 
        member val RfpDocumentUID:Guid = new Guid() with get,set

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

GET /v1/Rfp/{RfpDocumentUID}/Brief HTTP/1.1 
Host: api.dev.dynamics.trendsic.com 
Accept: text/jsv
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
		}
	},
	RfpDocumentID: 0,
	Brief: 
	{
		ProjectTitle: String,
		SolicitationNumber: String,
		IssuingOrganization: String,
		ProjectType: String,
		Summary: String,
		Locations: 
		[
			{
				Description: String,
				City: String,
				State: String,
				Identifier: String
			}
		],
		Schedule: 
		{
			BidDueDate: String,
			EstimatedStartDate: String,
			QuestionsDueDate: String,
			ContractDurationDays: 0,
			Notes: String
		},
		LineItems: 
		[
			{
				ItemNumber: String,
				Description: String,
				Quantity: 0,
				Unit: String,
				Category: String,
				SourceReference: String
			}
		],
		BidConstraints: 
		[
			{
				Constraint: String,
				Detail: String
			}
		],
		SpecialRequirements: 
		[
			String
		]
	}
}