- API version: 2.0
The Wallee C# SDK is used to interact with Wallee's REST API.
Building the API client library requires:
- .NET 8.0 or later
Install-Package Wallee -Version 1.0.0dotnet add package Wallee --version 1.0.0paket add Wallee --version 1.0.0<PackageReference Include="Wallee" Version="1.0.0" />
Please follow the installation instructions and execute the following C# code:
using System;
using System.Collections.Generic;
using Wallee.Client;
using Wallee.Model;
using Wallee.Service;
public class Program
{
public static void Main()
{
long applicationUserId = 512;
string authenticationKey = "FKrO76r5VwJtBrqZawBspljbBNOxp5veKQQkOnZxucQ=";
var config = new Configuration(applicationUserId, authenticationKey);
var transactionsApi = new TransactionsService(config);
try
{
long transactionId = 367155626;
long spaceId = 405;
var expandList = new List<string> { "group" };
var transaction = transactionsApi.GetPaymentTransactionsId(transactionId, spaceId, expandList);
Console.WriteLine("Transaction: " + transaction);
}
catch (ApiException e)
{
Console.Error.WriteLine("Exception when calling api: ");
Console.Error.WriteLine("Status code: " + e.ErrorCode);
Console.Error.WriteLine("Reason: " + e.Message);
Console.Error.WriteLine("Stack Trace: " + e.StackTrace);
}
}
}Additional API services documentation: link
Web API client: link
Click here to see full list of services
All URIs are relative to https://app-wallee.com/
API Services:
- AccountsService
  *DeleteAccountsId    DELETE /accounts/{id}     Delete an account - AccountsService
  *GetAccounts    GET /accounts     List all accounts - AccountsService
  *GetAccountsId    GET /accounts/{id}     Retrieve an account - AccountsService
  *GetAccountsSearch    GET /accounts/search     Search accounts - AccountsService
  *PatchAccountsId    PATCH /accounts/{id}     Update an account - AccountsService
  *PostAccounts    POST /accounts     Create an account - AccountsService
  *PostAccountsIdActivate    POST /accounts/{id}/activate     Activate an account - AccountsService
  *PostAccountsIdDeactivate    POST /accounts/{id}/deactivate     Deactivate an account - AnalyticsQueriesService
  *DeleteAnalyticsQueriesQueryExternalIdQueryExternalId    DELETE /analytics/queries/queryExternalId/{queryExternalId}     Cancel a query execution, identifying it by its external id. - AnalyticsQueriesService
  *DeleteAnalyticsQueriesQueryTokenQueryToken    DELETE /analytics/queries/queryToken/{queryToken}     Cancel a query execution, identifying it by its query token. - AnalyticsQueriesService
  *GetAnalyticsQueries    GET /analytics/queries     Get portion of query executions for account - AnalyticsQueriesService
  *GetAnalyticsQueriesQueryExternalIdQueryExternalId    GET /analytics/queries/queryExternalId/{queryExternalId}     Retrieve a query execution information by its external id - AnalyticsQueriesService
  *GetAnalyticsQueriesQueryExternalIdQueryExternalIdResult    GET /analytics/queries/queryExternalId/{queryExternalId}/result     Generate a temporary URL to download the query result. It retrieves the query by its external id - AnalyticsQueriesService
  *GetAnalyticsQueriesQueryTokenQueryToken    GET /analytics/queries/queryToken/{queryToken}     Retrieve a query execution information by its query token - AnalyticsQueriesService
  *GetAnalyticsQueriesQueryTokenQueryTokenResult    GET /analytics/queries/queryToken/{queryToken}/result     Generate a temporary URL to download the query result. It retrieves the query by its query token - AnalyticsQueriesService
  *PostAnalyticsQueriesSubmit    POST /analytics/queries/submit     Submit a query execution - ApplicationUsersService
  *DeleteApplicationUsersId    DELETE /application-users/{id}     Delete an application user - ApplicationUsersService
  *DeleteApplicationUsersUserIdKeysId    DELETE /application-users/{userId}/keys/{id}     Deactivate an authentication key - ApplicationUsersService
  *GetApplicationUsers    GET /application-users     List all application users - ApplicationUsersService
  *GetApplicationUsersId    GET /application-users/{id}     Retrieve an application user - ApplicationUsersService
  *GetApplicationUsersSearch    GET /application-users/search     Search application users - ApplicationUsersService
  *GetApplicationUsersUserIdKeys    GET /application-users/{userId}/keys     List a user's authentication keys - ApplicationUsersService
  *PatchApplicationUsersId    PATCH /application-users/{id}     Update an application user - ApplicationUsersService
  *PostApplicationUsers    POST /application-users     Create an application user - ApplicationUsersService
  *PostApplicationUsersUserIdKeys    POST /application-users/{userId}/keys     Generate a new authentication key - ApplicationUsersRolesService
  *DeleteApplicationUsersUserIdAccountRoles    DELETE /application-users/{userId}/account-roles     Unassign a role from an application user for an account - ApplicationUsersRolesService
  *DeleteApplicationUsersUserIdSpaceRoles    DELETE /application-users/{userId}/space-roles     Unassign a role from an application user for a space - ApplicationUsersRolesService
  *GetApplicationUsersUserIdAccountRoles    GET /application-users/{userId}/account-roles     List all roles of an application user for an account - ApplicationUsersRolesService
  *GetApplicationUsersUserIdSpaceRoles    GET /application-users/{userId}/space-roles     List all roles of an application user for a space - ApplicationUsersRolesService
  *PostApplicationUsersUserIdAccountRoles    POST /application-users/{userId}/account-roles     Assign a role to an application user for an account - ApplicationUsersRolesService
  *PostApplicationUsersUserIdSpaceRoles    POST /application-users/{userId}/space-roles     Assign a role to an application user for a space - BankAccountsService
  *GetPaymentBankAccounts    GET /payment/bank-accounts     List all bank accounts - BankAccountsService
  *GetPaymentBankAccountsId    GET /payment/bank-accounts/{id}     Retrieve a bank account - BankAccountsService
  *GetPaymentBankAccountsSearch    GET /payment/bank-accounts/search     Search bank accounts - BankTransactionsService
  *GetPaymentBankTransactions    GET /payment/bank-transactions     List all bank transactions - BankTransactionsService
  *GetPaymentBankTransactionsId    GET /payment/bank-transactions/{id}     Retrieve a bank transaction - BankTransactionsService
  *GetPaymentBankTransactionsSearch    GET /payment/bank-transactions/search     Search bank transactions - ChargeAttemptsService
  *GetPaymentChargeAttempts    GET /payment/charge-attempts     List all charge attempts - ChargeAttemptsService
  *GetPaymentChargeAttemptsId    GET /payment/charge-attempts/{id}     Retrieve a charge attempt - ChargeAttemptsService
  *GetPaymentChargeAttemptsSearch    GET /payment/charge-attempts/search     Search charge attempts - ChargeBankTransactionsService
  *GetPaymentBankTransactionsCharges    GET /payment/bank-transactions/charges     List all charge bank transactions - ChargeBankTransactionsService
  *GetPaymentBankTransactionsChargesId    GET /payment/bank-transactions/charges/{id}     Retrieve a charge bank transaction - ChargeBankTransactionsService
  *GetPaymentBankTransactionsChargesSearch    GET /payment/bank-transactions/charges/search     Search charge bank transactions - ChargeFlowLevelsService
  *GetPaymentChargeFlowsLevels    GET /payment/charge-flows/levels     List all charge flow levels - ChargeFlowLevelsService
  *GetPaymentChargeFlowsLevelsId    GET /payment/charge-flows/levels/{id}     Retrieve a charge flow level - ChargeFlowLevelsService
  *GetPaymentChargeFlowsLevelsSearch    GET /payment/charge-flows/levels/search     Search charge flow levels - ChargeFlowLevelsService
  *PostPaymentChargeFlowsLevelsIdSendMessage    POST /payment/charge-flows/levels/{id}/send-message     Send a payment link - ChargeFlowsService
  *GetPaymentChargeFlows    GET /payment/charge-flows     List all charge flows - ChargeFlowsService
  *GetPaymentChargeFlowsId    GET /payment/charge-flows/{id}     Retrieve a charge flow - ChargeFlowsService
  *GetPaymentChargeFlowsSearch    GET /payment/charge-flows/search     Search charge flows - ChargeFlowsLevelPaymentLinksService
  *GetPaymentChargeFlowsLevelsPaymentLinks    GET /payment/charge-flows/levels/payment-links     List all charge flow payment links - ChargeFlowsLevelPaymentLinksService
  *GetPaymentChargeFlowsLevelsPaymentLinksId    GET /payment/charge-flows/levels/payment-links/{id}     Retrieve a charge flow payment link - ChargeFlowsLevelPaymentLinksService
  *GetPaymentChargeFlowsLevelsPaymentLinksSearch    GET /payment/charge-flows/levels/payment-links/search     Search charge flow payment links - ConditionTypesService
  *GetPaymentConditionTypes    GET /payment/condition-types     List all condition types. - ConditionTypesService
  *GetPaymentConditionTypesId    GET /payment/condition-types/{id}     Retrieve a condition type. - ConditionTypesService
  *GetPaymentConditionTypesSearch    GET /payment/condition-types/search     Search condition types. - ConsumedResourcesService
  *GetSpacesConsumedResources    GET /spaces/consumed-resources     List consumed resources - CountriesService
  *GetCountries    GET /countries     List all countries - CountriesService
  *GetCountriesCode    GET /countries/{code}     Retrieve a country - CountriesService
  *GetCountriesCountryCodeStates    GET /countries/{countryCode}/states     List all states for a country - CountriesService
  *GetCountriesSearch    GET /countries/search     Search countries - CountriesService
  *GetCountriesStates    GET /countries/states     List all country states - CountriesService
  *GetCountriesStatesId    GET /countries/states/{id}     Retrieve a country state - CurrenciesService
  *GetCurrencies    GET /currencies     List all currencies - CurrenciesService
  *GetCurrenciesCode    GET /currencies/{code}     Retrieve a currency - CurrenciesService
  *GetCurrenciesSearch    GET /currencies/search     Search currencies - CurrencyBankAccountsService
  *GetPaymentCurrencyBankAccounts    GET /payment/currency-bank-accounts     List all currency bank accounts - CurrencyBankAccountsService
  *GetPaymentCurrencyBankAccountsId    GET /payment/currency-bank-accounts/{id}     Retrieve a currency bank account - CurrencyBankAccountsService
  *GetPaymentCurrencyBankAccountsSearch    GET /payment/currency-bank-accounts/search     Search currency bank accounts - CustomerAddressesService
  *DeleteCustomersCustomerIdAddressesId    DELETE /customers/{customerId}/addresses/{id}     Delete a customer address - CustomerAddressesService
  *GetCustomersCustomerIdAddresses    GET /customers/{customerId}/addresses     List all customer addresses - CustomerAddressesService
  *GetCustomersCustomerIdAddressesId    GET /customers/{customerId}/addresses/{id}     Retrieve a customer address - CustomerAddressesService
  *GetCustomersCustomerIdAddressesSearch    GET /customers/{customerId}/addresses/search     Search customer addresses - CustomerAddressesService
  *PatchCustomersCustomerIdAddressesId    PATCH /customers/{customerId}/addresses/{id}     Update a customer address - CustomerAddressesService
  *PostCustomersCustomerIdAddresses    POST /customers/{customerId}/addresses     Create a customer address - CustomerAddressesService
  *PostCustomersCustomerIdAddressesIdDefault    POST /customers/{customerId}/addresses/{id}/default     Set the default address for a customer - CustomerCommentsService
  *DeleteCustomersCustomerIdCommentsId    DELETE /customers/{customerId}/comments/{id}     Delete a customer comment - CustomerCommentsService
  *GetCustomersCustomerIdComments    GET /customers/{customerId}/comments     List all customer comments - CustomerCommentsService
  *GetCustomersCustomerIdCommentsId    GET /customers/{customerId}/comments/{id}     Retrieve a customer comment - CustomerCommentsService
  *GetCustomersCustomerIdCommentsSearch    GET /customers/{customerId}/comments/search     Search customer comments - CustomerCommentsService
  *PatchCustomersCustomerIdCommentsId    PATCH /customers/{customerId}/comments/{id}     Update a customer comment - CustomerCommentsService
  *PostCustomersCustomerIdComments    POST /customers/{customerId}/comments     Create a customer comment - CustomerCommentsService
  *PostCustomersCustomerIdCommentsIdPin    POST /customers/{customerId}/comments/{id}/pin     Pin a comment to the top - CustomerCommentsService
  *PostCustomersCustomerIdCommentsIdUnpin    POST /customers/{customerId}/comments/{id}/unpin     Remove a pinned comment from the top - CustomersService
  *DeleteCustomersBulk    DELETE /customers/bulk     Delete multiple customers - CustomersService
  *DeleteCustomersId    DELETE /customers/{id}     Delete a customer - CustomersService
  *GetCustomers    GET /customers     List all customers - CustomersService
  *GetCustomersId    GET /customers/{id}     Retrieve a customer - CustomersService
  *GetCustomersIdEmailAddresses    GET /customers/{id}/email-addresses     List a customer's email addresses - CustomersService
  *GetCustomersSearch    GET /customers/search     Search customers - CustomersService
  *PatchCustomersBulk    PATCH /customers/bulk     Update multiple customers - CustomersService
  *PatchCustomersId    PATCH /customers/{id}     Update a customer - CustomersService
  *PostCustomers    POST /customers     Create a customer - CustomersService
  *PostCustomersBulk    POST /customers/bulk     Create multiple customers - CustomersService
  *PostCustomersIdMergeOther    POST /customers/{id}/merge/{other}     Merge two customers - DebtCollectionCasesService
  *DeleteDebtCollectionCasesId    DELETE /debt-collection/cases/{id}     Delete a debt collection case - DebtCollectionCasesService
  *GetDebtCollectionCases    GET /debt-collection/cases     List all debt collection cases - DebtCollectionCasesService
  *GetDebtCollectionCasesId    GET /debt-collection/cases/{id}     Retrieve a debt collection case - DebtCollectionCasesService
  *GetDebtCollectionCasesIdDocuments    GET /debt-collection/cases/{id}/documents     Retrieve all documents of a debt collection case - DebtCollectionCasesService
  *GetDebtCollectionCasesSearch    GET /debt-collection/cases/search     Search debt collection cases - DebtCollectionCasesService
  *PatchDebtCollectionCasesId    PATCH /debt-collection/cases/{id}     Update a debt collection case - DebtCollectionCasesService
  *PostDebtCollectionCases    POST /debt-collection/cases     Create a debt collection case - DebtCollectionCasesService
  *PostDebtCollectionCasesIdClose    POST /debt-collection/cases/{id}/close     Close a debt collection case - DebtCollectionCasesService
  *PostDebtCollectionCasesIdDocuments    POST /debt-collection/cases/{id}/documents     Attach a document to a debt collection case - DebtCollectionCasesService
  *PostDebtCollectionCasesIdMarkPrepared    POST /debt-collection/cases/{id}/mark-prepared     Mark a debt collection case as prepared - DebtCollectionCasesService
  *PostDebtCollectionCasesIdMarkReviewed    POST /debt-collection/cases/{id}/mark-reviewed     Mark a debt collection case as reviewed - DebtCollectionCasesService
  *PostDebtCollectionCasesIdPaymentReceipts    POST /debt-collection/cases/{id}/payment-receipts     Create a payment receipt for a debt collection case - DebtCollectorConfigurationsService
  *DeleteDebtCollectionConfigurationsId    DELETE /debt-collection/configurations/{id}     Delete a debt collector configuration - DebtCollectorConfigurationsService
  *GetDebtCollectionConfigurations    GET /debt-collection/configurations     List all debt collector configurations - DebtCollectorConfigurationsService
  *GetDebtCollectionConfigurationsId    GET /debt-collection/configurations/{id}     Retrieve a debt collector configuration - DebtCollectorConfigurationsService
  *GetDebtCollectionConfigurationsSearch    GET /debt-collection/configurations/search     Search debt collector configurations - DebtCollectorConfigurationsService
  *PatchDebtCollectionConfigurationsId    PATCH /debt-collection/configurations/{id}     Update a debt collector configuration - DebtCollectorConfigurationsService
  *PostDebtCollectionConfigurations    POST /debt-collection/configurations     Create a debt collector configuration - DebtCollectorsService
  *GetDebtCollectionCollectors    GET /debt-collection/collectors     List all debt collectors - DebtCollectorsService
  *GetDebtCollectionCollectorsId    GET /debt-collection/collectors/{id}     Retrieve a debt collector - DebtCollectorsService
  *GetDebtCollectionCollectorsSearch    GET /debt-collection/collectors/search     Search debt collectors - DeliveryIndicationsService
  *GetPaymentDeliveryIndications    GET /payment/delivery-indications     List all delivery indications - DeliveryIndicationsService
  *GetPaymentDeliveryIndicationsId    GET /payment/delivery-indications/{id}     Retrieve a delivery indication - DeliveryIndicationsService
  *GetPaymentDeliveryIndicationsSearch    GET /payment/delivery-indications/search     Search delivery indications - DeliveryIndicationsService
  *PostPaymentDeliveryIndicationsIdMarkNotSuitable    POST /payment/delivery-indications/{id}/mark-not-suitable     Mark a delivery indication as not suitable. - DeliveryIndicationsService
  *PostPaymentDeliveryIndicationsIdMarkSuitable    POST /payment/delivery-indications/{id}/mark-suitable     Mark a delivery indication as suitable. - DocumentTemplateTypesService
  *GetDocumentTemplatesTypes    GET /document-templates/types     List all document template types - DocumentTemplateTypesService
  *GetDocumentTemplatesTypesId    GET /document-templates/types/{id}     Retrieve a document template type - DocumentTemplateTypesService
  *GetDocumentTemplatesTypesSearch    GET /document-templates/types/search     Search document template types - DocumentTemplatesService
  *GetDocumentTemplates    GET /document-templates     List all document templates - DocumentTemplatesService
  *GetDocumentTemplatesId    GET /document-templates/{id}     Retrieve a document template - DocumentTemplatesService
  *GetDocumentTemplatesSearch    GET /document-templates/search     Search document templates - DunningCasesService
  *GetPaymentDunningCases    GET /payment/dunning-cases     List all dunning cases - DunningCasesService
  *GetPaymentDunningCasesId    GET /payment/dunning-cases/{id}     Retrieve a dunning case - DunningCasesService
  *GetPaymentDunningCasesSearch    GET /payment/dunning-cases/search     Search dunning cases - DunningCasesService
  *PostPaymentDunningCasesIdSuspend    POST /payment/dunning-cases/{id}/suspend     Suspend a dunning case - DunningCasesService
  *PostPaymentDunningCasesInvoiceInvoiceId    POST /payment/dunning-cases/invoice/{invoiceId}     Create a dunning case for an invoice - DunningFlowLevelsService
  *GetPaymentDunningFlowsLevels    GET /payment/dunning-flows/levels     List all dunning flow levels - DunningFlowLevelsService
  *GetPaymentDunningFlowsLevelsId    GET /payment/dunning-flows/levels/{id}     Retrieve a dunning flow level - DunningFlowLevelsService
  *GetPaymentDunningFlowsLevelsSearch    GET /payment/dunning-flows/levels/search     Search dunning flow levels - DunningFlowsService
  *GetPaymentDunningFlows    GET /payment/dunning-flows     List all dunning flows - DunningFlowsService
  *GetPaymentDunningFlowsId    GET /payment/dunning-flows/{id}     Retrieve a dunning flow - DunningFlowsService
  *GetPaymentDunningFlowsSearch    GET /payment/dunning-flows/search     Search dunning flows - ExpressCheckoutService
  *PostExpressCheckoutCreateSession    POST /express-checkout/create-session     Create a new Express Checkout Session - ExternalTransferBankTransactionsService
  *GetPaymentBankTransactionsExternalTransfers    GET /payment/bank-transactions/external-transfers     List all external transfer bank transactions - ExternalTransferBankTransactionsService
  *GetPaymentBankTransactionsExternalTransfersId    GET /payment/bank-transactions/external-transfers/{id}     Retrieve an external transfer bank transaction - ExternalTransferBankTransactionsService
  *GetPaymentBankTransactionsExternalTransfersSearch    GET /payment/bank-transactions/external-transfers/search     Search external transfer bank transactions - HumanUsersService
  *DeleteHumanUsersId    DELETE /human-users/{id}     Delete a human user - HumanUsersService
  *GetHumanUsers    GET /human-users     List all human users - HumanUsersService
  *GetHumanUsersExport    GET /human-users/export     Export human users - HumanUsersService
  *GetHumanUsersId    GET /human-users/{id}     Retrieve a human user - HumanUsersService
  *GetHumanUsersSearch    GET /human-users/search     Search human users - HumanUsersService
  *PatchHumanUsersId    PATCH /human-users/{id}     Update a human user - HumanUsersService
  *PostHumanUsers    POST /human-users     Create a human user - HumanUsersRolesService
  *DeleteHumanUsersUserIdAccountRoles    DELETE /human-users/{userId}/account-roles     Unassign a role from a human user for an account - HumanUsersRolesService
  *DeleteHumanUsersUserIdSpaceRoles    DELETE /human-users/{userId}/space-roles     Unassign a role from a human user for a space - HumanUsersRolesService
  *GetHumanUsersUserIdAccountRoles    GET /human-users/{userId}/account-roles     List all roles of a human user for an account - HumanUsersRolesService
  *GetHumanUsersUserIdSpaceRoles    GET /human-users/{userId}/space-roles     List all roles of a human user for a space - HumanUsersRolesService
  *PostHumanUsersUserIdAccountRoles    POST /human-users/{userId}/account-roles     Assign a role to a human user for an account - HumanUsersRolesService
  *PostHumanUsersUserIdSpaceRoles    POST /human-users/{userId}/space-roles     Assign a role to a human user for a space - InternalTransferBankTransactionsService
  *GetPaymentBankTransactionsInternalTransfers    GET /payment/bank-transactions/internal-transfers     List all internal transfer bank transactions - InternalTransferBankTransactionsService
  *GetPaymentBankTransactionsInternalTransfersId    GET /payment/bank-transactions/internal-transfers/{id}     Retrieve an internal transfer bank transaction - InternalTransferBankTransactionsService
  *GetPaymentBankTransactionsInternalTransfersSearch    GET /payment/bank-transactions/internal-transfers/search     Search internal transfer bank transactions - LabelDescriptorsService
  *GetLabelDescriptors    GET /label-descriptors     List all label descriptors - LabelDescriptorsService
  *GetLabelDescriptorsGroups    GET /label-descriptors/groups     List all label descriptor groups - LabelDescriptorsService
  *GetLabelDescriptorsGroupsId    GET /label-descriptors/groups/{id}     Retrieve a label descriptor group - LabelDescriptorsService
  *GetLabelDescriptorsGroupsSearch    GET /label-descriptors/groups/search     Search label descriptor groups - LabelDescriptorsService
  *GetLabelDescriptorsId    GET /label-descriptors/{id}     Retrieve a label descriptor - LabelDescriptorsService
  *GetLabelDescriptorsSearch    GET /label-descriptors/search     Search label descriptors - LanguagesService
  *GetLanguages    GET /languages     List all languages - LanguagesService
  *GetLanguagesCode    GET /languages/{code}     Retrieve a language - LanguagesService
  *GetLanguagesSearch    GET /languages/search     Search languages - LegalOrganizationFormsService
  *GetLegalOrganizationForms    GET /legal-organization-forms     List all legal organization forms - LegalOrganizationFormsService
  *GetLegalOrganizationFormsId    GET /legal-organization-forms/{id}     Retrieve a legal organization form - LegalOrganizationFormsService
  *GetLegalOrganizationFormsSearch    GET /legal-organization-forms/search     Search legal organization forms - ManualTasksService
  *GetManualTasks    GET /manual-tasks     List all manual tasks - ManualTasksService
  *GetManualTasksId    GET /manual-tasks/{id}     Retrieve a manual task - ManualTasksService
  *GetManualTasksIdNotification    GET /manual-tasks/{id}/notification     Retrieve a manual task's notification message - ManualTasksService
  *GetManualTasksSearch    GET /manual-tasks/search     Search manual tasks - ManualTasksService
  *PostManualTasksIdActionActionId    POST /manual-tasks/{id}/action/{actionId}     Process a manual task's action - PaymentConnectorConfigurationsService
  *DeletePaymentConnectorConfigurationsId    DELETE /payment/connector-configurations/{id}     Delete a payment connector configuration - PaymentConnectorConfigurationsService
  *GetPaymentConnectorConfigurations    GET /payment/connector-configurations     List all payment connector configurations - PaymentConnectorConfigurationsService
  *GetPaymentConnectorConfigurationsId    GET /payment/connector-configurations/{id}     Retrieve a payment connector configuration - PaymentConnectorConfigurationsService
  *GetPaymentConnectorConfigurationsSearch    GET /payment/connector-configurations/search     Search payment connector configurations - PaymentConnectorConfigurationsService
  *PatchPaymentConnectorConfigurationsId    PATCH /payment/connector-configurations/{id}     Update a payment connector configuration - PaymentConnectorConfigurationsService
  *PostPaymentConnectorConfigurations    POST /payment/connector-configurations     Create a payment connector configuration - PaymentConnectorsService
  *GetPaymentConnectors    GET /payment/connectors     List all payment connectors. - PaymentConnectorsService
  *GetPaymentConnectorsId    GET /payment/connectors/{id}     Retrieve a payment connector. - PaymentConnectorsService
  *GetPaymentConnectorsSearch    GET /payment/connectors/search     Search payment connectors. - PaymentLinksService
  *DeletePaymentLinksId    DELETE /payment/links/{id}     Delete a payment link - PaymentLinksService
  *GetPaymentLinks    GET /payment/links     List all payment links - PaymentLinksService
  *GetPaymentLinksId    GET /payment/links/{id}     Retrieve a payment link - PaymentLinksService
  *GetPaymentLinksSearch    GET /payment/links/search     Search payment links - PaymentLinksService
  *PatchPaymentLinksId    PATCH /payment/links/{id}     Update a payment link - PaymentLinksService
  *PostPaymentLinks    POST /payment/links     Create a payment link - PaymentMethodBrandsService
  *GetPaymentMethodBrands    GET /payment/method-brands     List all payment method brands. - PaymentMethodBrandsService
  *GetPaymentMethodBrandsId    GET /payment/method-brands/{id}     Retrieve a payment method brand. - PaymentMethodBrandsService
  *GetPaymentMethodBrandsSearch    GET /payment/method-brands/search     Search payment method brands. - PaymentMethodConfigurationsService
  *DeletePaymentMethodConfigurationsId    DELETE /payment/method-configurations/{id}     Delete a payment method configuration - PaymentMethodConfigurationsService
  *GetPaymentMethodConfigurations    GET /payment/method-configurations     List all payment method configurations - PaymentMethodConfigurationsService
  *GetPaymentMethodConfigurationsId    GET /payment/method-configurations/{id}     Retrieve a payment method configuration - PaymentMethodConfigurationsService
  *GetPaymentMethodConfigurationsSearch    GET /payment/method-configurations/search     Search payment method configurations - PaymentMethodConfigurationsService
  *PatchPaymentMethodConfigurationsId    PATCH /payment/method-configurations/{id}     Update a payment method configuration - PaymentMethodConfigurationsService
  *PostPaymentMethodConfigurations    POST /payment/method-configurations     Create a payment method configuration - PaymentMethodsService
  *GetPaymentMethods    GET /payment/methods     List all payment methods. - PaymentMethodsService
  *GetPaymentMethodsId    GET /payment/methods/{id}     Retrieve a payment method. - PaymentMethodsService
  *GetPaymentMethodsSearch    GET /payment/methods/search     Search payment methods. - PaymentProcessorConfigurationsService
  *DeletePaymentProcessorConfigurationsId    DELETE /payment/processor-configurations/{id}     Delete a payment processor configuration - PaymentProcessorConfigurationsService
  *GetPaymentProcessorConfigurations    GET /payment/processor-configurations     List all payment processor configurations - PaymentProcessorConfigurationsService
  *GetPaymentProcessorConfigurationsId    GET /payment/processor-configurations/{id}     Retrieve a payment processor configuration - PaymentProcessorConfigurationsService
  *GetPaymentProcessorConfigurationsSearch    GET /payment/processor-configurations/search     Search payment processor configurations - PaymentProcessorConfigurationsService
  *PatchPaymentProcessorConfigurationsId    PATCH /payment/processor-configurations/{id}     Update a payment processor configuration - PaymentProcessorConfigurationsService
  *PostPaymentProcessorConfigurations    POST /payment/processor-configurations     Create a payment processor configuration - PaymentProcessorsService
  *GetPaymentProcessors    GET /payment/processors     List all payment processors. - PaymentProcessorsService
  *GetPaymentProcessorsId    GET /payment/processors/{id}     Retrieve a payment processor. - PaymentProcessorsService
  *GetPaymentProcessorsSearch    GET /payment/processors/search     Search payment processors. - PaymentSalesChannelsService
  *GetPaymentSalesChannels    GET /payment/sales-channels     List all payment sales channels. - PaymentSalesChannelsService
  *GetPaymentSalesChannelsId    GET /payment/sales-channels/{id}     Retrieve a payment sales channel. - PaymentSalesChannelsService
  *GetPaymentSalesChannelsSearch    GET /payment/sales-channels/search     Search payment sales channels. - PaymentTerminalTransactionSummariesService
  *GetPaymentTerminalsTransactionSummaries    GET /payment/terminals/transaction-summaries     List all summaries - PaymentTerminalTransactionSummariesService
  *GetPaymentTerminalsTransactionSummariesId    GET /payment/terminals/transaction-summaries/{id}     Retrieve a summary - PaymentTerminalTransactionSummariesService
  *GetPaymentTerminalsTransactionSummariesIdReceipt    GET /payment/terminals/transaction-summaries/{id}/receipt     Retrieve a rendered summary receipt - PaymentTerminalTransactionSummariesService
  *GetPaymentTerminalsTransactionSummariesSearch    GET /payment/terminals/transaction-summaries/search     Search summaries - PaymentTerminalsService
  *DeletePaymentTerminalsId    DELETE /payment/terminals/{id}     Delete a payment terminal - PaymentTerminalsService
  *GetPaymentTerminals    GET /payment/terminals     List all payment terminals - PaymentTerminalsService
  *GetPaymentTerminalsId    GET /payment/terminals/{id}     Retrieve a payment terminal - PaymentTerminalsService
  *GetPaymentTerminalsIdTillConnectionCredentials    GET /payment/terminals/{id}/till-connection-credentials     Retrieve till connection credentials - PaymentTerminalsService
  *GetPaymentTerminalsSearch    GET /payment/terminals/search     Search payment terminals - PaymentTerminalsService
  *PatchPaymentTerminalsId    PATCH /payment/terminals/{id}     Update a payment terminal - PaymentTerminalsService
  *PostPaymentTerminals    POST /payment/terminals     Create a payment terminal - PaymentTerminalsService
  *PostPaymentTerminalsByIdentifierIdentifierPerformTransaction    POST /payment/terminals/by-identifier/{identifier}/perform-transaction     Perform a payment terminal transaction by identifier - PaymentTerminalsService
  *PostPaymentTerminalsByIdentifierIdentifierTriggerFinalBalance    POST /payment/terminals/by-identifier/{identifier}/trigger-final-balance     Remotely trigger the final balance by identifier - PaymentTerminalsService
  *PostPaymentTerminalsIdLink    POST /payment/terminals/{id}/link     Link a device with a payment terminal - PaymentTerminalsService
  *PostPaymentTerminalsIdPerformTransaction    POST /payment/terminals/{id}/perform-transaction     Perform a payment terminal transaction - PaymentTerminalsService
  *PostPaymentTerminalsIdTriggerFinalBalance    POST /payment/terminals/{id}/trigger-final-balance     Remotely trigger the final balance - PaymentTerminalsService
  *PostPaymentTerminalsIdUnlink    POST /payment/terminals/{id}/unlink     Unlink any device from a payment terminal - PaymentWebAppsService
  *DeletePaymentWebAppsConnectorsConnectorExternalId    DELETE /payment/web-apps/connectors/{connectorExternalId}     Delete a connector - PaymentWebAppsService
  *DeletePaymentWebAppsProcessorsExternalId    DELETE /payment/web-apps/processors/{externalId}     Delete a processor - PaymentWebAppsService
  *PatchPaymentWebAppsChargeAttemptsId    PATCH /payment/web-apps/charge-attempts/{id}     Update a charge attempt - PaymentWebAppsService
  *PatchPaymentWebAppsCompletionsId    PATCH /payment/web-apps/completions/{id}     Update a completion - PaymentWebAppsService
  *PatchPaymentWebAppsConnectorsConnectorExternalId    PATCH /payment/web-apps/connectors/{connectorExternalId}     Update a connector - PaymentWebAppsService
  *PatchPaymentWebAppsProcessorsExternalId    PATCH /payment/web-apps/processors/{externalId}     Update a processor - PaymentWebAppsService
  *PatchPaymentWebAppsRefundsId    PATCH /payment/web-apps/refunds/{id}     Update a refund - PaymentWebAppsService
  *PatchPaymentWebAppsVoidsId    PATCH /payment/web-apps/voids/{id}     Update a void - PaymentWebAppsService
  *PostPaymentWebAppsProcessors    POST /payment/web-apps/processors     Create a processor - PaymentWebAppsService
  *PostPaymentWebAppsProcessorsExternalIdActivateForProduction    POST /payment/web-apps/processors/{externalId}/activate-for-production     Activate a processor for production - PaymentWebAppsService
  *PostPaymentWebAppsProcessorsExternalIdConnectors    POST /payment/web-apps/processors/{externalId}/connectors     Create a connector - PermissionsService
  *GetPermissions    GET /permissions     List all permissions - PermissionsService
  *GetPermissionsId    GET /permissions/{id}     Retrieve a permission - PermissionsService
  *GetPermissionsSearch    GET /permissions/search     Search permissions - RefundBankTransactionsService
  *GetPaymentBankTransactionsRefunds    GET /payment/bank-transactions/refunds     List all refund bank transactions - RefundBankTransactionsService
  *GetPaymentBankTransactionsRefundsId    GET /payment/bank-transactions/refunds/{id}     Retrieve a refund bank transaction - RefundBankTransactionsService
  *GetPaymentBankTransactionsRefundsSearch    GET /payment/bank-transactions/refunds/search     Search refund bank transactions - RefundCommentsService
  *DeletePaymentRefundsRefundIdCommentsId    DELETE /payment/refunds/{refundId}/comments/{id}     Delete a refund comment - RefundCommentsService
  *GetPaymentRefundsRefundIdComments    GET /payment/refunds/{refundId}/comments     List all refund comments - RefundCommentsService
  *GetPaymentRefundsRefundIdCommentsId    GET /payment/refunds/{refundId}/comments/{id}     Retrieve a refund comment - RefundCommentsService
  *GetPaymentRefundsRefundIdCommentsSearch    GET /payment/refunds/{refundId}/comments/search     Search refund comments - RefundCommentsService
  *PatchPaymentRefundsRefundIdCommentsId    PATCH /payment/refunds/{refundId}/comments/{id}     Update a refund comment - RefundCommentsService
  *PostPaymentRefundsRefundIdComments    POST /payment/refunds/{refundId}/comments     Create a refund comment - RefundCommentsService
  *PostPaymentRefundsRefundIdCommentsIdPin    POST /payment/refunds/{refundId}/comments/{id}/pin     Pin a comment to the top - RefundCommentsService
  *PostPaymentRefundsRefundIdCommentsIdUnpin    POST /payment/refunds/{refundId}/comments/{id}/unpin     Remove the pinned comment from the top - RefundRecoveryBankTransactionsService
  *GetPaymentBankTransactionsRefundRecoveries    GET /payment/bank-transactions/refund-recoveries     List all refund recovery bank transactions - RefundRecoveryBankTransactionsService
  *GetPaymentBankTransactionsRefundRecoveriesId    GET /payment/bank-transactions/refund-recoveries/{id}     Retrieve a refund recovery bank transaction - RefundRecoveryBankTransactionsService
  *GetPaymentBankTransactionsRefundRecoveriesSearch    GET /payment/bank-transactions/refund-recoveries/search     Search refund recovery bank transactions - RefundsService
  *GetPaymentRefunds    GET /payment/refunds     List all refunds - RefundsService
  *GetPaymentRefundsId    GET /payment/refunds/{id}     Retrieve a refund - RefundsService
  *GetPaymentRefundsIdDocument    GET /payment/refunds/{id}/document     Retrieve a refund document - RefundsService
  *GetPaymentRefundsSearch    GET /payment/refunds/search     Search refunds - RefundsService
  *PostPaymentRefunds    POST /payment/refunds     Create a refund - RefundsService
  *PostPaymentRefundsIdMarkFailed    POST /payment/refunds/{id}/mark-failed     Mark a refund as failed - RefundsService
  *PostPaymentRefundsIdMarkSucceeded    POST /payment/refunds/{id}/mark-succeeded     Mark a refund as successful - RolesService
  *DeleteRolesId    DELETE /roles/{id}     Delete a role - RolesService
  *GetRoles    GET /roles     List all roles - RolesService
  *GetRolesId    GET /roles/{id}     Retrieve a role - RolesService
  *GetRolesSearch    GET /roles/search     Search roles - RolesService
  *PatchRolesId    PATCH /roles/{id}     Update a role - RolesService
  *PostRoles    POST /roles     Create a role - SingleSignOnUsersService
  *DeleteSingleSignOnUsersId    DELETE /single-sign-on-users/{id}     Delete a single sign-on user - SingleSignOnUsersService
  *GetSingleSignOnUsers    GET /single-sign-on-users     List all single sign-on users - SingleSignOnUsersService
  *GetSingleSignOnUsersId    GET /single-sign-on-users/{id}     Retrieve a single sign-on user - SingleSignOnUsersService
  *GetSingleSignOnUsersSearch    GET /single-sign-on-users/search     Search single sign-on users - SingleSignOnUsersService
  *PatchSingleSignOnUsersId    PATCH /single-sign-on-users/{id}     Update a single sign-on user - SingleSignOnUsersService
  *PostSingleSignOnUsers    POST /single-sign-on-users     Create a single sign-on user - SingleSignOnUsersRolesService
  *DeleteSingleSignOnUsersUserIdAccountRoles    DELETE /single-sign-on-users/{userId}/account-roles     Unassign a role from a single sign-on user for an account - SingleSignOnUsersRolesService
  *DeleteSingleSignOnUsersUserIdSpaceRoles    DELETE /single-sign-on-users/{userId}/space-roles     Unassign a role from a single sign-on user for a space - SingleSignOnUsersRolesService
  *GetSingleSignOnUsersUserIdAccountRoles    GET /single-sign-on-users/{userId}/account-roles     List all roles of a single sign-on user for an account - SingleSignOnUsersRolesService
  *GetSingleSignOnUsersUserIdSpaceRoles    GET /single-sign-on-users/{userId}/space-roles     List all roles of a single sign-on user for a space - SingleSignOnUsersRolesService
  *PostSingleSignOnUsersUserIdAccountRoles    POST /single-sign-on-users/{userId}/account-roles     Assign a role to a single sign-on user for an account - SingleSignOnUsersRolesService
  *PostSingleSignOnUsersUserIdSpaceRoles    POST /single-sign-on-users/{userId}/space-roles     Assign a role to a single sign-on user for a space - SpacesService
  *DeleteSpacesId    DELETE /spaces/{id}     Delete a space - SpacesService
  *GetSpaces    GET /spaces     List all spaces - SpacesService
  *GetSpacesId    GET /spaces/{id}     Retrieve a space - SpacesService
  *GetSpacesSearch    GET /spaces/search     Search spaces - SpacesService
  *PatchSpacesId    PATCH /spaces/{id}     Update a space - SpacesService
  *PostSpaces    POST /spaces     Create a space - StaticValuesService
  *GetStaticValues    GET /static-values     List all static values - StaticValuesService
  *GetStaticValuesId    GET /static-values/{id}     Retrieve a static value - StaticValuesService
  *GetStaticValuesSearch    GET /static-values/search     Search static values - SubscribersService
  *DeleteSubscriptionsSubscribersId    DELETE /subscriptions/subscribers/{id}     Delete a subscriber - SubscribersService
  *GetSubscriptionsSubscribers    GET /subscriptions/subscribers     List all subscribers - SubscribersService
  *GetSubscriptionsSubscribersId    GET /subscriptions/subscribers/{id}     Retrieve a subscriber - SubscribersService
  *GetSubscriptionsSubscribersSearch    GET /subscriptions/subscribers/search     Search subscribers - SubscribersService
  *PatchSubscriptionsSubscribersId    PATCH /subscriptions/subscribers/{id}     Update a subscriber - SubscribersService
  *PostSubscriptionsSubscribers    POST /subscriptions/subscribers     Create a subscriber - SubscriptionAffiliatesService
  *DeleteSubscriptionsAffiliatesId    DELETE /subscriptions/affiliates/{id}     Delete an affiliate - SubscriptionAffiliatesService
  *GetSubscriptionsAffiliates    GET /subscriptions/affiliates     List all affiliates - SubscriptionAffiliatesService
  *GetSubscriptionsAffiliatesId    GET /subscriptions/affiliates/{id}     Retrieve an affiliate - SubscriptionAffiliatesService
  *GetSubscriptionsAffiliatesSearch    GET /subscriptions/affiliates/search     Search affiliates - SubscriptionAffiliatesService
  *PatchSubscriptionsAffiliatesId    PATCH /subscriptions/affiliates/{id}     Update an affiliate - SubscriptionAffiliatesService
  *PostSubscriptionsAffiliates    POST /subscriptions/affiliates     Create an affiliate - SubscriptionChargesService
  *GetSubscriptionsCharges    GET /subscriptions/charges     List all charges - SubscriptionChargesService
  *GetSubscriptionsChargesId    GET /subscriptions/charges/{id}     Retrieve a charge - SubscriptionChargesService
  *GetSubscriptionsChargesSearch    GET /subscriptions/charges/search     Search charges - SubscriptionChargesService
  *PostSubscriptionsCharges    POST /subscriptions/charges     Create a charge - SubscriptionChargesService
  *PostSubscriptionsChargesIdDiscard    POST /subscriptions/charges/{id}/discard     Discard a charge - SubscriptionLedgerEntriesService
  *GetSubscriptionsLedgerEntries    GET /subscriptions/ledger-entries     List all ledger entries - SubscriptionLedgerEntriesService
  *GetSubscriptionsLedgerEntriesId    GET /subscriptions/ledger-entries/{id}     Retrieve a ledger entry - SubscriptionLedgerEntriesService
  *GetSubscriptionsLedgerEntriesSearch    GET /subscriptions/ledger-entries/search     Search ledger entries - SubscriptionLedgerEntriesService
  *PostSubscriptionsLedgerEntries    POST /subscriptions/ledger-entries     Create a ledger entry - SubscriptionMetricUsageReportsService
  *GetSubscriptionsMetricUsageReports    GET /subscriptions/metric-usage-reports     List all metric usage reports - SubscriptionMetricUsageReportsService
  *GetSubscriptionsMetricUsageReportsId    GET /subscriptions/metric-usage-reports/{id}     Retrieve a metric usage report - SubscriptionMetricUsageReportsService
  *GetSubscriptionsMetricUsageReportsSearch    GET /subscriptions/metric-usage-reports/search     Search metric usage reports - SubscriptionMetricUsageReportsService
  *PostSubscriptionsMetricUsageReports    POST /subscriptions/metric-usage-reports     Create a metric usage report - SubscriptionMetricsService
  *DeleteSubscriptionsMetricsId    DELETE /subscriptions/metrics/{id}     Delete a metric - SubscriptionMetricsService
  *GetSubscriptionsMetrics    GET /subscriptions/metrics     List all metrics - SubscriptionMetricsService
  *GetSubscriptionsMetricsId    GET /subscriptions/metrics/{id}     Retrieve a metric - SubscriptionMetricsService
  *GetSubscriptionsMetricsSearch    GET /subscriptions/metrics/search     Search metrics - SubscriptionMetricsService
  *PatchSubscriptionsMetricsId    PATCH /subscriptions/metrics/{id}     Update a metric - SubscriptionMetricsService
  *PostSubscriptionsMetrics    POST /subscriptions/metrics     Create a metric - SubscriptionPeriodBillsService
  *GetSubscriptionsPeriodBills    GET /subscriptions/period-bills     List all subscription period bills - SubscriptionPeriodBillsService
  *GetSubscriptionsPeriodBillsId    GET /subscriptions/period-bills/{id}     Retrieve a subscription period bill - SubscriptionPeriodBillsService
  *GetSubscriptionsPeriodBillsSearch    GET /subscriptions/period-bills/search     Search subscription period bills - SubscriptionPeriodBillsService
  *PostSubscriptionsPeriodBillsIdClose    POST /subscriptions/period-bills/{id}/close     Close a subscription period bill - SubscriptionProductComponentGroupsService
  *DeleteSubscriptionsProductsComponentGroupsId    DELETE /subscriptions/products/component-groups/{id}     Delete a component group - SubscriptionProductComponentGroupsService
  *GetSubscriptionsProductsComponentGroups    GET /subscriptions/products/component-groups     List all component groups - SubscriptionProductComponentGroupsService
  *GetSubscriptionsProductsComponentGroupsId    GET /subscriptions/products/component-groups/{id}     Retrieve a component group - SubscriptionProductComponentGroupsService
  *GetSubscriptionsProductsComponentGroupsSearch    GET /subscriptions/products/component-groups/search     Search component groups - SubscriptionProductComponentGroupsService
  *PatchSubscriptionsProductsComponentGroupsId    PATCH /subscriptions/products/component-groups/{id}     Update a component group - SubscriptionProductComponentGroupsService
  *PostSubscriptionsProductsComponentGroups    POST /subscriptions/products/component-groups     Create a component group - SubscriptionProductComponentsService
  *DeleteSubscriptionsProductsComponentsId    DELETE /subscriptions/products/components/{id}     Delete a component - SubscriptionProductComponentsService
  *GetSubscriptionsProductsComponents    GET /subscriptions/products/components     List all components - SubscriptionProductComponentsService
  *GetSubscriptionsProductsComponentsId    GET /subscriptions/products/components/{id}     Retrieve a component - SubscriptionProductComponentsService
  *GetSubscriptionsProductsComponentsSearch    GET /subscriptions/products/components/search     Search components - SubscriptionProductComponentsService
  *PatchSubscriptionsProductsComponentsId    PATCH /subscriptions/products/components/{id}     Update a component - SubscriptionProductComponentsService
  *PostSubscriptionsProductsComponents    POST /subscriptions/products/components     Create a component - SubscriptionProductMeteredFeeTiersService
  *DeleteSubscriptionsProductsMeteredFeesFeeIdTiersId    DELETE /subscriptions/products/metered-fees/{feeId}/tiers/{id}     Delete a metered fee tier - SubscriptionProductMeteredFeeTiersService
  *GetSubscriptionsProductsMeteredFeesFeeIdTiers    GET /subscriptions/products/metered-fees/{feeId}/tiers     List all metered fee tiers - SubscriptionProductMeteredFeeTiersService
  *GetSubscriptionsProductsMeteredFeesFeeIdTiersId    GET /subscriptions/products/metered-fees/{feeId}/tiers/{id}     Retrieve a metered fee tier - SubscriptionProductMeteredFeeTiersService
  *GetSubscriptionsProductsMeteredFeesFeeIdTiersSearch    GET /subscriptions/products/metered-fees/{feeId}/tiers/search     Search metered fee tiers - SubscriptionProductMeteredFeeTiersService
  *PatchSubscriptionsProductsMeteredFeesFeeIdTiersId    PATCH /subscriptions/products/metered-fees/{feeId}/tiers/{id}     Update a metered fee tier - SubscriptionProductMeteredFeeTiersService
  *PostSubscriptionsProductsMeteredFeesFeeIdTiers    POST /subscriptions/products/metered-fees/{feeId}/tiers     Create a metered fee tier - SubscriptionProductMeteredFeesService
  *DeleteSubscriptionsProductsMeteredFeesId    DELETE /subscriptions/products/metered-fees/{id}     Delete a metered fee - SubscriptionProductMeteredFeesService
  *GetSubscriptionsProductsMeteredFees    GET /subscriptions/products/metered-fees     List all metered fees - SubscriptionProductMeteredFeesService
  *GetSubscriptionsProductsMeteredFeesId    GET /subscriptions/products/metered-fees/{id}     Retrieve a metered fee - SubscriptionProductMeteredFeesService
  *GetSubscriptionsProductsMeteredFeesSearch    GET /subscriptions/products/metered-fees/search     Search metered fees - SubscriptionProductMeteredFeesService
  *PatchSubscriptionsProductsMeteredFeesId    PATCH /subscriptions/products/metered-fees/{id}     Update a metered fee - SubscriptionProductMeteredFeesService
  *PostSubscriptionsProductsMeteredFees    POST /subscriptions/products/metered-fees     Create a metered fee - SubscriptionProductPeriodFeesService
  *DeleteSubscriptionsProductsPeriodFeesId    DELETE /subscriptions/products/period-fees/{id}     Delete a period fee - SubscriptionProductPeriodFeesService
  *GetSubscriptionsProductsPeriodFees    GET /subscriptions/products/period-fees     List all period fees - SubscriptionProductPeriodFeesService
  *GetSubscriptionsProductsPeriodFeesId    GET /subscriptions/products/period-fees/{id}     Retrieve a period fee - SubscriptionProductPeriodFeesService
  *GetSubscriptionsProductsPeriodFeesSearch    GET /subscriptions/products/period-fees/search     Search period fees - SubscriptionProductPeriodFeesService
  *PatchSubscriptionsProductsPeriodFeesId    PATCH /subscriptions/products/period-fees/{id}     Update a period fee - SubscriptionProductPeriodFeesService
  *PostSubscriptionsProductsPeriodFees    POST /subscriptions/products/period-fees     Create a period fee - SubscriptionProductRetirementsService
  *GetSubscriptionsProductsRetirements    GET /subscriptions/products/retirements     List all product retirements - SubscriptionProductRetirementsService
  *GetSubscriptionsProductsRetirementsId    GET /subscriptions/products/retirements/{id}     Retrieve a product retirement - SubscriptionProductRetirementsService
  *GetSubscriptionsProductsRetirementsSearch    GET /subscriptions/products/retirements/search     Search product retirements - SubscriptionProductSetupFeesService
  *DeleteSubscriptionsProductsSetupFeesId    DELETE /subscriptions/products/setup-fees/{id}     Delete a setup fee - SubscriptionProductSetupFeesService
  *GetSubscriptionsProductsSetupFees    GET /subscriptions/products/setup-fees     List all setup fees - SubscriptionProductSetupFeesService
  *GetSubscriptionsProductsSetupFeesId    GET /subscriptions/products/setup-fees/{id}     Retrieve a setup fee - SubscriptionProductSetupFeesService
  *GetSubscriptionsProductsSetupFeesSearch    GET /subscriptions/products/setup-fees/search     Search setup fees - SubscriptionProductSetupFeesService
  *PatchSubscriptionsProductsSetupFeesId    PATCH /subscriptions/products/setup-fees/{id}     Update a setup fee - SubscriptionProductSetupFeesService
  *PostSubscriptionsProductsSetupFees    POST /subscriptions/products/setup-fees     Create a setup fee - SubscriptionProductVersionRetirementsService
  *GetSubscriptionsProductsVersionsRetirements    GET /subscriptions/products/versions/retirements     List all product version retirements - SubscriptionProductVersionRetirementsService
  *GetSubscriptionsProductsVersionsRetirementsId    GET /subscriptions/products/versions/retirements/{id}     Retrieve a product version retirement - SubscriptionProductVersionRetirementsService
  *GetSubscriptionsProductsVersionsRetirementsSearch    GET /subscriptions/products/versions/retirements/search     Search product version retirements - SubscriptionProductVersionsService
  *GetSubscriptionsProductsVersions    GET /subscriptions/products/versions     List all product versions - SubscriptionProductVersionsService
  *GetSubscriptionsProductsVersionsId    GET /subscriptions/products/versions/{id}     Retrieve a product version - SubscriptionProductVersionsService
  *GetSubscriptionsProductsVersionsSearch    GET /subscriptions/products/versions/search     Search product versions - SubscriptionProductVersionsService
  *PatchSubscriptionsProductsVersionsId    PATCH /subscriptions/products/versions/{id}     Update a product version - SubscriptionProductVersionsService
  *PostSubscriptionsProductsVersions    POST /subscriptions/products/versions     Create a product version - SubscriptionProductVersionsService
  *PostSubscriptionsProductsVersionsIdActivate    POST /subscriptions/products/versions/{id}/activate     Activate a product version - SubscriptionProductVersionsService
  *PostSubscriptionsProductsVersionsIdRetire    POST /subscriptions/products/versions/{id}/retire     Retire a product version - SubscriptionProductsService
  *GetSubscriptionsProducts    GET /subscriptions/products     List all products - SubscriptionProductsService
  *GetSubscriptionsProductsId    GET /subscriptions/products/{id}     Retrieve a product - SubscriptionProductsService
  *GetSubscriptionsProductsSearch    GET /subscriptions/products/search     Search products - SubscriptionProductsService
  *PatchSubscriptionsProductsId    PATCH /subscriptions/products/{id}     Update a product - SubscriptionProductsService
  *PostSubscriptionsProducts    POST /subscriptions/products     Create a product - SubscriptionProductsService
  *PostSubscriptionsProductsIdRetire    POST /subscriptions/products/{id}/retire     Retire a product - SubscriptionSuspensionsService
  *GetSubscriptionsSuspensions    GET /subscriptions/suspensions     List all suspensions - SubscriptionSuspensionsService
  *GetSubscriptionsSuspensionsId    GET /subscriptions/suspensions/{id}     Retrieve a suspension - SubscriptionSuspensionsService
  *GetSubscriptionsSuspensionsSearch    GET /subscriptions/suspensions/search     Search suspensions - SubscriptionVersionsService
  *GetSubscriptionsVersions    GET /subscriptions/versions     List all subscription versions - SubscriptionVersionsService
  *GetSubscriptionsVersionsId    GET /subscriptions/versions/{id}     Retrieve a subscription version - SubscriptionVersionsService
  *GetSubscriptionsVersionsSearch    GET /subscriptions/versions/search     Search subscription versions - SubscriptionsService
  *GetSubscriptions    GET /subscriptions     List all subscriptions - SubscriptionsService
  *GetSubscriptionsId    GET /subscriptions/{id}     Retrieve a subscription - SubscriptionsService
  *GetSubscriptionsIdInvoices    GET /subscriptions/{id}/invoices     Search subscription invoices - SubscriptionsService
  *GetSubscriptionsSearch    GET /subscriptions/search     Search subscriptions - SubscriptionsService
  *PatchSubscriptionsId    PATCH /subscriptions/{id}     Update a subscription - SubscriptionsService
  *PostSubscriptions    POST /subscriptions     Create a subscription - SubscriptionsService
  *PostSubscriptionsIdApplyChanges    POST /subscriptions/{id}/apply-changes     Apply changes to a subscription - SubscriptionsService
  *PostSubscriptionsIdInitialize    POST /subscriptions/{id}/initialize     Initialize a subscription - SubscriptionsService
  *PostSubscriptionsIdInitializeSubscriberPresent    POST /subscriptions/{id}/initialize-subscriber-present     Initialize a subscription with the subscriber present - SubscriptionsService
  *PostSubscriptionsIdReactivate    POST /subscriptions/{id}/reactivate     Reactivate a suspended subscription - SubscriptionsService
  *PostSubscriptionsIdSuspend    POST /subscriptions/{id}/suspend     Suspend a subscription - SubscriptionsService
  *PostSubscriptionsIdTerminate    POST /subscriptions/{id}/terminate     Terminate a subscription - SubscriptionsService
  *PostSubscriptionsIdUpgradeProduct    POST /subscriptions/{id}/upgrade-product     Upgrade a subscription's product - TokenVersionsService
  *GetPaymentTokenVersions    GET /payment/token-versions     List all token versions - TokenVersionsService
  *GetPaymentTokenVersionsId    GET /payment/token-versions/{id}     Retrieve a token version - TokenVersionsService
  *GetPaymentTokenVersionsSearch    GET /payment/token-versions/search     Search token token versions - TokensService
  *DeletePaymentTokensId    DELETE /payment/tokens/{id}     Delete a token - TokensService
  *GetPaymentTokens    GET /payment/tokens     List all tokens - TokensService
  *GetPaymentTokensId    GET /payment/tokens/{id}     Retrieve a token - TokensService
  *GetPaymentTokensIdActiveVersion    GET /payment/tokens/{id}/active-version     Retrieve the active token version - TokensService
  *GetPaymentTokensSearch    GET /payment/tokens/search     Search tokens - TokensService
  *PatchPaymentTokensId    PATCH /payment/tokens/{id}     Update a token - TokensService
  *PostPaymentTokens    POST /payment/tokens     Create a token - TokensService
  *PostPaymentTokensIdCreateTransactionForTokenUpdate    POST /payment/tokens/{id}/create-transaction-for-token-update     Create a transaction for token update - TransactionClientPlatformsService
  *GetPaymentTransactionClientPlatforms    GET /payment/transaction/client-platforms     List all client platforms - TransactionClientPlatformsService
  *GetPaymentTransactionClientPlatformsId    GET /payment/transaction/client-platforms/{id}     Retrieve the client platform based on id - TransactionClientPlatformsService
  *GetPaymentTransactionClientPlatformsSearch    GET /payment/transaction/client-platforms/search     Search client platforms - TransactionCommentsService
  *DeletePaymentTransactionsTransactionIdCommentsId    DELETE /payment/transactions/{transactionId}/comments/{id}     Delete a transaction comment - TransactionCommentsService
  *GetPaymentTransactionsTransactionIdComments    GET /payment/transactions/{transactionId}/comments     List all transaction comments - TransactionCommentsService
  *GetPaymentTransactionsTransactionIdCommentsId    GET /payment/transactions/{transactionId}/comments/{id}     Retrieve a transaction comment - TransactionCommentsService
  *GetPaymentTransactionsTransactionIdCommentsSearch    GET /payment/transactions/{transactionId}/comments/search     Search transaction comments - TransactionCommentsService
  *PatchPaymentTransactionsTransactionIdCommentsId    PATCH /payment/transactions/{transactionId}/comments/{id}     Update a transaction comment - TransactionCommentsService
  *PostPaymentTransactionsTransactionIdComments    POST /payment/transactions/{transactionId}/comments     Create a transaction comment - TransactionCommentsService
  *PostPaymentTransactionsTransactionIdCommentsIdPin    POST /payment/transactions/{transactionId}/comments/{id}/pin     Pin a comment to the top - TransactionCommentsService
  *PostPaymentTransactionsTransactionIdCommentsIdUnpin    POST /payment/transactions/{transactionId}/comments/{id}/unpin     Remove the pinned comment from the top - TransactionCompletionsService
  *GetPaymentTransactionsCompletions    GET /payment/transactions/completions     List all transaction completions - TransactionCompletionsService
  *GetPaymentTransactionsCompletionsId    GET /payment/transactions/completions/{id}     Retrieve a transaction completion - TransactionCompletionsService
  *GetPaymentTransactionsCompletionsSearch    GET /payment/transactions/completions/search     Search transaction completions - TransactionInvoiceCommentsService
  *DeletePaymentTransactionsInvoicesInvoiceIdCommentsId    DELETE /payment/transactions/invoices/{invoiceId}/comments/{id}     Delete a transaction comment - TransactionInvoiceCommentsService
  *GetPaymentTransactionsInvoicesInvoiceIdComments    GET /payment/transactions/invoices/{invoiceId}/comments     List all transaction invoice comments - TransactionInvoiceCommentsService
  *GetPaymentTransactionsInvoicesInvoiceIdCommentsId    GET /payment/transactions/invoices/{invoiceId}/comments/{id}     Retrieve a transaction invoice comment - TransactionInvoiceCommentsService
  *GetPaymentTransactionsInvoicesInvoiceIdCommentsSearch    GET /payment/transactions/invoices/{invoiceId}/comments/search     Search transaction invoice comments - TransactionInvoiceCommentsService
  *PatchPaymentTransactionsInvoicesInvoiceIdCommentsId    PATCH /payment/transactions/invoices/{invoiceId}/comments/{id}     Update a transaction comment - TransactionInvoiceCommentsService
  *PostPaymentTransactionsInvoicesInvoiceIdComments    POST /payment/transactions/invoices/{invoiceId}/comments     Create a transaction invoice comment - TransactionInvoiceCommentsService
  *PostPaymentTransactionsInvoicesInvoiceIdCommentsIdPin    POST /payment/transactions/invoices/{invoiceId}/comments/{id}/pin     Pin a comment to the top - TransactionInvoiceCommentsService
  *PostPaymentTransactionsInvoicesInvoiceIdCommentsIdUnpin    POST /payment/transactions/invoices/{invoiceId}/comments/{id}/unpin     Remove the pinned comment from the top - TransactionInvoicesService
  *GetPaymentTransactionsInvoices    GET /payment/transactions/invoices     List all transaction invoices - TransactionInvoicesService
  *GetPaymentTransactionsInvoicesId    GET /payment/transactions/invoices/{id}     Retrieve a transaction invoice - TransactionInvoicesService
  *GetPaymentTransactionsInvoicesIdCheckReplacementPossible    GET /payment/transactions/invoices/{id}/check-replacement-possible     Check if a transaction invoice can be replaced - TransactionInvoicesService
  *GetPaymentTransactionsInvoicesIdDocument    GET /payment/transactions/invoices/{id}/document     Retrieve an invoice document - TransactionInvoicesService
  *GetPaymentTransactionsInvoicesSearch    GET /payment/transactions/invoices/search     Search transaction invoices - TransactionInvoicesService
  *PostPaymentTransactionsInvoicesIdDerecognize    POST /payment/transactions/invoices/{id}/derecognize     Derecognize a transaction invoice - TransactionInvoicesService
  *PostPaymentTransactionsInvoicesIdMarkPaid    POST /payment/transactions/invoices/{id}/mark-paid     Mark a transaction invoice as paid - TransactionInvoicesService
  *PostPaymentTransactionsInvoicesIdReplace    POST /payment/transactions/invoices/{id}/replace     Replace a transaction invoice - TransactionLineItemVersionsService
  *GetPaymentTransactionsLineItemVersions    GET /payment/transactions/line-item-versions     List all transaction line item versions - TransactionLineItemVersionsService
  *GetPaymentTransactionsLineItemVersionsId    GET /payment/transactions/line-item-versions/{id}     Retrieve a transaction line item version - TransactionLineItemVersionsService
  *GetPaymentTransactionsLineItemVersionsSearch    GET /payment/transactions/line-item-versions/search     Search transaction line item versions - TransactionLineItemVersionsService
  *PostPaymentTransactionsLineItemVersions    POST /payment/transactions/line-item-versions     Create a transaction line item version - TransactionVoidsService
  *GetPaymentTransactionsVoids    GET /payment/transactions/voids     List all transaction voids - TransactionVoidsService
  *GetPaymentTransactionsVoidsId    GET /payment/transactions/voids/{id}     Retrieve a transaction void - TransactionVoidsService
  *GetPaymentTransactionsVoidsSearch    GET /payment/transactions/voids/search     Search transaction voids - TransactionsService
  *DeletePaymentTransactionsByCredentialsCredentialsOneClickTokensId    DELETE /payment/transactions/by-credentials/{credentials}/one-click-tokens/{id}     Delete a one-click token by credentials - TransactionsService
  *GetPaymentTransactions    GET /payment/transactions     List all transactions - TransactionsService
  *GetPaymentTransactionsByCredentialsCredentials    GET /payment/transactions/by-credentials/{credentials}     Retrieve a transaction by credentials - TransactionsService
  *GetPaymentTransactionsByCredentialsCredentialsMobileSdkUrl    GET /payment/transactions/by-credentials/{credentials}/mobile-sdk-url     Retrieve a Mobile SDK URL by credentials - TransactionsService
  *GetPaymentTransactionsByCredentialsCredentialsOneClickTokens    GET /payment/transactions/by-credentials/{credentials}/one-click-tokens     List one-click tokens by credentials - TransactionsService
  *GetPaymentTransactionsByCredentialsCredentialsPaymentMethodConfigurations    GET /payment/transactions/by-credentials/{credentials}/payment-method-configurations     List available payment method configurations by credentials - TransactionsService
  *GetPaymentTransactionsExport    GET /payment/transactions/export     Export transactions - TransactionsService
  *GetPaymentTransactionsId    GET /payment/transactions/{id}     Retrieve a transaction - TransactionsService
  *GetPaymentTransactionsIdChargeFlowPaymentPageUrl    GET /payment/transactions/{id}/charge-flow/payment-page-url     Retrieve a charge flow payment page URL - TransactionsService
  *GetPaymentTransactionsIdCheckTokenCreationPossible    GET /payment/transactions/{id}/check-token-creation-possible     Check if token can be created - TransactionsService
  *GetPaymentTransactionsIdCredentials    GET /payment/transactions/{id}/credentials     Retrieve transaction credentials - TransactionsService
  *GetPaymentTransactionsIdIframeJavascriptUrl    GET /payment/transactions/{id}/iframe-javascript-url     Retrieve an iFrame JavaScript URL - TransactionsService
  *GetPaymentTransactionsIdInvoiceDocument    GET /payment/transactions/{id}/invoice-document     Retrieve an invoice document - TransactionsService
  *GetPaymentTransactionsIdLatestLineItemVersion    GET /payment/transactions/{id}/latest-line-item-version     Retrieve the latest line item version - TransactionsService
  *GetPaymentTransactionsIdLightboxJavascriptUrl    GET /payment/transactions/{id}/lightbox-javascript-url     Retrieve a Lightbox JavaScript URL - TransactionsService
  *GetPaymentTransactionsIdPackingSlipDocument    GET /payment/transactions/{id}/packing-slip-document     Retrieve a packing slip document - TransactionsService
  *GetPaymentTransactionsIdPaymentMethodConfigurations    GET /payment/transactions/{id}/payment-method-configurations     List available payment method configurations - TransactionsService
  *GetPaymentTransactionsIdPaymentPageUrl    GET /payment/transactions/{id}/payment-page-url     Retrieve a payment page URL - TransactionsService
  *GetPaymentTransactionsIdTerminalReceipts    GET /payment/transactions/{id}/terminal-receipts     List terminal receipts - TransactionsService
  *GetPaymentTransactionsSearch    GET /payment/transactions/search     Search transactions - TransactionsService
  *PatchPaymentTransactionsId    PATCH /payment/transactions/{id}     Update a transaction - TransactionsService
  *PostPaymentTransactions    POST /payment/transactions     Create a transaction - TransactionsService
  *PostPaymentTransactionsByCredentialsCredentialsOneClickTokensIdProcess    POST /payment/transactions/by-credentials/{credentials}/one-click-tokens/{id}/process     Process via one-click token by credentials - TransactionsService
  *PostPaymentTransactionsIdChargeFlowApply    POST /payment/transactions/{id}/charge-flow/apply     Process a transaction via charge flow - TransactionsService
  *PostPaymentTransactionsIdChargeFlowCancel    POST /payment/transactions/{id}/charge-flow/cancel     Cancel a charge flow - TransactionsService
  *PostPaymentTransactionsIdChargeFlowUpdateRecipient    POST /payment/transactions/{id}/charge-flow/update-recipient     Update a charge flow recipient - TransactionsService
  *PostPaymentTransactionsIdCompleteOffline    POST /payment/transactions/{id}/complete-offline     Complete a transaction offline - TransactionsService
  *PostPaymentTransactionsIdCompleteOnline    POST /payment/transactions/{id}/complete-online     Complete a transaction online - TransactionsService
  *PostPaymentTransactionsIdCompletePartiallyOffline    POST /payment/transactions/{id}/complete-partially-offline     Complete a transaction offline partially - TransactionsService
  *PostPaymentTransactionsIdCompletePartiallyOnline    POST /payment/transactions/{id}/complete-partially-online     Complete a transaction online partially - TransactionsService
  *PostPaymentTransactionsIdConfirm    POST /payment/transactions/{id}/confirm     Confirm a transaction - TransactionsService
  *PostPaymentTransactionsIdProcessCardDetails    POST /payment/transactions/{id}/process-card-details     Process a card transaction - TransactionsService
  *PostPaymentTransactionsIdProcessCardDetailsThreed    POST /payment/transactions/{id}/process-card-details-threed     Process a card transaction with 3-D Secure - TransactionsService
  *PostPaymentTransactionsIdProcessWithToken    POST /payment/transactions/{id}/process-with-token     Process a transaction via token - TransactionsService
  *PostPaymentTransactionsIdProcessWithoutInteraction    POST /payment/transactions/{id}/process-without-interaction     Process a transaction without user-interaction - TransactionsService
  *PostPaymentTransactionsIdVoidOffline    POST /payment/transactions/{id}/void-offline     Void a transaction offline - TransactionsService
  *PostPaymentTransactionsIdVoidOnline    POST /payment/transactions/{id}/void-online     Void a transaction online - WebAppsService
  *GetWebAppsInstalled    GET /web-apps/installed     Check whether the web app is installed - WebAppsService
  *PostWebAppsConfirmCode    POST /web-apps/confirm/{code}     Confirm a web app installation - WebAppsService
  *PostWebAppsUninstall    POST /web-apps/uninstall     Uninstall a web app - WebhookEncryptionKeysService
  *GetWebhooksEncryptionKeysId    GET /webhooks/encryption-keys/{id}     Retrieve a webhook encryption key - WebhookListenersService
  *DeleteWebhooksListenersBulk    DELETE /webhooks/listeners/bulk     Delete multiple webhook listeners - WebhookListenersService
  *DeleteWebhooksListenersId    DELETE /webhooks/listeners/{id}     Delete a webhook listener - WebhookListenersService
  *GetWebhooksListeners    GET /webhooks/listeners     List all webhook listeners - WebhookListenersService
  *GetWebhooksListenersId    GET /webhooks/listeners/{id}     Retrieve a webhook listener - WebhookListenersService
  *GetWebhooksListenersSearch    GET /webhooks/listeners/search     Search webhook listeners - WebhookListenersService
  *PatchWebhooksListenersBulk    PATCH /webhooks/listeners/bulk     Update multiple webhook listeners - WebhookListenersService
  *PatchWebhooksListenersId    PATCH /webhooks/listeners/{id}     Update a webhook listener - WebhookListenersService
  *PostWebhooksListeners    POST /webhooks/listeners     Create a webhook listener - WebhookListenersService
  *PostWebhooksListenersBulk    POST /webhooks/listeners/bulk     Create multiple webhook listeners - WebhookURLsService
  *DeleteWebhooksUrlsBulk    DELETE /webhooks/urls/bulk     Delete multiple webhook URLs - WebhookURLsService
  *DeleteWebhooksUrlsId    DELETE /webhooks/urls/{id}     Delete a webhook URL - WebhookURLsService
  *GetWebhooksUrls    GET /webhooks/urls     List all webhook URLs - WebhookURLsService
  *GetWebhooksUrlsId    GET /webhooks/urls/{id}     Retrieve a webhook URL - WebhookURLsService
  *GetWebhooksUrlsSearch    GET /webhooks/urls/search     Search webhook URLs - WebhookURLsService
  *PatchWebhooksUrlsBulk    PATCH /webhooks/urls/bulk     Update multiple webhook URLs - WebhookURLsService
  *PatchWebhooksUrlsId    PATCH /webhooks/urls/{id}     Update a webhook URL - WebhookURLsService
  *PostWebhooksUrls    POST /webhooks/urls     Create a webhook URL - WebhookURLsService
  *PostWebhooksUrlsBulk    POST /webhooks/urls/bulk     Create multiple webhook URLs
