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
Imports System
Imports System.IO
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports CRM.AgencyPlatform.API.Internal

Namespace Global

    Namespace CRM.AgencyPlatform.API.Internal

        Public Partial Class RfpBidConstraint
            Public Overridable Property Constraint As String
            Public Overridable Property Detail As String
        End Class

        Public Partial Class RfpBrief
            Public Overridable Property ProjectTitle As String
            Public Overridable Property SolicitationNumber As String
            Public Overridable Property IssuingOrganization As String
            Public Overridable Property ProjectType As String
            Public Overridable Property Summary As String
            Public Overridable Property Locations As List(Of RfpLocation) = New List(Of RfpLocation)
            Public Overridable Property Schedule As RfpSchedule
            Public Overridable Property LineItems As List(Of RfpLineItem) = New List(Of RfpLineItem)
            Public Overridable Property BidConstraints As List(Of RfpBidConstraint) = New List(Of RfpBidConstraint)
            Public Overridable Property SpecialRequirements As List(Of String) = New List(Of String)
        End Class

        Public Partial Class RfpBriefRequest
            Public Overridable Property RfpDocumentUID As Guid
        End Class

        Public Partial Class RfpBriefResponse
            Public Overridable Property ResponseStatus As ResponseStatus
            Public Overridable Property RfpDocumentID As Integer
            Public Overridable Property Brief As RfpBrief
        End Class

        Public Partial Class RfpLineItem
            Public Overridable Property ItemNumber As String
            Public Overridable Property Description As String
            Public Overridable Property Quantity As Double?
            Public Overridable Property Unit As String
            Public Overridable Property Category As String
            Public Overridable Property SourceReference As String
        End Class

        Public Partial Class RfpLocation
            Public Overridable Property Description As String
            Public Overridable Property City As String
            Public Overridable Property State As String
            Public Overridable Property Identifier As String
        End Class

        Public Partial Class RfpSchedule
            Public Overridable Property BidDueDate As String
            Public Overridable Property EstimatedStartDate As String
            Public Overridable Property QuestionsDueDate As String
            Public Overridable Property ContractDurationDays As Integer?
            Public Overridable Property Notes As String
        End Class
    End Namespace
End Namespace

VB.NET RfpBriefRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv

HTTP + CSV

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/csv
HTTP/1.1 200 OK
Content-Type: text/csv
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"]}}