action biapi_get_psd2_registrations { label: "Get details on all psd2 registrations" description: "" provider: biapi method: GET path: "/psd2-registrations" encoding: json input: { type: "object" properties: { expand: { type: "string" } } additionalProperties: false } output: { type: "object" required: ["psd2registrations"] properties: { psd2registrations: { type: "array" items: { type: "object" required: ["id", "status"] properties: { id: { type: "integer" } id_connector_source: { type: "integer" description: "ID of the connector source" } status: { type: "string" description: "Current status: created/updated/error" } } } } total: { type: "number" description: "total number of results" } } } }