GET api/customdata/greystone/GetCurrentSeasonTransactions?recordsSincePostDate={recordsSincePostDate}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
recordsSincePostDate | date |
Required |
Body Parameters
None.
Response Information
Resource Description
WebMethodResultOfListOfTransactionName | Description | Type | Additional 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": "2025-05-05T05:24:38.294623-06:00", "EffectiveDate": "2025-05-05T05:24:38.294623-06:00", "Description": "sample string 5", "SignedAmount": 6.0, "Memo": "sample string 7", "IsDeleted": true, "SavedBy": "sample string 9" }, { "ID": 1, "PersonID": 2, "PostDate": "2025-05-05T05:24:38.294623-06:00", "EffectiveDate": "2025-05-05T05:24:38.294623-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":"2025-05-05T05:24:38.294623-06:00","EffectiveDate":"2025-05-05T05:24:38.294623-06:00","Description":"sample string 5","SignedAmount":6.0,"Memo":"sample string 7","IsDeleted":true,"SavedBy":"sample string 9"},{"ID":1,"PersonID":2,"PostDate":"2025-05-05T05:24:38.294623-06:00","EffectiveDate":"2025-05-05T05:24:38.294623-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>2025-05-05T05:24:38.294623-06:00</PostDate> <EffectiveDate>2025-05-05T05:24:38.294623-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>2025-05-05T05:24:38.294623-06:00</PostDate> <EffectiveDate>2025-05-05T05:24:38.294623-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>