action nbg_get_accounts_account_id_statements_statement_id_file { label: "Get Statements" description: "Get Statement PDF File by Account ID and Statement ID" provider: nbg method: GET path: "/accounts/{accountId}/statements/{statementId}/file" encoding: json input: { type: "object" properties: { accountId: { type: "string" description: "AccountId" } "sandbox-id": { type: "string" } statementId: { type: "string" description: "StatementId" } "x-customer-user-agent": { type: "string" } "x-fapi-auth-date": { type: "string" } "x-fapi-customer-ip-address": { type: "string" } "x-fapi-interaction-id": { type: "string" } } required: ["accountId", "sandbox-id", "statementId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }