GET api/customdata/greystone/GetCurrentSeasonTransactions?recordsSincePostDate={recordsSincePostDate}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
recordsSincePostDate

date

Required

Body Parameters

None.

Response Information

Resource Description

WebMethodResultOfListOfTransaction
NameDescriptionTypeAdditional information
Result

Collection of Transaction

None.

Success

boolean

None.

ErrorText

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Result": [
    {
      "ID": 1,
      "PersonID": 2,
      "PostDate": "2024-05-07T19:37:41.2507477-06:00",
      "EffectiveDate": "2024-05-07T19:37:41.2507477-06:00",
      "Description": "sample string 5",
      "SignedAmount": 6.0,
      "Memo": "sample string 7",
      "IsDeleted": true,
      "SavedBy": "sample string 9"
    },
    {
      "ID": 1,
      "PersonID": 2,
      "PostDate": "2024-05-07T19:37:41.2507477-06:00",
      "EffectiveDate": "2024-05-07T19:37:41.2507477-06:00",
      "Description": "sample string 5",
      "SignedAmount": 6.0,
      "Memo": "sample string 7",
      "IsDeleted": true,
      "SavedBy": "sample string 9"
    }
  ],
  "Success": true,
  "ErrorText": "sample string 2"
}

application/javascript

Sample:
{"Result":[{"ID":1,"PersonID":2,"PostDate":"2024-05-07T19:37:41.2507477-06:00","EffectiveDate":"2024-05-07T19:37:41.2507477-06:00","Description":"sample string 5","SignedAmount":6.0,"Memo":"sample string 7","IsDeleted":true,"SavedBy":"sample string 9"},{"ID":1,"PersonID":2,"PostDate":"2024-05-07T19:37:41.2507477-06:00","EffectiveDate":"2024-05-07T19:37:41.2507477-06:00","Description":"sample string 5","SignedAmount":6.0,"Memo":"sample string 7","IsDeleted":true,"SavedBy":"sample string 9"}],"Success":true,"ErrorText":"sample string 2"}

application/xml, text/xml

Sample:
<WebMethodResultOfListOfTransaction xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Success>true</Success>
  <ErrorText>sample string 2</ErrorText>
  <Result>
    <Transaction>
      <ID>1</ID>
      <PersonID>2</PersonID>
      <PostDate>2024-05-07T19:37:41.2507477-06:00</PostDate>
      <EffectiveDate>2024-05-07T19:37:41.2507477-06:00</EffectiveDate>
      <Description>sample string 5</Description>
      <SignedAmount>6</SignedAmount>
      <Memo>sample string 7</Memo>
      <IsDeleted>true</IsDeleted>
      <SavedBy>sample string 9</SavedBy>
    </Transaction>
    <Transaction>
      <ID>1</ID>
      <PersonID>2</PersonID>
      <PostDate>2024-05-07T19:37:41.2507477-06:00</PostDate>
      <EffectiveDate>2024-05-07T19:37:41.2507477-06:00</EffectiveDate>
      <Description>sample string 5</Description>
      <SignedAmount>6</SignedAmount>
      <Memo>sample string 7</Memo>
      <IsDeleted>true</IsDeleted>
      <SavedBy>sample string 9</SavedBy>
    </Transaction>
  </Result>
</WebMethodResultOfListOfTransaction>