GET
api/v1/get-vendor-document-by-id?bpcode={bpcode}&clientId={clientId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
bpcode | string |
Required |
|
clientId | integer |
Required |
Response Information
Description:
Return type: Collection of VendorDocument
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", "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", "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","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","isActive":true,"IsLogicalDeleted":true}]
application/xml, text/xml
<ArrayOfVendorDocument xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Vendor"> <VendorDocument> <BPCode>sample string 2</BPCode> <ContentType>sample string 4</ContentType> <DocumentData>QEA=</DocumentData> <FileName>sample string 3</FileName> <Id>1</Id> <IsLogicalDeleted>true</IsLogicalDeleted> <Path>sample string 6</Path> <Size>5</Size> <isActive>true</isActive> </VendorDocument> <VendorDocument> <BPCode>sample string 2</BPCode> <ContentType>sample string 4</ContentType> <DocumentData>QEA=</DocumentData> <FileName>sample string 3</FileName> <Id>1</Id> <IsLogicalDeleted>true</IsLogicalDeleted> <Path>sample string 6</Path> <Size>5</Size> <isActive>true</isActive> </VendorDocument> </ArrayOfVendorDocument>