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