IBANs by Broker

L'API descritta in questa sezione permette di ottenere la lista degli IBAN degli EC afferenti un determinato Partner Tecnologico / Intermediario

Lo swagger è recuperabile al link https://developer.pagopa.it/pago-pa/api/elenco-IBAN-stazioni#/

getBrokerIbans

Return the list of Ibans of all the Creditor Institutions intermediated by the Broker

GEThttp://localhost:8080/brokers/{brokerCode}/ibans
Authorization
Path parameters
brokerCode*string

Broker Code to use as filter for the retrieved ibans list

Query parameters
Header parameters
Response

OK

Headers
Body
ibans*array of CIIbansResource (object)

list of IBANs

pageInfo*PageInfo (object)

information about the pagination

Request
const response = await fetch('http://localhost:8080/brokers/{brokerCode}/ibans', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "ibans": [
    {
      "ciFiscalCode": "text",
      "ciName": "text",
      "description": "text",
      "iban": "text",
      "label": "CUP",
      "status": "ENABLED",
      "validityDate": "2024-09-08T04:49:57.632Z"
    }
  ],
  "pageInfo": {}
}

Last updated