ExpenseRepository Requests Summary
Request |
Description |
Deletes an expense record. |
|
Creates an expense record. |
|
Posts an expense record. |
|
Reads and returns an expense record. Specified expense properties are returned with the record. |
|
Searches for expense records that meet a given search criteria. Specified invoice properties are returned with the resulting records. |
|
Read and return recently viewed expense records. |
|
Updates an expense record. Specified invoice properties are updated. |
|
Voids an expense record. |
ExpenseRepository Data Objects Summary
Data Object |
Description |
An enumeration used to track whether a finance record has posted to an account. Typically in an application, you would read or search by this object's value. You would not explicitly set a financial record's posting status. Options include: •NOT_SUBMITTED •POSTED •FAILED |
|
1 Expense record property container returned when you read or search expenses. 2 Expense record property container used to set a new expense's properties. This object is passed as a request parameter when you create (insert) an account. 3 Expense record property container used to update or clear an expense's properties. This object is passed as a request parameter when you update an expense. Note: For more information about the data restrictions for properties that belong to the above-mentioned objects, see the Object Model Reference for the TExpense object. |