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

General Notices