Use Cases for Approving a Journal Entry

To approve a journal entry, send a PATCH command in the request body.

          PATCH {{REST_SERVICES}}/record/v1/journalentry/<id>/
{
    "approved": true
} 

        

Resetting Approval Status

If you already approved a journal entry but need to reset the approval status, send a PATCH command with the updated status in the request body.

            PATCH {{REST_SERVICES}}/record/v1/journalentry/<id>/
{
    "approved": false
} 

          

Related Topics

General Notices