Receipts
Receipts are expense items that contain information about costs incurred by employees and collected in expense reports.
Available methods
-
POST
/receipts/
— Insert a Receipt -
GET
/receipts/
— Get the List of Receipts -
GET
/receipts/{id}
— Get a Receipt -
PUT
/receipts/{id}
— Update a Receipt -
DELETE
/receipts/{id}
— Delete a Receipt -
POST
/receipts/{id}/attachments
— Add an Attachment to a Receipt -
GET
/receipts/{id}/attachments
— Get the List of Attachments Associated with a Receipt -
GET
/receipts/{id}/attachments/{attachment_id}
— Get an Attachment Associated with a Receipt -
GET
/receipts/{id}/attachments/{attachment_id}/download
— Get an Attachment File Associated with a Receipt -
GET
/receipts/{id}/attachments/{attachment_id}/thumbnail
— Get the Thumbnail for an Attachment Associated with a Receipt -
PUT
/receipts/{id}/attachments/{attachment_id}
— Replace an Attachment to a Receipt -
DELETE
/receipts/{id}/attachments/{attachment_id}
— Delete an Attachment Associated with a Receipt -
DELETE
/receipts/{id}/attachments/{attachment_ids}
— Delete Attachments Associated with a Receipt -
OPTIONS
/receipts/
— Discover Available Methods and Fetch the Endpoint Reference for Receipts
Receipt object properties
A receipt is an expense items that contains information about cost incurred by an employee and collected in an expense report.
The Receipt
object has the following properties:
Property |
Description |
Type |
Read-only |
Query allowed |
Sorting allowed |
---|---|---|---|---|---|
|
The accounting period date of the receipt. |
string($date) |
— |
Yes |
Yes |
|
The attachments associated with the receipt. Array of internal IDs for attachment objects. |
Array of |
Yes |
— |
— |
|
The internal ID of the cost center associated with the receipt. |
integer |
Yes |
Yes |
Yes |
|
The cost per unit of measure. |
number |
— |
Yes |
— |
|
The date the receipt was created. |
string |
Yes |
Yes |
— |
|
The currency for monetary values in the receipt record. Three-letter currency code. |
string |
— |
Yes |
— |
|
The internal ID of the customer associated with the receipt. |
integer |
— |
Yes |
Yes |
|
[REQUIRED] The date of the receipt. |
string ($date) |
— |
Yes |
Yes |
|
The description of the receipt. |
string |
— |
Yes |
— |
|
[REQUIRED] The internal ID of the expense report associated with the receipt. |
integer |
— |
Yes |
Yes |
|
The unique external ID of the receipt, if the record was imported from an external system. |
string |
— |
Yes |
Yes |
|
The total federal tax for the receipt. |
number |
— |
— |
— |
|
The federal tax rate for the receipt. |
number |
— |
— |
— |
|
The cost per unit of measure in the selected foreign currency, if this is a foreign currency receipt. |
number |
— |
Yes |
— |
|
The foreign currency conversion rate, if this is a foreign currency receipt. |
number |
Yes |
Yes |
— |
|
The foreign currency, if this is a foreign currency receipt. Three-letter currency code. |
string |
— |
Yes |
— |
|
The tax paid in the foreign currency, if this is a foreign currency receipt. |
number |
— |
Yes |
— |
|
The total GST tax for the receipt. |
number |
— |
— |
— |
|
The GST tax rate for the receipt. |
number |
— |
— |
— |
|
The total HST tax for the receipt. |
number |
— |
— |
— |
|
The HST tax rate for the receipt. |
number |
— |
— |
— |
|
The unique internal identifier of the receipt. |
integer |
Yes |
Yes |
Yes |
|
A 1/0 field indicating if the record is within the specified foreign currency tolerance. |
Boolean |
— |
Yes |
— |
|
A 1/0 field indicating if the paper receipt is missing for this receipt. |
Boolean |
— |
Yes |
— |
|
A 1/0 field indicating if the receipt is not billable. |
Boolean |
— |
Yes |
— |
|
A 1/0 field indicating if the receipt is reimbursable. |
Boolean |
— |
Yes |
— |
|
A 1/0 field indicating if the cost includes the tax. |
Boolean |
— |
Yes |
— |
|
The internal ID of the item associated with the receipt. The type of item can be used to determine the receipt subtype. |
integer |
— |
Yes |
Yes |
|
Notes about the receipt. |
string |
— |
Yes |
— |
|
The internal ID of the payment type associated with the receipt. The payment type indicates how the payment was made and may determine if the receipt is reimbursable. |
integer |
— |
Yes |
Yes |
|
The internal ID of the project associated with the receipt. |
integer |
— |
Yes |
Yes |
|
The internal ID of the project task associated with the receipt. Requires an option to be enabled in SuiteProjects Pro (Administration > Application Settings > Expenses > Other settings). |
integer |
— |
Yes |
Yes |
|
The total PST tax for the receipt. |
number |
— |
— |
— |
|
The PST tax rate for the receipt. |
number |
— |
— |
— |
|
[REQUIRED] The quantity (number of units of measure). |
integer |
— |
Yes |
— |
|
The city or location where the cost was incurred. |
string |
— |
Yes |
— |
|
The internal ID of the slip associated with the receipt, if the expense was billed. |
integer |
Yes |
Yes |
Yes |
|
The total state tax for the receipt. |
number |
— |
— |
— |
|
The state tax rate for the receipt. |
number |
— |
— |
— |
|
The internal ID of the tax location associated with the receipt. |
integer |
— |
— |
— |
|
The total value of the receipt. |
number |
— |
Yes |
— |
|
The total value of the receipt excluding tax. |
number |
— |
— |
— |
|
The total tax paid. |
number |
— |
Yes |
— |
|
[REQUIRED] The unique reference number of the receipt within the associated expense report. This attribute is used to cross-reference digital receipts with paper receipts. |
string |
— |
Yes |
Yes |
|
The date the receipt was last updated or modified. |
string ($date-time) |
Yes |
Yes |
— |
|
[REQUIRED] The internal ID of the employee associated with the receipt. |
integer |
Yes |
Yes |
Yes |
|
The internal ID of the employee location associated with the receipt. |
integer |
— |
Yes |
Yes |
|
The internal ID of the vehicle associated with the receipt. |
integer |
— |
Yes |
Yes |
|
The internal ID of the vendor associated with the receipt. |
integer |
— |
Yes |
Yes |
Access to certain object types and object attributes depend on the business logic configured for your SuiteProjects Pro account. It may vary depending on the role and access privileges associated with the access token and with the user who authorized the application.
Required and read-only attributes also depend on the business logic configured for each specific SuiteProjects Pro account. Some fields such as id
, created
, and updated
are system-generated and always read-only.