GET api/debitmemo/getDebitMemoBatchHistory?debitMemoBatchId={debitMemoBatchId}
GET api/debitmemo/getDebitMemoBatchHistory
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
debitMemoBatchId |
|
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of DebitMemoBatchHistoryViewModelName | Description | Type | Additional information |
---|---|---|---|
BatchStatus |
Batch Status |
string |
None. |
UserInfo |
User Information |
string |
None. |
HistoryNote |
History Note |
string |
None. |
CreatedOn |
Created On |
date |
None. |
Response Formats
application/json, text/json
Sample:
[ { "batchStatus": "sample string 1", "userInfo": "sample string 2", "historyNote": "sample string 3", "createdOn": "2025-04-03T18:08:12.1770466-04:00" }, { "batchStatus": "sample string 1", "userInfo": "sample string 2", "historyNote": "sample string 3", "createdOn": "2025-04-03T18:08:12.1770466-04:00" } ]
application/xml, text/xml
Sample:
<ArrayOfDebitMemoBatchHistoryViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels"> <DebitMemoBatchHistoryViewModel> <CreatedOn>2025-04-03T18:08:12.1770466-04:00</CreatedOn> <HistoryNote>sample string 3</HistoryNote> <BatchStatus>sample string 1</BatchStatus> <UserInfo>sample string 2</UserInfo> </DebitMemoBatchHistoryViewModel> <DebitMemoBatchHistoryViewModel> <CreatedOn>2025-04-03T18:08:12.1770466-04:00</CreatedOn> <HistoryNote>sample string 3</HistoryNote> <BatchStatus>sample string 1</BatchStatus> <UserInfo>sample string 2</UserInfo> </DebitMemoBatchHistoryViewModel> </ArrayOfDebitMemoBatchHistoryViewModel>