GET api/checks/avidxchange
Get the list of checks pending export to Avid.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
CheckForAvidViewModel
CheckForAvidViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| CheckID |
|
integer |
None. |
| CheckNumber |
|
integer |
None. |
| EntityNumber |
|
string |
None. |
| VendorName |
|
string |
None. |
| InvoiceType |
|
integer |
None. |
| CheckDate |
|
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"checkID": 1,
"checkNumber": 2,
"entityNumber": "sample string 3",
"vendorName": "sample string 4",
"invoiceType": 5,
"checkDate": "sample string 6"
}
application/xml, text/xml
Sample:
<CheckForAvidViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels.Checks"> <CheckDate>sample string 6</CheckDate> <CheckID>1</CheckID> <CheckNumber>2</CheckNumber> <EntityNumber>sample string 3</EntityNumber> <InvoiceType>5</InvoiceType> <VendorName>sample string 4</VendorName> </CheckForAvidViewModel>