| Requires any of the roles: | Agent, Administrator |
| GET,OPTIONS | /v1/Rfp/{RfpDocumentUID}/Brief |
|---|
export class RfpLocation
{
public Description: string;
public City: string;
public State: string;
public Identifier: string;
public constructor(init?: Partial<RfpLocation>) { (Object as any).assign(this, init); }
}
export class RfpSchedule
{
public BidDueDate: string;
public EstimatedStartDate: string;
public QuestionsDueDate: string;
public ContractDurationDays?: number;
public Notes: string;
public constructor(init?: Partial<RfpSchedule>) { (Object as any).assign(this, init); }
}
export class RfpLineItem
{
public ItemNumber: string;
public Description: string;
public Quantity?: number;
public Unit: string;
public Category: string;
public SourceReference: string;
public constructor(init?: Partial<RfpLineItem>) { (Object as any).assign(this, init); }
}
export class RfpBidConstraint
{
public Constraint: string;
public Detail: string;
public constructor(init?: Partial<RfpBidConstraint>) { (Object as any).assign(this, init); }
}
export class RfpBrief
{
public ProjectTitle: string;
public SolicitationNumber: string;
public IssuingOrganization: string;
public ProjectType: string;
public Summary: string;
public Locations: RfpLocation[] = [];
public Schedule: RfpSchedule;
public LineItems: RfpLineItem[] = [];
public BidConstraints: RfpBidConstraint[] = [];
public SpecialRequirements: string[] = [];
public constructor(init?: Partial<RfpBrief>) { (Object as any).assign(this, init); }
}
export class RfpBriefResponse
{
public ResponseStatus: ResponseStatus;
public RfpDocumentID: number;
public Brief: RfpBrief;
public constructor(init?: Partial<RfpBriefResponse>) { (Object as any).assign(this, init); }
}
export class RfpBriefRequest
{
public RfpDocumentUID: string;
public constructor(init?: Partial<RfpBriefRequest>) { (Object as any).assign(this, init); }
}
TypeScript RfpBriefRequest DTOs
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
]
}
}