Additional API models documentation: link
Click here to see full list of models
Models:
- AbstractAccountUpdate
- AbstractApplicationUserUpdate
- AbstractCustomerActive
- AbstractCustomerAddressActive
- AbstractCustomerCommentActive
- AbstractDebtCollectionCaseUpdate
- AbstractDebtCollectorConfigurationUpdate
- AbstractHumanUserUpdate
- AbstractPaymentConnectorConfigurationUpdate
- AbstractPaymentLinkUpdate
- AbstractPaymentMethodConfigurationUpdate
- AbstractPaymentProcessorConfigurationActive
- AbstractPaymentTerminalUpdate
- AbstractRefundCommentActive
- AbstractRoleUpdate
- AbstractSingleSignOnUserUpdate
- AbstractSpaceUpdate
- AbstractSubscriberUpdate
- AbstractSubscriptionAffiliateUpdate
- AbstractSubscriptionMetricUpdate
- AbstractSubscriptionProductActive
- AbstractTokenUpdate
- AbstractTransactionCommentActive
- AbstractTransactionInvoiceCommentActive
- AbstractTransactionPending
- AbstractWebhookListenerUpdate
- AbstractWebhookUrlUpdate
- Account
- AccountCreate
- AccountListResponse
- AccountSearchResponse
- AccountState
- AccountType
- AccountUpdate
- Address
- AddressCreate
- AnalyticsQueryExecutionRequest
- AnalyticsQueryExecutionResponse
- ApplicationKeyState
- ApplicationUser
- ApplicationUserCreate
- ApplicationUserCreateWithMacKey
- ApplicationUserListResponse
- ApplicationUserSearchResponse
- ApplicationUserUpdate
- AuthenticatedCardData
- AuthenticatedCardDataCreate
- AuthenticatedCardRequest
- BankAccount
- BankAccountEnvironment
- BankAccountListResponse
- BankAccountSearchResponse
- BankAccountState
- BankAccountType
- BankTransaction
- BankTransactionFlowDirection
- BankTransactionListResponse
- BankTransactionSearchResponse
- BankTransactionSource
- BankTransactionState
- BankTransactionType
- BillingCycleModel
- BillingCycleType
- BillingDayCustomization
- CardAuthenticationResponse
- CardAuthenticationVersion
- CardCryptogram
- CardCryptogramCreate
- CardholderAuthentication
- CardholderAuthenticationCreate
- Charge
- ChargeAttempt
- ChargeAttemptEnvironment
- ChargeAttemptListResponse
- ChargeAttemptSearchResponse
- ChargeAttemptState
- ChargeBankTransaction
- ChargeBankTransactionListResponse
- ChargeBankTransactionSearchResponse
- ChargeFlow
- ChargeFlowLevel
- ChargeFlowLevelConfiguration
- ChargeFlowLevelConfigurationType
- ChargeFlowLevelListResponse
- ChargeFlowLevelPaymentLink
- ChargeFlowLevelPaymentLinkListResponse
- ChargeFlowLevelPaymentLinkSearchResponse
- ChargeFlowLevelSearchResponse
- ChargeFlowLevelState
- ChargeFlowListResponse
- ChargeFlowSearchResponse
- ChargeState
- ChargeType
- ClientPlatformInformationListResponse
- ClientPlatformInformationSearchResponse
- CompletionLineItem
- CompletionLineItemCreate
- CompletionListResponse
- CompletionSearchResponse
- Condition
- ConditionType
- ConditionTypeListResponse
- ConditionTypeSearchResponse
- ConnectorInvocation
- ConnectorInvocationStage
- CountryListResponse
- CountrySearchResponse
- CreationEntityState
- CurrencyBankAccount
- CurrencyBankAccountListResponse
- CurrencyBankAccountSearchResponse
- CurrencyListResponse
- CurrencySearchResponse
- Customer
- CustomerActive
- CustomerAddress
- CustomerAddressActive
- CustomerAddressCreate
- CustomerAddressListResponse
- CustomerAddressSearchResponse
- CustomerAddressType
- CustomerComment
- CustomerCommentActive
- CustomerCommentCreate
- CustomerCommentListResponse
- CustomerCommentSearchResponse
- CustomerCreate
- CustomerEmailAddressListResponse
- CustomerListResponse
- CustomerPostalAddress
- CustomerPostalAddressCreate
- CustomerSearchResponse
- CustomersPresence
- DataCollectionType
- DebtCollectionCase
- DebtCollectionCaseCreate
- DebtCollectionCaseDocument
- DebtCollectionCaseDocumentListResponse
- DebtCollectionCaseListResponse
- DebtCollectionCaseSearchResponse
- DebtCollectionCaseSource
- DebtCollectionCaseState
- DebtCollectionCaseUpdate
- DebtCollectionEnvironment
- DebtCollectionReceipt
- DebtCollectionReceiptSource
- DebtCollector
- DebtCollectorCondition
- DebtCollectorConditionType
- DebtCollectorConfiguration
- DebtCollectorConfigurationCreate
- DebtCollectorConfigurationListResponse
- DebtCollectorConfigurationSearchResponse
- DebtCollectorConfigurationUpdate
- DebtCollectorListResponse
- DebtCollectorSearchResponse
- DeliveryIndication
- DeliveryIndicationDecisionReason
- DeliveryIndicationListResponse
- DeliveryIndicationSearchResponse
- DeliveryIndicationState
- DisplayableDayOfWeek
- DisplayableMonth
- DocumentTemplate
- DocumentTemplateListResponse
- DocumentTemplateSearchResponse
- DocumentTemplateType
- DocumentTemplateTypeGroup
- DocumentTemplateTypeListResponse
- DocumentTemplateTypeSearchResponse
- DunningCase
- DunningCaseListResponse
- DunningCaseSearchResponse
- DunningCaseState
- DunningCondition
- DunningConditionType
- DunningFlow
- DunningFlowLevel
- DunningFlowLevelListResponse
- DunningFlowLevelProcessor
- DunningFlowLevelSearchResponse
- DunningFlowListResponse
- DunningFlowSearchResponse
- DunningFlowType
- ExpressCheckoutCreateResponse
- ExpressCheckoutSession
- ExpressCheckoutSessionCreate
- ExpressCheckoutSessionState
- ExpressCheckoutShippingOption
- ExpressCheckoutWalletType
- ExternalTransferBankTransaction
- ExternalTransferBankTransactionListResponse
- ExternalTransferBankTransactionSearchResponse
- FacadeUserFriendlyQueryStatusModel
- FailureCategory
- FailureReason
- Feature
- FeatureCategory
- Gender
- HumanUser
- HumanUserCreate
- HumanUserListResponse
- HumanUserSearchResponse
- HumanUserUpdate
- InternalTransferBankTransaction
- InternalTransferBankTransactionListResponse
- InternalTransferBankTransactionSearchResponse
- InvoiceCommentListResponse
- InvoiceCommentSearchResponse
- InvoiceListResponse
- InvoiceSearchResponse
- Label
- LabelDescriptor
- LabelDescriptorCategory
- LabelDescriptorGroup
- LabelDescriptorGroupListResponse
- LabelDescriptorGroupSearchResponse
- LabelDescriptorListResponse
- LabelDescriptorSearchResponse
- LabelDescriptorType
- LanguageListResponse
- LanguageSearchResponse
- LegalOrganizationForm
- LegalOrganizationFormListResponse
- LegalOrganizationFormSearchResponse
- LineItem
- LineItemAttribute
- LineItemAttributeCreate
- LineItemCreate
- LineItemReduction
- LineItemReductionCreate
- LineItemType
- LineItemVersionListResponse
- LineItemVersionSearchResponse
- LocalizedString
- ManualTask
- ManualTaskAction
- ManualTaskActionStyle
- ManualTaskListResponse
- ManualTaskSearchResponse
- ManualTaskState
- ManualTaskType
- MetricListResponse
- MetricSearchResponse
- MetricUsage
- MetricUsageListResponse
- MetricUsageReportListResponse
- MetricUsageReportSearchResponse
- ModelEnvironment
- OneClickPaymentMode
- PanType
- PaymentAdjustment
- PaymentAdjustmentType
- PaymentAppChargeAttemptTargetState
- PaymentAppChargeAttemptUpdate
- PaymentAppCompletionConfiguration
- PaymentAppCompletionConfigurationCreate
- PaymentAppCompletionTargetState
- PaymentAppCompletionUpdate
- PaymentAppConnector
- PaymentAppConnectorDetails
- PaymentAppConnectorDetailsCreate
- PaymentAppConnectorState
- PaymentAppProcessor
- PaymentAppProcessorDetails
- PaymentAppProcessorDetailsCreate
- PaymentAppProcessorState
- PaymentAppRefundConfiguration
- PaymentAppRefundConfigurationCreate
- PaymentAppRefundTargetState
- PaymentAppRefundUpdate
- PaymentAppVoidTargetState
- PaymentAppVoidUpdate
- PaymentConnector
- PaymentConnectorConfiguration
- PaymentConnectorConfigurationCreate
- PaymentConnectorConfigurationListResponse
- PaymentConnectorConfigurationSearchResponse
- PaymentConnectorConfigurationUpdate
- PaymentConnectorFeature
- PaymentConnectorListResponse
- PaymentConnectorSearchResponse
- PaymentContract
- PaymentContractState
- PaymentContractType
- PaymentInformationHash
- PaymentInformationHashType
- PaymentLink
- PaymentLinkActive
- PaymentLinkAddressHandlingMode
- PaymentLinkCreate
- PaymentLinkListResponse
- PaymentLinkProtectionMode
- PaymentLinkSearchResponse
- PaymentLinkUpdate
- PaymentMethod
- PaymentMethodBrand
- PaymentMethodBrandListResponse
- PaymentMethodBrandSearchResponse
- PaymentMethodConfiguration
- PaymentMethodConfigurationActive
- PaymentMethodConfigurationCreate
- PaymentMethodConfigurationListResponse
- PaymentMethodConfigurationSearchResponse
- PaymentMethodConfigurationUpdate
- PaymentMethodListResponse
- PaymentMethodSearchResponse
- PaymentPrimaryRiskTaker
- PaymentProcessor
- PaymentProcessorConfiguration
- PaymentProcessorConfigurationActive
- PaymentProcessorConfigurationCreate
- PaymentProcessorConfigurationListResponse
- PaymentProcessorConfigurationSearchResponse
- PaymentProcessorListResponse
- PaymentProcessorSearchResponse
- PaymentTerminal
- PaymentTerminalAddress
- PaymentTerminalConfiguration
- PaymentTerminalConfigurationState
- PaymentTerminalConfigurationVersion
- PaymentTerminalConfigurationVersionState
- PaymentTerminalCreate
- PaymentTerminalDccTransactionSum
- PaymentTerminalLocation
- PaymentTerminalLocationState
- PaymentTerminalLocationVersion
- PaymentTerminalLocationVersionState
- PaymentTerminalPreparing
- PaymentTerminalReceiptType
- PaymentTerminalState
- PaymentTerminalTransactionSum
- PaymentTerminalTransactionSummary
- PaymentTerminalTransactionSummaryReference
- PaymentTerminalType
- PaymentTerminalUpdate
- Permission
- PermissionListResponse
- PermissionSearchResponse
- PersistableCurrencyAmount
- PersistableCurrencyAmountUpdate
- ProductComponentGroupListResponse
- ProductComponentGroupSearchResponse
- ProductComponentListResponse
- ProductComponentSearchResponse
- ProductFeeType
- ProductListResponse
- ProductMeteredFee
- ProductMeteredFeeListResponse
- ProductMeteredFeeSearchResponse
- ProductMeteredFeeTierListResponse
- ProductMeteredFeeTierSearchResponse
- ProductMeteredFeeUpdate
- ProductMeteredTierFee
- ProductMeteredTierFeeUpdate
- ProductMeteredTierPricing
- ProductPeriodFee
- ProductPeriodFeeListResponse
- ProductPeriodFeeSearchResponse
- ProductPeriodFeeUpdate
- ProductRetirementListResponse
- ProductRetirementSearchResponse
- ProductSearchResponse
- ProductSetupFee
- ProductSetupFeeListResponse
- ProductSetupFeeSearchResponse
- ProductSetupFeeUpdate
- ProductVersionListResponse
- ProductVersionRetirementListResponse
- ProductVersionRetirementSearchResponse
- ProductVersionSearchResponse
- RecurringIndicator
- Refund
- RefundBankTransaction
- RefundBankTransactionListResponse
- RefundBankTransactionSearchResponse
- RefundComment
- RefundCommentActive
- RefundCommentCreate
- RefundCommentListResponse
- RefundCommentSearchResponse
- RefundCreate
- RefundListResponse
- RefundRecoveryBankTransaction
- RefundRecoveryBankTransactionListResponse
- RefundRecoveryBankTransactionSearchResponse
- RefundSearchResponse
- RefundState
- RefundType
- RenderedDocument
- RenderedTerminalReceipt
- RenderedTerminalReceiptListResponse
- RenderedTerminalTransactionSummary
- RestAddressFormat
- RestAddressFormatField
- RestApiBulkOperationResult
- RestApiErrorResponse
- RestApplicationUserMacKey
- RestApplicationUserMacKeyCreated
- RestCountry
- RestCountryState
- RestCurrency
- RestCustomerEmailAddress
- RestLanguage
- ResultPortionModel
- Role
- RoleCreate
- RoleListResponse
- RoleSearchResponse
- RoleState
- RoleUpdate
- SalesChannel
- SalesChannelListResponse
- SalesChannelSearchResponse
- Scope
- ScopeSingleSignOnProvider
- SingleSignOnUser
- SingleSignOnUserCreate
- SingleSignOnUserListResponse
- SingleSignOnUserSearchResponse
- SingleSignOnUserUpdate
- SortingOrder
- Space
- SpaceAddress
- SpaceAddressCreate
- SpaceCreate
- SpaceListResponse
- SpaceSearchResponse
- SpaceUpdate
- SpaceView
- StaticValue
- StaticValueListResponse
- StaticValueSearchResponse
- SubmittedAnalyticsQueryExecution
- Subscriber
- SubscriberActive
- SubscriberCreate
- SubscriberListResponse
- SubscriberSearchResponse
- SubscriberUpdate
- Subscription
- SubscriptionAffiliate
- SubscriptionAffiliateCreate
- SubscriptionAffiliateDeleted
- SubscriptionAffiliateDeleting
- SubscriptionAffiliateInactive
- SubscriptionAffiliateListResponse
- SubscriptionAffiliateSearchResponse
- SubscriptionAffiliateUpdate
- SubscriptionCharge
- SubscriptionChargeCreate
- SubscriptionChargeListResponse
- SubscriptionChargeProcessingType
- SubscriptionChargeSearchResponse
- SubscriptionChargeState
- SubscriptionChargeType
- SubscriptionComponentConfiguration
- SubscriptionComponentReferenceConfiguration
- SubscriptionCreateRequest
- SubscriptionInitializeSubscriberPresentRequest
- SubscriptionLedgerEntry
- SubscriptionLedgerEntryCreate
- SubscriptionLedgerEntryListResponse
- SubscriptionLedgerEntrySearchResponse
- SubscriptionLedgerEntryState
- SubscriptionListResponse
- SubscriptionMetric
- SubscriptionMetricActive
- SubscriptionMetricCreate
- SubscriptionMetricType
- SubscriptionMetricUpdate
- SubscriptionMetricUsageReport
- SubscriptionMetricUsageReportCreate
- SubscriptionPending
- SubscriptionPeriodBill
- SubscriptionPeriodBillListResponse
- SubscriptionPeriodBillSearchResponse
- SubscriptionPeriodBillState
- SubscriptionProduct
- SubscriptionProductActive
- SubscriptionProductComponent
- SubscriptionProductComponentGroup
- SubscriptionProductComponentGroupUpdate
- SubscriptionProductComponentReference
- SubscriptionProductComponentReferenceState
- SubscriptionProductComponentUpdate
- SubscriptionProductCreate
- SubscriptionProductRetirement
- SubscriptionProductRetirementRequest
- SubscriptionProductState
- SubscriptionProductVersion
- SubscriptionProductVersionPending
- SubscriptionProductVersionRetirement
- SubscriptionProductVersionRetirementRequest
- SubscriptionProductVersionState
- SubscriptionSearchResponse
- SubscriptionState
- SubscriptionSuspension
- SubscriptionSuspensionAction
- SubscriptionSuspensionReason
- SubscriptionSuspensionState
- SubscriptionUpdate
- SubscriptionUpdateRequest
- SubscriptionVersion
- SubscriptionVersionListResponse
- SubscriptionVersionSearchResponse
- SubscriptionVersionState
- SuspensionCreationRequest
- SuspensionListResponse
- SuspensionSearchResponse
- Tax
- TaxCalculation
- TaxClass
- TaxCreate
- TenantDatabase
- TerminalListResponse
- TerminalReceiptFormat
- TerminalSearchResponse
- TerminalTransactionSummaryListResponse
- TerminalTransactionSummarySearchResponse
- Token
- TokenCreate
- TokenListResponse
- TokenSearchResponse
- TokenUpdate
- TokenVersion
- TokenVersionListResponse
- TokenVersionRetryStrategy
- TokenVersionSearchResponse
- TokenVersionState
- TokenVersionType
- TokenizationMode
- TokenizedCardData
- TokenizedCardDataCreate
- TokenizedCardRequest
- Transaction
- TransactionClientPlatformInformation
- TransactionComment
- TransactionCommentActive
- TransactionCommentCreate
- TransactionCommentListResponse
- TransactionCommentSearchResponse
- TransactionCompletion
- TransactionCompletionBehavior
- TransactionCompletionDetails
- TransactionCompletionMode
- TransactionCompletionState
- TransactionCreate
- TransactionEnvironmentSelectionStrategy
- TransactionGroup
- TransactionGroupState
- TransactionInvoice
- TransactionInvoiceComment
- TransactionInvoiceCommentActive
- TransactionInvoiceCommentCreate
- TransactionInvoiceReplacement
- TransactionInvoiceState
- TransactionLineItemVersion
- TransactionLineItemVersionCreate
- TransactionLineItemVersionState
- TransactionListResponse
- TransactionPending
- TransactionSearchResponse
- TransactionState
- TransactionUserInterfaceType
- TransactionVoid
- TransactionVoidListResponse
- TransactionVoidMode
- TransactionVoidSearchResponse
- TransactionVoidState
- TwoFactorAuthenticationType
- User
- UserAccountRole
- UserAccountRoleListResponse
- UserSpaceRole
- UserSpaceRoleListResponse
- UserType
- WalletType
- WebAppConfirmationResponse
- WebhookIdentity
- WebhookListener
- WebhookListenerCreate
- WebhookListenerEntity
- WebhookListenerListResponse
- WebhookListenerSearchResponse
- WebhookListenerUpdate
- WebhookURLListResponse
- WebhookURLSearchResponse
- WebhookUrl
- WebhookUrlCreate
- WebhookUrlUpdate
While working with webhooks, the WalleeSdkException may throw various error codes to help identify and troubleshoot issues.
| Exception | Description |
|---|---|
| ApiExceptionErrorCodes | Lists the possible HTTP error codes an ApiException can generate |
| SdkExceptionErrorCodes | Lists the possible error codes a WalleeSdkException can generate |
try
{
// Operation which can throw ApiException
}
catch (ApiException e)
{
if (ApiExceptionErrorCodes.CONFLICT.Matches(ex))
{
// Retry
}
else
{
// Other handling
}
}It's recommended to create an instance of Configuration per thread in a multithreaded environment to avoid any potential issues.
- Wallee Ecosystem Team
Automatically generated by the OpenAPI Generator
Generator version: 7.13.0
Please see the license file for more information.