POST api/ARPostTransaction?VendorID={VendorID}&VendorPassword={VendorPassword}&APIGUID={APIGUID}

Post AR transactions Process transactions to accounts

Request Information

URI Parameters

NameDescriptionTypeAdditional information
VendorID

string

Required

VendorPassword

string

Required

APIGUID

string

Required

Body Parameters

PostTransaction
NameDescriptionTypeAdditional information
ARPostEntry

Collection of PostEntry

None.

Request Formats

application/json, text/json

Sample:
{
  "ARPostEntry": [
    {
      "ResidentKey": 1,
      "ResidentContactKey": 2,
      "PostingCode": "sample string 3",
      "TransactionDate": "2024-09-19T12:25:06.7480763-05: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": "2024-09-19T12:25:06.7480763-05: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>2024-09-19T12:25:06.7480763-05: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>2024-09-19T12:25:06.7480763-05:00</TransactionDate>
    </PostEntry>
  </ARPostEntry>
</PostTransaction>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.