Delete Attachments Associated with an Expense Report
DELETE /expense-reports/{id}/attachments/{attachment_ids}
— Use this method to delete attachments with the specified attachment IDs associated with the expense report with the specified internal ID, or clear the association between the workspace document with the specified attachment ID and the expense report with the specified internal ID.
Parameters
Path parameters
Path parameter |
Required / Optional |
Description |
Type |
---|---|---|---|
|
Required |
The internal ID of the expense report. |
integer |
|
Required |
A comma-separated list of internal IDs for the attachments. The list must not include more than 1000 attachment IDs. |
integer |
Query string parameter
Path parameter |
Required / Optional |
Description |
Type |
---|---|---|---|
|
Optional |
The internal ID of the filter set to be applied.
|
integer |
Response definitions
A successful or failed request returns a JSON object with the following properties:
Property |
Description |
---|---|
|
If your request includes multiple attachment IDs, both valid and invalid, the request will complete successfully for valid attachment IDs and return an error message for invalid attachment IDs — for example, If your request more than 1,000 attachment IDs, an error is returned — for example, |
Sample request
DELETE /rest/v1/expense-reports/237/attachments/4982,4983 HTTP/1.1
Host: company-id.app.netsuitesuiteprojectspro.com
Authorization: Bearer <OAuth2_access_token>
In the example, <OAuth2_access_token>
is the OAuth 2.0 access token obtained for the client application connecting to SuiteProjects Pro. See Authentication.
Sample response
{
"data": [
{
"4982" : {
"data": [{
"id": "4982"
}],
"message": "success"
},
"4983" : {
"data": [{
"id": "4983"
}],
"message": "success"
}
}
],
"message": "success"
}