v1
latestOpenAPI 3.1.02026-08-04103211436.0 KBFiles
List file emissions
Returns the banking files submitted to banks (e.g. payment order files) across every company accessible to the authenticated user. Results are paginated: use limit to control page size and pass the returned nextPageToken to fetch the next page. Errors from the file service are reported with their original status code and message, so responses may include statuses other than the ones listed here.
get/files/emissions
Query parameters
limitinteger
Maximum number of file emissions to return. Defaults to 500, up to 2000.
Maximum number of file emissions to return. Defaults to 500, up to 2000.
nextPageTokenstring
Token to fetch the next page of results, returned by a previous call to this endpoint.
Token to fetch the next page of results, returned by a previous call to this endpoint.
Response
Successful Response
Example response
{
"data": [
{
"fileName": "payment-order.xml",
"bank": {
"id": "bank-001",
"fullName": "Banco Santander",
"service": "h2h",
"countryCode": "ES"
},
"user": {
"name": "Maria",
"surname": "Garcia"
},
"provider": "bank",
"format": "sepa34"
}
]
}