The following error occurs when I try to create an expense receipt using the REST API. Could anyone help with this?
Error: error: "Inserting 'Expense Receipt' record raised at least one error. Please review the errors.; TranDesc: 'Description' cannot be empty.".
Body:
{
"Date" : {"value" : "04/17/2025"},
"ExpenseItemID" : {"value" : "MEAL"},
"Details": [
{
"Description" : {"value" : "Team outing"},
"Quantity" : {"value" : "2"},
"UOM" : {"value" : "PIECE"},
"Amount" : {"value" : "175"},
"Currency" : {"value" : "USD"}
}
]
}