Delete an expense document from a transaction
DELETE/api/transactions/:transactionId/documents/:documentId
This endpoint deletes an expense document from an existing transaction.
Prerequisites:
To use this endpoint you need to have the ACCOUNTING scope for the API Key. Please contact your relation manager to get this permission.
Restrictions:
Only expense documents belonging to the given transaction can be deleted, and completed expenses do not allow document deletion.
Request
Path Parameters
Transaction identifier
Document identifier
Responses
- 204
- 400
- 401
- 403
- 404
OK - The request was processed successfully but no content to return.
- application/json
- Schema
- Example (from schema)
Schema
{}
Bad Request -- Your request is invalid.
- application/json
- Schema
- Example (from schema)
Schema
{
"detail": "Document not deletable for completed expense.",
"title": "An error occurred"
}
Unauthorised -- Your access token is wrong.
- application/json
- Schema
- Example (from schema)
Schema
{
"type": "string",
"title": "string",
"detail": "string"
}
Forbidden -- Access to the requested resource or action is forbidden.
- application/json
- Schema
- Example (from schema)
Schema
A short, human-readable summary of the problem.
A human-readable explanation specific to this occurrence of the problem.
Default value: 400
A URI reference that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced.
A URI reference that identifies the problem type
{
"title": "string",
"detail": "string",
"status": 400,
"instance": "string",
"type": "string"
}
Not Found -- The requested resource could not be found.
- application/json
- Schema
- Example (from schema)
Schema
A short, human-readable summary of the problem.
A human-readable explanation specific to this occurrence of the problem.
Default value: 400
A URI reference that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced.
A URI reference that identifies the problem type
{
"title": "string",
"detail": "string",
"status": 400,
"instance": "string",
"type": "string"
}