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
id stringrequired
Resource identifier
Query Parameters
startDate stringrequired
Equal to endDate or equal to first day of the month
endDate stringrequired
Equal to startDate or equal to last day of the month
Responses
- 200
- 400
- 401
- 403
OK - The request was processed successfully.
- application/xml
- Schema
- Example (from schema)
Schema
Document string
<Document>...</Document>
Bad Request -- Your request is invalid.
- application/json
- Schema
- Example (from schema)
Schema
title string
type string
detail string
{
"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
{
"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
{
"type": "string",
"title": "string",
"detail": "string"
}
Loading...