POST api/ARPostTransaction?VendorID={VendorID}&VendorPassword={VendorPassword}&APIGUID={APIGUID}
Post AR transactions Process transactions to accounts
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| VendorID | string |
Required |
|
| VendorPassword | string |
Required |
|
| APIGUID | string |
Required |
Body Parameters
PostTransaction| Name | Description | Type | Additional information |
|---|---|---|---|
| ARPostEntry | Collection of PostEntry |
None. |
Request Formats
application/json, text/json
Sample:
{
"ARPostEntry": [
{
"ResidentKey": 1,
"ResidentContactKey": 2,
"PostingCode": "sample string 3",
"TransactionDate": "2025-10-27T12:15:07.333741-07:00",
"Amount": 5.0,
"CheckNumber": "sample string 6",
"Note": "sample string 7",
"BankTransactionID": "sample string 8",
"SetPosted": true
},
{
"ResidentKey": 1,
"ResidentContactKey": 2,
"PostingCode": "sample string 3",
"TransactionDate": "2025-10-27T12:15:07.333741-07:00",
"Amount": 5.0,
"CheckNumber": "sample string 6",
"Note": "sample string 7",
"BankTransactionID": "sample string 8",
"SetPosted": true
}
]
}
application/xml, text/xml
Sample:
<PostTransaction xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VMSRXChange.DataClassesAccountsReceivable">
<ARPostEntry>
<PostEntry>
<Amount>5</Amount>
<BankTransactionID>sample string 8</BankTransactionID>
<CheckNumber>sample string 6</CheckNumber>
<Note>sample string 7</Note>
<PostingCode>sample string 3</PostingCode>
<ResidentContactKey>2</ResidentContactKey>
<ResidentKey>1</ResidentKey>
<SetPosted>true</SetPosted>
<TransactionDate>2025-10-27T12:15:07.333741-07:00</TransactionDate>
</PostEntry>
<PostEntry>
<Amount>5</Amount>
<BankTransactionID>sample string 8</BankTransactionID>
<CheckNumber>sample string 6</CheckNumber>
<Note>sample string 7</Note>
<PostingCode>sample string 3</PostingCode>
<ResidentContactKey>2</ResidentContactKey>
<ResidentKey>1</ResidentKey>
<SetPosted>true</SetPosted>
<TransactionDate>2025-10-27T12:15:07.333741-07:00</TransactionDate>
</PostEntry>
</ARPostEntry>
</PostTransaction>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |