GET KwiktagImage/GetApBillImages?vendorId={vendorId}&invoiceNumber={invoiceNumber}&invoiceDate={invoiceDate}&barcode={barcode}

Returns a list of Kwiktag Image XMLs.

Request Information

URI Parameters

NameDescriptionTypeAdditional Information
vendorId

The vendor on the AP Bill

string

Required

invoiceNumber

The invoice number of the AP Bill

string

Required

invoiceDate

The document date of the AP Bill

string

Required

barcode

A Kwiktag Barcode for an AP Bill (Optional)

string

Body Parameters

Response Information

Resource Description

Returns a list of Kwiktag Image XMLs.

AgvKwiktagImage
NameDescriptionTypeAdditional Information
Status

Status of the API call.

string
Message

Message of the API call.

string
Count

Count of how many Kwiktag Images.

string
KwiktagImageXMLs

JSON dictionary of Units of Measure.

Collection of string

Response Formats

application/json, text/json

Sample:
{
  "Status": "sample string 1",
  "Message": "sample string 2",
  "Count": "2",
  "KwiktagImageXMLs": [
    "sample string 1",
    "sample string 2"
  ]
}

application/xml, text/xml

Sample:
<AgvKwiktagImage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgvWebAPICSharp.Models.Kwiktag">
  <KwiktagImageXMLs xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </KwiktagImageXMLs>
  <Message>sample string 2</Message>
  <Status>sample string 1</Status>
</AgvKwiktagImage>