| Requires any of the roles: | Agent, Administrator |
| GET,OPTIONS | /v1/Rfp/{RfpDocumentUID}/Brief |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| RfpDocumentUID | path | Guid | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| ResponseStatus | form | ResponseStatus | No | |
| RfpDocumentID | form | int | No | |
| Brief | form | RfpBrief | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| ProjectTitle | form | string | No | |
| SolicitationNumber | form | string | No | |
| IssuingOrganization | form | string | No | |
| ProjectType | form | string | No | |
| Summary | form | string | No | |
| Locations | form | List<RfpLocation> | No | |
| Schedule | form | RfpSchedule | No | |
| LineItems | form | List<RfpLineItem> | No | |
| BidConstraints | form | List<RfpBidConstraint> | No | |
| SpecialRequirements | form | List<string> | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Description | form | string | No | |
| City | form | string | No | |
| State | form | string | No | |
| Identifier | form | string | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| BidDueDate | form | string | No | |
| EstimatedStartDate | form | string | No | |
| QuestionsDueDate | form | string | No | |
| ContractDurationDays | form | int? | No | |
| Notes | form | string | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| ItemNumber | form | string | No | |
| Description | form | string | No | |
| Quantity | form | double? | No | |
| Unit | form | string | No | |
| Category | form | string | No | |
| SourceReference | form | string | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Constraint | form | string | No | |
| Detail | form | string | No |
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.
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
]
}
}