curl --request POST \
--url https://sandbox.hurdlr.com/rest/v5/accounting/manualJournalEntry \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: */*' \
--data '
{
"manualJournalEntry": {
"description": "<string>",
"date": "2023-11-07T05:31:56Z",
"id": 123,
"entryDate": "2023-11-07T05:31:56Z",
"frequency": "ONE_TIME",
"cashTransactions": [
{
"glAccountId": 123,
"drAmount": 123,
"crAmount": 123
}
],
"accrualTransactions": [
{
"glAccountId": 123,
"drAmount": 123,
"crAmount": 123
}
],
"apiEntryId": "<string>",
"transactions": [
{
"glAccountId": 123,
"drAmount": 123,
"crAmount": 123
}
]
}
}
'