GET
api/v1/get-deliveryBoys-document-by-id?DBCode={DBCode}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| DBCode | string |
Required |
Response Information
Description:
Return type: Collection of DeliveryBoyDocument
Response Formats
application/json, text/json
[
{
"Id": 1,
"DBCode": "sample string 2",
"FileName": "sample string 3",
"ContentType": "sample string 4",
"DocumentData": "QEA=",
"Size": 5,
"Path": "sample string 6",
"isActive": true,
"IsLogicalDeleted": true,
"flag": 9
},
{
"Id": 1,
"DBCode": "sample string 2",
"FileName": "sample string 3",
"ContentType": "sample string 4",
"DocumentData": "QEA=",
"Size": 5,
"Path": "sample string 6",
"isActive": true,
"IsLogicalDeleted": true,
"flag": 9
}
]
text/html
[{"Id":1,"DBCode":"sample string 2","FileName":"sample string 3","ContentType":"sample string 4","DocumentData":"QEA=","Size":5,"Path":"sample string 6","isActive":true,"IsLogicalDeleted":true,"flag":9},{"Id":1,"DBCode":"sample string 2","FileName":"sample string 3","ContentType":"sample string 4","DocumentData":"QEA=","Size":5,"Path":"sample string 6","isActive":true,"IsLogicalDeleted":true,"flag":9}]
application/xml, text/xml
<ArrayOfDeliveryBoyDocument xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.DeliveryBoys">
<DeliveryBoyDocument>
<ContentType>sample string 4</ContentType>
<DBCode>sample string 2</DBCode>
<DocumentData>QEA=</DocumentData>
<FileName>sample string 3</FileName>
<Id>1</Id>
<IsLogicalDeleted>true</IsLogicalDeleted>
<Path>sample string 6</Path>
<Size>5</Size>
<flag>9</flag>
<isActive>true</isActive>
</DeliveryBoyDocument>
<DeliveryBoyDocument>
<ContentType>sample string 4</ContentType>
<DBCode>sample string 2</DBCode>
<DocumentData>QEA=</DocumentData>
<FileName>sample string 3</FileName>
<Id>1</Id>
<IsLogicalDeleted>true</IsLogicalDeleted>
<Path>sample string 6</Path>
<Size>5</Size>
<flag>9</flag>
<isActive>true</isActive>
</DeliveryBoyDocument>
</ArrayOfDeliveryBoyDocument>
