def authorize_with_credentials(username:, password:, institution:, options: {})
payload = options.merge(username: username, password: password, institution: institution)
validate_request!(AuthorizeWithCredentialsRequestSchema, payload)
post("#{customer_id}/BankingServices/Authorize", body: payload)
end