Manuale Back Office pagoPA
Manuale BO pagoPA - PT
Manuale BO pagoPA - PT
  • Manuale operativo Back Office pagoPA - Partner Tecnologico
    • Prerequisiti per accesso al portale
    • Accesso
    • Seleziona Ambiente
    • Panoramica
    • Funzionalità
      • Registrazione al nodo dei Pagamenti PagoPa
      • Gestione intermediari
      • Tavolo Operativo
      • Generazione API Key
      • Stazioni
        • Creazione
        • Gestione
        • Modifica
        • Duplicazione
        • Associazione\Eliminazione\Modifica di un EC alla Stazione
        • Esportazione Massiva EC
        • Manutenzione programmata
      • Canale
        • Creazione
        • Modifica
        • Gestione
        • Duplicazione
        • Associazione di un PSP al Canale
      • I "tuoi enti"
      • Matrice Ruoli / Funzionalità
      • External API
        • Sottoscrizione, Autenticazione & Autorizzazione
        • EC by Broker
        • IBANs by Broker
Powered by GitBook
On this page
  1. Manuale operativo Back Office pagoPA - Partner Tecnologico
  2. Funzionalità
  3. External API

EC by Broker

PreviousSottoscrizione, Autenticazione & AutorizzazioneNextIBANs by Broker

Last updated 9 months ago

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#/

getBrokerInstitutions

get

Return the list of Creditor Institutions of a Broker

Authorizations
Path parameters
brokerCodestringRequired

Broker Code to use as filter for the retrieved creditor institution list

Query parameters
limitinteger · int32 · max: 100Optional

Number of elements on one page. Default = 10

Default: 10
pageinteger · int32Required

Page number. Page value starts from 0

Header parameters
X-Request-IdstringOptional

This header identifies the call, if not passed it is self-generated. This ID is returned in the response.

Responses
200
OK
application/json
400
Bad Request
application/json
401
Unauthorized
403
Forbidden
404
Institutions for the brokerCode not found
application/json
429
Too many requests
500
Service unavailable
application/json
get
GET /brokers/{brokerCode}/creditor_institutions HTTP/1.1
Host: localhost:8080
Ocp-Apim-Subscription-Key: YOUR_API_KEY
Accept: */*
{
  "creditorInstitutions": [
    {
      "activationDate": "2025-05-09T07:56:51.750Z",
      "applicationCode": "text",
      "auxDigit": "text",
      "broadcast": true,
      "brokerCompanyName": "text",
      "brokerTaxCode": "text",
      "cbillCode": "text",
      "ciStatus": true,
      "companyName": "text",
      "endpointMU": "text",
      "endpointRT": "text",
      "endpointRedirect": "text",
      "intermediated": true,
      "model": 1,
      "primitiveVersion": 1,
      "pspPayment": true,
      "segregationCode": "text",
      "stationId": "text",
      "stationState": "enabled",
      "taxCode": "text",
      "version": "1"
    }
  ],
  "pageInfo": {
    "limit": 1,
    "page": 1,
    "totalElements": 1,
    "totalPages": 1
  }
}