POST api/journalentries/inquiry/export
exports to csv
Request Information
URI Parameters
None.
Body Parameters
JournalEntryInquiryRequestViewModelName | Description | Type | Additional information |
---|---|---|---|
UserID |
|
integer |
None. |
JournalEntryIdFrom |
|
integer |
None. |
JournalEntryIdTo |
|
integer |
None. |
SourceIdFrom |
|
integer |
None. |
SourceIdTo |
|
integer |
None. |
JournalEntryCreatorUserId |
|
integer |
None. |
CreditAmountFrom |
|
decimal number |
None. |
CreditAmountTo |
|
decimal number |
None. |
DebitAmountFrom |
|
decimal number |
None. |
DebitAmountTo |
|
decimal number |
None. |
GlDateFrom |
|
date |
None. |
GlDateTo |
|
date |
None. |
CreatedDateFrom |
|
date |
None. |
CreatedDateTo |
|
date |
None. |
EntityIds |
|
Collection of integer |
None. |
ManagementCompanyIds |
|
Collection of integer |
None. |
JournalEntryTypeIds |
|
Collection of integer |
None. |
SubLedgerIds |
|
Collection of integer |
None. |
JournalEntryStatusIds |
|
Collection of integer |
None. |
FundIds |
|
Collection of integer |
None. |
PageSize |
|
integer |
None. |
PageNumber |
|
integer |
None. |
SortInformation |
|
SortInformationViewModel |
Required |
Request Formats
application/json, text/json
{ "userID": 1, "journalEntryIdFrom": 1, "journalEntryIdTo": 1, "sourceIdFrom": 1, "sourceIdTo": 1, "journalEntryCreatorUserId": 1, "creditAmountFrom": 1.0, "creditAmountTo": 1.0, "debitAmountFrom": 1.0, "debitAmountTo": 1.0, "glDateFrom": "2025-04-03T17:56:25.4426224-04:00", "glDateTo": "2025-04-03T17:56:25.4426224-04:00", "createdDateFrom": "2025-04-03T17:56:25.4426224-04:00", "createdDateTo": "2025-04-03T17:56:25.4426224-04:00", "entityIds": [ 1, 2 ], "managementCompanyIds": [ 1, 2 ], "journalEntryTypeIds": [ 1, 2 ], "subLedgerIds": [ 1, 2 ], "journalEntryStatusIds": [ 1, 2 ], "fundIds": [ 1, 2 ], "pageSize": 2, "pageNumber": 3, "sortInformation": { "sortBy": "sample string 1", "isSortAscending": true } }
application/xml, text/xml
<JournalEntryInquiryRequestViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels.JournalEntry"> <PageNumber xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels">3</PageNumber> <PageSize xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels">2</PageSize> <SortInformation xmlns:d2p1="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels.SortInformation" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels"> <d2p1:IsSortAscending>true</d2p1:IsSortAscending> <d2p1:SortBy>sample string 1</d2p1:SortBy> </SortInformation> <CreatedDateFrom>2025-04-03T17:56:25.4426224-04:00</CreatedDateFrom> <CreatedDateTo>2025-04-03T17:56:25.4426224-04:00</CreatedDateTo> <CreditAmountFrom>1</CreditAmountFrom> <CreditAmountTo>1</CreditAmountTo> <DebitAmountFrom>1</DebitAmountFrom> <DebitAmountTo>1</DebitAmountTo> <EntityIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:int>1</d2p1:int> <d2p1:int>2</d2p1:int> </EntityIds> <FundIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:int>1</d2p1:int> <d2p1:int>2</d2p1:int> </FundIds> <GlDateFrom>2025-04-03T17:56:25.4426224-04:00</GlDateFrom> <GlDateTo>2025-04-03T17:56:25.4426224-04:00</GlDateTo> <JournalEntryCreatorUserId>1</JournalEntryCreatorUserId> <JournalEntryIdFrom>1</JournalEntryIdFrom> <JournalEntryIdTo>1</JournalEntryIdTo> <JournalEntryStatusIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:int>1</d2p1:int> <d2p1:int>2</d2p1:int> </JournalEntryStatusIds> <JournalEntryTypeIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:int>1</d2p1:int> <d2p1:int>2</d2p1:int> </JournalEntryTypeIds> <ManagementCompanyIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:int>1</d2p1:int> <d2p1:int>2</d2p1:int> </ManagementCompanyIds> <SourceIdFrom>1</SourceIdFrom> <SourceIdTo>1</SourceIdTo> <SubLedgerIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:int>1</d2p1:int> <d2p1:int>2</d2p1:int> </SubLedgerIds> <UserID>1</UserID> </JournalEntryInquiryRequestViewModel>
application/x-www-form-urlencoded
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample not available.