| Requires any of the roles: | Agent, Administrator |
| GET,OPTIONS | /v1/Rfp |
|---|
import 'package:servicestack/servicestack.dart';
class RfpDocument implements IConvertible
{
int? RfpDocumentID;
String? RfpDocumentUID;
String? FileName;
String? ContentType;
int? ContentLength;
String? S3Key;
String? Status;
String? ErrorMessage;
String? CreatedBy;
DateTime? CreatedAt;
DateTime? UpdatedAt;
RfpDocument({this.RfpDocumentID,this.RfpDocumentUID,this.FileName,this.ContentType,this.ContentLength,this.S3Key,this.Status,this.ErrorMessage,this.CreatedBy,this.CreatedAt,this.UpdatedAt});
RfpDocument.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
RfpDocumentID = json['RfpDocumentID'];
RfpDocumentUID = json['RfpDocumentUID'];
FileName = json['FileName'];
ContentType = json['ContentType'];
ContentLength = json['ContentLength'];
S3Key = json['S3Key'];
Status = json['Status'];
ErrorMessage = json['ErrorMessage'];
CreatedBy = json['CreatedBy'];
CreatedAt = JsonConverters.fromJson(json['CreatedAt'],'DateTime',context!);
UpdatedAt = JsonConverters.fromJson(json['UpdatedAt'],'DateTime',context!);
return this;
}
Map<String, dynamic> toJson() => {
'RfpDocumentID': RfpDocumentID,
'RfpDocumentUID': RfpDocumentUID,
'FileName': FileName,
'ContentType': ContentType,
'ContentLength': ContentLength,
'S3Key': S3Key,
'Status': Status,
'ErrorMessage': ErrorMessage,
'CreatedBy': CreatedBy,
'CreatedAt': JsonConverters.toJson(CreatedAt,'DateTime',context!),
'UpdatedAt': JsonConverters.toJson(UpdatedAt,'DateTime',context!)
};
getTypeName() => "RfpDocument";
TypeContext? context = _ctx;
}
class RfpListResponse implements IConvertible
{
ResponseStatus? ResponseStatus;
List<RfpDocument>? Documents = [];
RfpListResponse({this.ResponseStatus,this.Documents});
RfpListResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!);
Documents = JsonConverters.fromJson(json['Documents'],'List<RfpDocument>',context!);
return this;
}
Map<String, dynamic> toJson() => {
'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!),
'Documents': JsonConverters.toJson(Documents,'List<RfpDocument>',context!)
};
getTypeName() => "RfpListResponse";
TypeContext? context = _ctx;
}
class RfpListRequest implements IConvertible
{
RfpListRequest();
RfpListRequest.fromJson(Map<String, dynamic> json) : super();
fromMap(Map<String, dynamic> json) {
return this;
}
Map<String, dynamic> toJson() => {};
getTypeName() => "RfpListRequest";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: <String, TypeInfo> {
'RfpDocument': TypeInfo(TypeOf.Class, create:() => RfpDocument()),
'RfpListResponse': TypeInfo(TypeOf.Class, create:() => RfpListResponse()),
'List<RfpDocument>': TypeInfo(TypeOf.Class, create:() => <RfpDocument>[]),
'RfpListRequest': TypeInfo(TypeOf.Class, create:() => RfpListRequest()),
});
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /v1/Rfp HTTP/1.1 Host: api.dev.dynamics.trendsic.com Accept: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<RfpListResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRM.AgencyPlatform.API.Internal">
<Documents>
<RfpDocument>
<ContentLength>0</ContentLength>
<ContentType>String</ContentType>
<CreatedAt>0001-01-01T00:00:00</CreatedAt>
<CreatedBy>String</CreatedBy>
<ErrorMessage>String</ErrorMessage>
<FileName>String</FileName>
<RfpDocumentID>0</RfpDocumentID>
<RfpDocumentUID>00000000-0000-0000-0000-000000000000</RfpDocumentUID>
<S3Key>String</S3Key>
<Status>String</Status>
<UpdatedAt>0001-01-01T00:00:00</UpdatedAt>
</RfpDocument>
</Documents>
<ResponseStatus xmlns:d2p1="http://schemas.servicestack.net/types">
<d2p1:ErrorCode>String</d2p1:ErrorCode>
<d2p1:Message>String</d2p1:Message>
<d2p1:StackTrace>String</d2p1:StackTrace>
<d2p1:Errors>
<d2p1:ResponseError>
<d2p1:ErrorCode>String</d2p1:ErrorCode>
<d2p1:FieldName>String</d2p1:FieldName>
<d2p1:Message>String</d2p1:Message>
<d2p1:Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d5p1:KeyValueOfstringstring>
<d5p1:Key>String</d5p1:Key>
<d5p1:Value>String</d5p1:Value>
</d5p1:KeyValueOfstringstring>
</d2p1:Meta>
</d2p1:ResponseError>
</d2p1:Errors>
<d2p1:Meta xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:KeyValueOfstringstring>
<d3p1:Key>String</d3p1:Key>
<d3p1:Value>String</d3p1:Value>
</d3p1:KeyValueOfstringstring>
</d2p1:Meta>
</ResponseStatus>
</RfpListResponse>