L'API descritta in questa sezione permette di ottenere la lista degli EC e delle loro stazioni afferenti un determinato Partner Tecnologico / Intermediario
Lo swagger è recuperabile al link https://developer.pagopa.it/pago-pa/api/elenco-IBAN-stazioni#/
Last updated 4 months ago
Return the list of Creditor Institutions of a Broker
Broker Code to use as filter for the retrieved creditor institution list
OK
List of creditor institutions
information about the pagination
const response = await fetch('http://localhost:8080/brokers/{brokerCode}/creditor_institutions?page=0', { method: 'GET', headers: {}, }); const data = await response.json();
{ "creditorInstitutions": [ { "activationDate": "2024-12-21T17:04:57.569Z", "applicationCode": "text", "auxDigit": "text", "broadcast": false, "brokerCompanyName": "text", "brokerTaxCode": "text", "cbillCode": "text", "ciStatus": false, "companyName": "text", "endpointMU": "text", "endpointRT": "text", "endpointRedirect": "text", "intermediated": false, "model": 0, "primitiveVersion": 0, "pspPayment": false, "segregationCode": "text", "stationId": "text", "stationState": "enabled", "taxCode": "text", "version": "1" } ], "pageInfo": { "limit": 0, "page": 0, "totalElements": 0, "totalPages": 0 } }