Use Case for Creating a Journal Entry

To create a journal entry, include the values of required fields such as subsidiary, account, and debit and credit amounts in the request body. Make sure the debits and credits in the journal entry balance.

          POST {{REST_SERVICES}}/record/v1/journalentry/
{
    "subsidiary": {
        "id": "1"
    },
    "line": {
        "items": [
            {
                "account": {
                    "id": "10"
                },
                "debit": 300
            },
            {
                "account": {
                    "id": "14"
                },
                "credit": 300
            }
        ]
    }
} 

        

Related Topics

Journal Entry Use Cases
Use Cases for Approving a Journal Entry
Use Case for Creating a Reverse Journal Entry
Use Case for Updating Line Items in a Journal Entry
Use Case for Retrieving Journal Entries Created After a Date

General Notices