action fire_get_list_of_aspsps { label: "Get list of ASPSPs / Banks" description: "Returns all ASPSPs (Account Servicing Payment Service Provider) / banks. The list can be filtered by currency. You will need to enable the `PERM_BUSINESS_GET_ASPSPS` permission to use this endpoint.\n***This endpoint is only required if you intend to host the “Select ASPSP / bank” page yourself.***\n" provider: fire method: GET path: "/v1/aspsps" encoding: json input: { type: "object" properties: { currency: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { aspsps: { type: "array" items: { type: "object" properties: { alias: { type: "string" description: "The name of the ASPSP / bank." } aspspUuid: { type: "string" description: "The UUID associated with the ASPSP / bank." } country: { type: "object" properties: { code: { type: "string" description: "The 2-letter code for the country - e.g. `IE`, `GP`..." } description: { type: "string" description: "The name of the country" } } } currency: { type: "object" description: "The currency." properties: { code: { type: "string" description: "The three letter code for the currency - either `EUR` or `GBP`." enum: ["EUR", "GBP"] } description: { type: "string" description: "The name of the currency" } } } dateCreated: { type: "string" format: "date-time" description: "The date the ASPSP / bank was created." } lastUpdated: { type: "string" format: "date-time" description: "The date the ASPSP / bank was last updated." } logoUrl: { type: "string" description: "A link to the ASPSP / bank's logo in SVG format." } } } } total: { type: "integer" description: "The total number of ASPSPs in the list." } } } }