Use Case for Creating an Expense Report from an Employee Record

To create an expense report from an employee record, include the values of required fields such as expense account, curency, and amount in the request body.

          PATCH {{REST_SERVICES}}/record/v1/employee/<id>/!transform/ExpenseReport
{
    "expense": {
        "items": [
            {
                "expenseaccount": "58",
                "currency": "1",
                "amount": 100
            }
        ]
    }
} 

        

Related Topics

General Notices