Export Camt53 file for account movements
GET/api/accounts/:id/camt53-export
This API endpoint has been purposefully crafted to gather account movements into a Camt53 file. The endpoint must be filtered by day (with the startDate equal to the endDate) or by month (with the startDate equal to the first day of the month and the endDate equal to the last day of the month).
Request
Path Parameters
Resource identifier
Query Parameters
Equal to endDate or equal to first day of the month
Equal to startDate or equal to last day of the month
Responses
- 200
- 400
- 401
- 403
- 404
OK - The request was processed successfully.
- application/xml
- Schema
- Example (from schema)
Schema
<Document>...</Document>
Bad Request -- Your request is invalid.
- application/json
- Schema
- Example (from schema)
Schema
{
"title": "string",
"type": "string",
"detail": "string"
}
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
{
"type": "string",
"title": "string",
"detail": "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"
}