| Requires any of the roles: | Agent, Administrator |
| GET,OPTIONS | /v1/Rfp/{RfpDocumentUID}/Documents |
|---|
"use strict";
export class RfpDocument {
/** @param {{RfpDocumentID?:number,RfpDocumentUID?:string,FileName?:string,ContentType?:string,ContentLength?:number,S3Key?:string,Status?:string,ErrorMessage?:string,CreatedBy?:string,CreatedAt?:string,UpdatedAt?:string,ParentRfpDocumentID?:number,DocumentType?:string,IsActive?:boolean}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
RfpDocumentID;
/** @type {string} */
RfpDocumentUID;
/** @type {string} */
FileName;
/** @type {string} */
ContentType;
/** @type {number} */
ContentLength;
/** @type {string} */
S3Key;
/** @type {string} */
Status;
/** @type {string} */
ErrorMessage;
/** @type {string} */
CreatedBy;
/** @type {string} */
CreatedAt;
/** @type {?string} */
UpdatedAt;
/** @type {?number} */
ParentRfpDocumentID;
/** @type {string} */
DocumentType;
/** @type {boolean} */
IsActive;
}
export class RfpChildrenResponse {
/** @param {{ResponseStatus?:ResponseStatus,RfpDocumentID?:number,Documents?:RfpDocument[]}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {ResponseStatus} */
ResponseStatus;
/** @type {number} */
RfpDocumentID;
/** @type {RfpDocument[]} */
Documents = [];
}
export class RfpChildrenRequest {
/** @param {{RfpDocumentUID?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
RfpDocumentUID;
}
JavaScript RfpChildrenRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /v1/Rfp/{RfpDocumentUID}/Documents 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,"Documents":[{"RfpDocumentID":0,"RfpDocumentUID":"00000000000000000000000000000000","FileName":"String","ContentType":"String","ContentLength":0,"S3Key":"String","Status":"String","ErrorMessage":"String","CreatedBy":"String","CreatedAt":"0001-01-01T00:00:00.0000000","UpdatedAt":"0001-01-01T00:00:00.0000000","ParentRfpDocumentID":0,"DocumentType":"String","IsActive":false}]}