UNPKG

wallee

Version:
1,018 lines (1,001 loc) 162 kB
# Wallee TypeScript SDK - API version: The Wallee TypeScript SDK is used to interact with Wallee's REST API. ## Requirements Node.js 18 or later ## Installation > **_NOTE:_** Highly recommended to use TypeScript SDK in server-side applications.<br> > Use front-end frameworks such as Angular at your own risk, as the application might be incompatible or cause a potential > threat that the application user information (such as secret keys) might be revealed publicly in the browser. ## NPM install (recommended) ```shell npm install wallee ``` ## Getting Started Please follow the [installation](#installation) instructions, then run the following example: ```typescript export const HttpBearerAuthConfig = new HttpBearerAuth( 512, "FKrO76r5VwJtBrqZawBspljbBNOxp5veKQQkOnZxucQ="); export const DefaultConfiguration: Configuration = DefaultConfig; DefaultConfiguration.httpBearerAuth = HttpBearerAuthConfig; const transactionsService = new TransactionsService(DefaultConfiguration); const spaceId = 405; const transactionId = 367155626; const expandSet = new Set(['group']); (async () => { try { const transaction = await transactionsService.getPaymentTransactionsId( { id: transactionId, space: spaceId, expand: expandSet }); console.log('Transaction:'); console.log(transaction); } catch (e) { console.error('Exception when calling api: ', e); } })() ``` ## Documentation for API Endpoints Additional Api services documentation: [*link*](https://app-wallee.com/en-us/doc/api/web-service#_services)<br> Web Api client: [*link*](https://app-wallee.com//api/client)<br> <details> <summary>Click here to see full list of services</summary> <br>All URIs are relative to https://app-wallee.com/<br> (click on method name to see web doc)<br> <p><strong>API Services:</strong></p> - <strong>AccountsService</strong><br> &nbsp;&nbsp;* <code>deleteAccountsId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>DELETE</strong> /accounts/{id} &nbsp;&nbsp;&nbsp;&nbsp;Delete an account <br><br> - <strong>AccountsService</strong><br> &nbsp;&nbsp;* <code>getAccounts</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /accounts &nbsp;&nbsp;&nbsp;&nbsp;List all accounts <br><br> - <strong>AccountsService</strong><br> &nbsp;&nbsp;* <code>getAccountsId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /accounts/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve an account <br><br> - <strong>AccountsService</strong><br> &nbsp;&nbsp;* <code>getAccountsSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /accounts/search &nbsp;&nbsp;&nbsp;&nbsp;Search accounts <br><br> - <strong>AccountsService</strong><br> &nbsp;&nbsp;* <code>patchAccountsId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>PATCH</strong> /accounts/{id} &nbsp;&nbsp;&nbsp;&nbsp;Update an account <br><br> - <strong>AccountsService</strong><br> &nbsp;&nbsp;* <code>postAccounts</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /accounts &nbsp;&nbsp;&nbsp;&nbsp;Create an account <br><br> - <strong>AccountsService</strong><br> &nbsp;&nbsp;* <code>postAccountsIdActivate</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /accounts/{id}/activate &nbsp;&nbsp;&nbsp;&nbsp;Activate an account <br><br> - <strong>AccountsService</strong><br> &nbsp;&nbsp;* <code>postAccountsIdDeactivate</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /accounts/{id}/deactivate &nbsp;&nbsp;&nbsp;&nbsp;Deactivate an account <br><br> - <strong>AnalyticsQueriesService</strong><br> &nbsp;&nbsp;* <code>deleteAnalyticsQueriesQueryExternalIdQueryExternalId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>DELETE</strong> /analytics/queries/queryExternalId/{queryExternalId} &nbsp;&nbsp;&nbsp;&nbsp;Cancel a query execution, identifying it by its external id. <br><br> - <strong>AnalyticsQueriesService</strong><br> &nbsp;&nbsp;* <code>deleteAnalyticsQueriesQueryTokenQueryToken</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>DELETE</strong> /analytics/queries/queryToken/{queryToken} &nbsp;&nbsp;&nbsp;&nbsp;Cancel a query execution, identifying it by its query token. <br><br> - <strong>AnalyticsQueriesService</strong><br> &nbsp;&nbsp;* <code>getAnalyticsQueries</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /analytics/queries &nbsp;&nbsp;&nbsp;&nbsp;Get portion of query executions for account <br><br> - <strong>AnalyticsQueriesService</strong><br> &nbsp;&nbsp;* <code>getAnalyticsQueriesQueryExternalIdQueryExternalId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /analytics/queries/queryExternalId/{queryExternalId} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a query execution information by its external id <br><br> - <strong>AnalyticsQueriesService</strong><br> &nbsp;&nbsp;* <code>getAnalyticsQueriesQueryExternalIdQueryExternalIdResult</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /analytics/queries/queryExternalId/{queryExternalId}/result &nbsp;&nbsp;&nbsp;&nbsp;Generate a temporary URL to download the query result. It retrieves the query by its external id <br><br> - <strong>AnalyticsQueriesService</strong><br> &nbsp;&nbsp;* <code>getAnalyticsQueriesQueryTokenQueryToken</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /analytics/queries/queryToken/{queryToken} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a query execution information by its query token <br><br> - <strong>AnalyticsQueriesService</strong><br> &nbsp;&nbsp;* <code>getAnalyticsQueriesQueryTokenQueryTokenResult</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /analytics/queries/queryToken/{queryToken}/result &nbsp;&nbsp;&nbsp;&nbsp;Generate a temporary URL to download the query result. It retrieves the query by its query token <br><br> - <strong>AnalyticsQueriesService</strong><br> &nbsp;&nbsp;* <code>postAnalyticsQueriesSubmit</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /analytics/queries/submit &nbsp;&nbsp;&nbsp;&nbsp;Submit a query execution <br><br> - <strong>ApplicationUsersService</strong><br> &nbsp;&nbsp;* <code>deleteApplicationUsersId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>DELETE</strong> /application-users/{id} &nbsp;&nbsp;&nbsp;&nbsp;Delete an application user <br><br> - <strong>ApplicationUsersService</strong><br> &nbsp;&nbsp;* <code>deleteApplicationUsersUserIdKeysId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>DELETE</strong> /application-users/{userId}/keys/{id} &nbsp;&nbsp;&nbsp;&nbsp;Deactivate an authentication key <br><br> - <strong>ApplicationUsersService</strong><br> &nbsp;&nbsp;* <code>getApplicationUsers</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /application-users &nbsp;&nbsp;&nbsp;&nbsp;List all application users <br><br> - <strong>ApplicationUsersService</strong><br> &nbsp;&nbsp;* <code>getApplicationUsersId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /application-users/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve an application user <br><br> - <strong>ApplicationUsersService</strong><br> &nbsp;&nbsp;* <code>getApplicationUsersSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /application-users/search &nbsp;&nbsp;&nbsp;&nbsp;Search application users <br><br> - <strong>ApplicationUsersService</strong><br> &nbsp;&nbsp;* <code>getApplicationUsersUserIdKeys</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /application-users/{userId}/keys &nbsp;&nbsp;&nbsp;&nbsp;List a user\&#39;s authentication keys <br><br> - <strong>ApplicationUsersService</strong><br> &nbsp;&nbsp;* <code>patchApplicationUsersId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>PATCH</strong> /application-users/{id} &nbsp;&nbsp;&nbsp;&nbsp;Update an application user <br><br> - <strong>ApplicationUsersService</strong><br> &nbsp;&nbsp;* <code>postApplicationUsers</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /application-users &nbsp;&nbsp;&nbsp;&nbsp;Create an application user <br><br> - <strong>ApplicationUsersService</strong><br> &nbsp;&nbsp;* <code>postApplicationUsersUserIdKeys</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /application-users/{userId}/keys &nbsp;&nbsp;&nbsp;&nbsp;Generate a new authentication key <br><br> - <strong>ApplicationUsersRolesService</strong><br> &nbsp;&nbsp;* <code>deleteApplicationUsersUserIdAccountRoles</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>DELETE</strong> /application-users/{userId}/account-roles &nbsp;&nbsp;&nbsp;&nbsp;Unassign a role from an application user for an account <br><br> - <strong>ApplicationUsersRolesService</strong><br> &nbsp;&nbsp;* <code>deleteApplicationUsersUserIdSpaceRoles</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>DELETE</strong> /application-users/{userId}/space-roles &nbsp;&nbsp;&nbsp;&nbsp;Unassign a role from an application user for a space <br><br> - <strong>ApplicationUsersRolesService</strong><br> &nbsp;&nbsp;* <code>getApplicationUsersUserIdAccountRoles</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /application-users/{userId}/account-roles &nbsp;&nbsp;&nbsp;&nbsp;List all roles of an application user for an account <br><br> - <strong>ApplicationUsersRolesService</strong><br> &nbsp;&nbsp;* <code>getApplicationUsersUserIdSpaceRoles</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /application-users/{userId}/space-roles &nbsp;&nbsp;&nbsp;&nbsp;List all roles of an application user for a space <br><br> - <strong>ApplicationUsersRolesService</strong><br> &nbsp;&nbsp;* <code>postApplicationUsersUserIdAccountRoles</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /application-users/{userId}/account-roles &nbsp;&nbsp;&nbsp;&nbsp;Assign a role to an application user for an account <br><br> - <strong>ApplicationUsersRolesService</strong><br> &nbsp;&nbsp;* <code>postApplicationUsersUserIdSpaceRoles</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /application-users/{userId}/space-roles &nbsp;&nbsp;&nbsp;&nbsp;Assign a role to an application user for a space <br><br> - <strong>BankAccountsService</strong><br> &nbsp;&nbsp;* <code>getPaymentBankAccounts</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/bank-accounts &nbsp;&nbsp;&nbsp;&nbsp;List all bank accounts <br><br> - <strong>BankAccountsService</strong><br> &nbsp;&nbsp;* <code>getPaymentBankAccountsId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/bank-accounts/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a bank account <br><br> - <strong>BankAccountsService</strong><br> &nbsp;&nbsp;* <code>getPaymentBankAccountsSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/bank-accounts/search &nbsp;&nbsp;&nbsp;&nbsp;Search bank accounts <br><br> - <strong>BankTransactionsService</strong><br> &nbsp;&nbsp;* <code>getPaymentBankTransactions</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/bank-transactions &nbsp;&nbsp;&nbsp;&nbsp;List all bank transactions <br><br> - <strong>BankTransactionsService</strong><br> &nbsp;&nbsp;* <code>getPaymentBankTransactionsId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/bank-transactions/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a bank transaction <br><br> - <strong>BankTransactionsService</strong><br> &nbsp;&nbsp;* <code>getPaymentBankTransactionsSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/bank-transactions/search &nbsp;&nbsp;&nbsp;&nbsp;Search bank transactions <br><br> - <strong>BogusExpressCheckoutService</strong><br> &nbsp;&nbsp;* <code>postBogusExpressCheckoutOnApprove</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /bogus-express-checkout/on-approve &nbsp;&nbsp;&nbsp;&nbsp;Approve express checkout wallet payment <br><br> - <strong>ChargeAttemptsService</strong><br> &nbsp;&nbsp;* <code>getPaymentChargeAttempts</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/charge-attempts &nbsp;&nbsp;&nbsp;&nbsp;List all charge attempts <br><br> - <strong>ChargeAttemptsService</strong><br> &nbsp;&nbsp;* <code>getPaymentChargeAttemptsId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/charge-attempts/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a charge attempt <br><br> - <strong>ChargeAttemptsService</strong><br> &nbsp;&nbsp;* <code>getPaymentChargeAttemptsSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/charge-attempts/search &nbsp;&nbsp;&nbsp;&nbsp;Search charge attempts <br><br> - <strong>ChargeBankTransactionsService</strong><br> &nbsp;&nbsp;* <code>getPaymentBankTransactionsCharges</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/bank-transactions/charges &nbsp;&nbsp;&nbsp;&nbsp;List all charge bank transactions <br><br> - <strong>ChargeBankTransactionsService</strong><br> &nbsp;&nbsp;* <code>getPaymentBankTransactionsChargesId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/bank-transactions/charges/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a charge bank transaction <br><br> - <strong>ChargeBankTransactionsService</strong><br> &nbsp;&nbsp;* <code>getPaymentBankTransactionsChargesSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/bank-transactions/charges/search &nbsp;&nbsp;&nbsp;&nbsp;Search charge bank transactions <br><br> - <strong>ChargeFlowLevelsService</strong><br> &nbsp;&nbsp;* <code>getPaymentChargeFlowsLevels</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/charge-flows/levels &nbsp;&nbsp;&nbsp;&nbsp;List all charge flow levels <br><br> - <strong>ChargeFlowLevelsService</strong><br> &nbsp;&nbsp;* <code>getPaymentChargeFlowsLevelsId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/charge-flows/levels/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a charge flow level <br><br> - <strong>ChargeFlowLevelsService</strong><br> &nbsp;&nbsp;* <code>getPaymentChargeFlowsLevelsSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/charge-flows/levels/search &nbsp;&nbsp;&nbsp;&nbsp;Search charge flow levels <br><br> - <strong>ChargeFlowLevelsService</strong><br> &nbsp;&nbsp;* <code>postPaymentChargeFlowsLevelsIdSendMessage</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /payment/charge-flows/levels/{id}/send-message &nbsp;&nbsp;&nbsp;&nbsp;Send a payment link <br><br> - <strong>ChargeFlowsService</strong><br> &nbsp;&nbsp;* <code>getPaymentChargeFlows</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/charge-flows &nbsp;&nbsp;&nbsp;&nbsp;List all charge flows <br><br> - <strong>ChargeFlowsService</strong><br> &nbsp;&nbsp;* <code>getPaymentChargeFlowsId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/charge-flows/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a charge flow <br><br> - <strong>ChargeFlowsService</strong><br> &nbsp;&nbsp;* <code>getPaymentChargeFlowsSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/charge-flows/search &nbsp;&nbsp;&nbsp;&nbsp;Search charge flows <br><br> - <strong>ChargeFlowsLevelPaymentLinksService</strong><br> &nbsp;&nbsp;* <code>getPaymentChargeFlowsLevelsPaymentLinks</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/charge-flows/levels/payment-links &nbsp;&nbsp;&nbsp;&nbsp;List all charge flow payment links <br><br> - <strong>ChargeFlowsLevelPaymentLinksService</strong><br> &nbsp;&nbsp;* <code>getPaymentChargeFlowsLevelsPaymentLinksId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/charge-flows/levels/payment-links/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a charge flow payment link <br><br> - <strong>ChargeFlowsLevelPaymentLinksService</strong><br> &nbsp;&nbsp;* <code>getPaymentChargeFlowsLevelsPaymentLinksSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/charge-flows/levels/payment-links/search &nbsp;&nbsp;&nbsp;&nbsp;Search charge flow payment links <br><br> - <strong>ConditionTypesService</strong><br> &nbsp;&nbsp;* <code>getPaymentConditionTypes</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/condition-types &nbsp;&nbsp;&nbsp;&nbsp;List all condition types. <br><br> - <strong>ConditionTypesService</strong><br> &nbsp;&nbsp;* <code>getPaymentConditionTypesId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/condition-types/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a condition type. <br><br> - <strong>ConditionTypesService</strong><br> &nbsp;&nbsp;* <code>getPaymentConditionTypesSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/condition-types/search &nbsp;&nbsp;&nbsp;&nbsp;Search condition types. <br><br> - <strong>ConsumedResourcesService</strong><br> &nbsp;&nbsp;* <code>getSpacesConsumedResources</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /spaces/consumed-resources &nbsp;&nbsp;&nbsp;&nbsp;List consumed resources <br><br> - <strong>CountriesService</strong><br> &nbsp;&nbsp;* <code>getCountries</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /countries &nbsp;&nbsp;&nbsp;&nbsp;List all countries <br><br> - <strong>CountriesService</strong><br> &nbsp;&nbsp;* <code>getCountriesCode</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /countries/{code} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a country <br><br> - <strong>CountriesService</strong><br> &nbsp;&nbsp;* <code>getCountriesCountryCodeStates</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /countries/{countryCode}/states &nbsp;&nbsp;&nbsp;&nbsp;List all states for a country <br><br> - <strong>CountriesService</strong><br> &nbsp;&nbsp;* <code>getCountriesSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /countries/search &nbsp;&nbsp;&nbsp;&nbsp;Search countries <br><br> - <strong>CountriesService</strong><br> &nbsp;&nbsp;* <code>getCountriesStates</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /countries/states &nbsp;&nbsp;&nbsp;&nbsp;List all country states <br><br> - <strong>CountriesService</strong><br> &nbsp;&nbsp;* <code>getCountriesStatesId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /countries/states/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a country state <br><br> - <strong>CurrenciesService</strong><br> &nbsp;&nbsp;* <code>getCurrencies</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /currencies &nbsp;&nbsp;&nbsp;&nbsp;List all currencies <br><br> - <strong>CurrenciesService</strong><br> &nbsp;&nbsp;* <code>getCurrenciesCode</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /currencies/{code} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a currency <br><br> - <strong>CurrenciesService</strong><br> &nbsp;&nbsp;* <code>getCurrenciesSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /currencies/search &nbsp;&nbsp;&nbsp;&nbsp;Search currencies <br><br> - <strong>CurrencyBankAccountsService</strong><br> &nbsp;&nbsp;* <code>getPaymentCurrencyBankAccounts</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/currency-bank-accounts &nbsp;&nbsp;&nbsp;&nbsp;List all currency bank accounts <br><br> - <strong>CurrencyBankAccountsService</strong><br> &nbsp;&nbsp;* <code>getPaymentCurrencyBankAccountsId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/currency-bank-accounts/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a currency bank account <br><br> - <strong>CurrencyBankAccountsService</strong><br> &nbsp;&nbsp;* <code>getPaymentCurrencyBankAccountsSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/currency-bank-accounts/search &nbsp;&nbsp;&nbsp;&nbsp;Search currency bank accounts <br><br> - <strong>CustomerAddressesService</strong><br> &nbsp;&nbsp;* <code>deleteCustomersCustomerIdAddressesId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>DELETE</strong> /customers/{customerId}/addresses/{id} &nbsp;&nbsp;&nbsp;&nbsp;Delete a customer address <br><br> - <strong>CustomerAddressesService</strong><br> &nbsp;&nbsp;* <code>getCustomersCustomerIdAddresses</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /customers/{customerId}/addresses &nbsp;&nbsp;&nbsp;&nbsp;List all customer addresses <br><br> - <strong>CustomerAddressesService</strong><br> &nbsp;&nbsp;* <code>getCustomersCustomerIdAddressesId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /customers/{customerId}/addresses/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a customer address <br><br> - <strong>CustomerAddressesService</strong><br> &nbsp;&nbsp;* <code>getCustomersCustomerIdAddressesSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /customers/{customerId}/addresses/search &nbsp;&nbsp;&nbsp;&nbsp;Search customer addresses <br><br> - <strong>CustomerAddressesService</strong><br> &nbsp;&nbsp;* <code>patchCustomersCustomerIdAddressesId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>PATCH</strong> /customers/{customerId}/addresses/{id} &nbsp;&nbsp;&nbsp;&nbsp;Update a customer address <br><br> - <strong>CustomerAddressesService</strong><br> &nbsp;&nbsp;* <code>postCustomersCustomerIdAddresses</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /customers/{customerId}/addresses &nbsp;&nbsp;&nbsp;&nbsp;Create a customer address <br><br> - <strong>CustomerAddressesService</strong><br> &nbsp;&nbsp;* <code>postCustomersCustomerIdAddressesIdDefault</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /customers/{customerId}/addresses/{id}/default &nbsp;&nbsp;&nbsp;&nbsp;Set the default address for a customer <br><br> - <strong>CustomerCommentsService</strong><br> &nbsp;&nbsp;* <code>deleteCustomersCustomerIdCommentsId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>DELETE</strong> /customers/{customerId}/comments/{id} &nbsp;&nbsp;&nbsp;&nbsp;Delete a customer comment <br><br> - <strong>CustomerCommentsService</strong><br> &nbsp;&nbsp;* <code>getCustomersCustomerIdComments</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /customers/{customerId}/comments &nbsp;&nbsp;&nbsp;&nbsp;List all customer comments <br><br> - <strong>CustomerCommentsService</strong><br> &nbsp;&nbsp;* <code>getCustomersCustomerIdCommentsId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /customers/{customerId}/comments/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a customer comment <br><br> - <strong>CustomerCommentsService</strong><br> &nbsp;&nbsp;* <code>getCustomersCustomerIdCommentsSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /customers/{customerId}/comments/search &nbsp;&nbsp;&nbsp;&nbsp;Search customer comments <br><br> - <strong>CustomerCommentsService</strong><br> &nbsp;&nbsp;* <code>patchCustomersCustomerIdCommentsId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>PATCH</strong> /customers/{customerId}/comments/{id} &nbsp;&nbsp;&nbsp;&nbsp;Update a customer comment <br><br> - <strong>CustomerCommentsService</strong><br> &nbsp;&nbsp;* <code>postCustomersCustomerIdComments</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /customers/{customerId}/comments &nbsp;&nbsp;&nbsp;&nbsp;Create a customer comment <br><br> - <strong>CustomerCommentsService</strong><br> &nbsp;&nbsp;* <code>postCustomersCustomerIdCommentsIdPin</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /customers/{customerId}/comments/{id}/pin &nbsp;&nbsp;&nbsp;&nbsp;Pin a comment to the top <br><br> - <strong>CustomerCommentsService</strong><br> &nbsp;&nbsp;* <code>postCustomersCustomerIdCommentsIdUnpin</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /customers/{customerId}/comments/{id}/unpin &nbsp;&nbsp;&nbsp;&nbsp;Remove a pinned comment from the top <br><br> - <strong>CustomersService</strong><br> &nbsp;&nbsp;* <code>deleteCustomersBulk</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>DELETE</strong> /customers/bulk &nbsp;&nbsp;&nbsp;&nbsp;Delete multiple customers <br><br> - <strong>CustomersService</strong><br> &nbsp;&nbsp;* <code>deleteCustomersId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>DELETE</strong> /customers/{id} &nbsp;&nbsp;&nbsp;&nbsp;Delete a customer <br><br> - <strong>CustomersService</strong><br> &nbsp;&nbsp;* <code>getCustomers</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /customers &nbsp;&nbsp;&nbsp;&nbsp;List all customers <br><br> - <strong>CustomersService</strong><br> &nbsp;&nbsp;* <code>getCustomersId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /customers/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a customer <br><br> - <strong>CustomersService</strong><br> &nbsp;&nbsp;* <code>getCustomersIdEmailAddresses</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /customers/{id}/email-addresses &nbsp;&nbsp;&nbsp;&nbsp;List a customer\&#39;s email addresses <br><br> - <strong>CustomersService</strong><br> &nbsp;&nbsp;* <code>getCustomersSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /customers/search &nbsp;&nbsp;&nbsp;&nbsp;Search customers <br><br> - <strong>CustomersService</strong><br> &nbsp;&nbsp;* <code>patchCustomersBulk</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>PATCH</strong> /customers/bulk &nbsp;&nbsp;&nbsp;&nbsp;Update multiple customers <br><br> - <strong>CustomersService</strong><br> &nbsp;&nbsp;* <code>patchCustomersId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>PATCH</strong> /customers/{id} &nbsp;&nbsp;&nbsp;&nbsp;Update a customer <br><br> - <strong>CustomersService</strong><br> &nbsp;&nbsp;* <code>postCustomers</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /customers &nbsp;&nbsp;&nbsp;&nbsp;Create a customer <br><br> - <strong>CustomersService</strong><br> &nbsp;&nbsp;* <code>postCustomersBulk</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /customers/bulk &nbsp;&nbsp;&nbsp;&nbsp;Create multiple customers <br><br> - <strong>CustomersService</strong><br> &nbsp;&nbsp;* <code>postCustomersIdMergeOther</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /customers/{id}/merge/{other} &nbsp;&nbsp;&nbsp;&nbsp;Merge two customers <br><br> - <strong>DebtCollectionCasesService</strong><br> &nbsp;&nbsp;* <code>deleteDebtCollectionCasesId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>DELETE</strong> /debt-collection/cases/{id} &nbsp;&nbsp;&nbsp;&nbsp;Delete a debt collection case <br><br> - <strong>DebtCollectionCasesService</strong><br> &nbsp;&nbsp;* <code>getDebtCollectionCases</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /debt-collection/cases &nbsp;&nbsp;&nbsp;&nbsp;List all debt collection cases <br><br> - <strong>DebtCollectionCasesService</strong><br> &nbsp;&nbsp;* <code>getDebtCollectionCasesId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /debt-collection/cases/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a debt collection case <br><br> - <strong>DebtCollectionCasesService</strong><br> &nbsp;&nbsp;* <code>getDebtCollectionCasesIdDocuments</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /debt-collection/cases/{id}/documents &nbsp;&nbsp;&nbsp;&nbsp;Retrieve all documents of a debt collection case <br><br> - <strong>DebtCollectionCasesService</strong><br> &nbsp;&nbsp;* <code>getDebtCollectionCasesSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /debt-collection/cases/search &nbsp;&nbsp;&nbsp;&nbsp;Search debt collection cases <br><br> - <strong>DebtCollectionCasesService</strong><br> &nbsp;&nbsp;* <code>patchDebtCollectionCasesId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>PATCH</strong> /debt-collection/cases/{id} &nbsp;&nbsp;&nbsp;&nbsp;Update a debt collection case <br><br> - <strong>DebtCollectionCasesService</strong><br> &nbsp;&nbsp;* <code>postDebtCollectionCases</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /debt-collection/cases &nbsp;&nbsp;&nbsp;&nbsp;Create a debt collection case <br><br> - <strong>DebtCollectionCasesService</strong><br> &nbsp;&nbsp;* <code>postDebtCollectionCasesIdClose</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /debt-collection/cases/{id}/close &nbsp;&nbsp;&nbsp;&nbsp;Close a debt collection case <br><br> - <strong>DebtCollectionCasesService</strong><br> &nbsp;&nbsp;* <code>postDebtCollectionCasesIdDocuments</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /debt-collection/cases/{id}/documents &nbsp;&nbsp;&nbsp;&nbsp;Attach a document to a debt collection case <br><br> - <strong>DebtCollectionCasesService</strong><br> &nbsp;&nbsp;* <code>postDebtCollectionCasesIdMarkPrepared</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /debt-collection/cases/{id}/mark-prepared &nbsp;&nbsp;&nbsp;&nbsp;Mark a debt collection case as prepared <br><br> - <strong>DebtCollectionCasesService</strong><br> &nbsp;&nbsp;* <code>postDebtCollectionCasesIdMarkReviewed</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /debt-collection/cases/{id}/mark-reviewed &nbsp;&nbsp;&nbsp;&nbsp;Mark a debt collection case as reviewed <br><br> - <strong>DebtCollectionCasesService</strong><br> &nbsp;&nbsp;* <code>postDebtCollectionCasesIdPaymentReceipts</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /debt-collection/cases/{id}/payment-receipts &nbsp;&nbsp;&nbsp;&nbsp;Create a payment receipt for a debt collection case <br><br> - <strong>DebtCollectorConfigurationsService</strong><br> &nbsp;&nbsp;* <code>deleteDebtCollectionConfigurationsId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>DELETE</strong> /debt-collection/configurations/{id} &nbsp;&nbsp;&nbsp;&nbsp;Delete a debt collector configuration <br><br> - <strong>DebtCollectorConfigurationsService</strong><br> &nbsp;&nbsp;* <code>getDebtCollectionConfigurations</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /debt-collection/configurations &nbsp;&nbsp;&nbsp;&nbsp;List all debt collector configurations <br><br> - <strong>DebtCollectorConfigurationsService</strong><br> &nbsp;&nbsp;* <code>getDebtCollectionConfigurationsId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /debt-collection/configurations/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a debt collector configuration <br><br> - <strong>DebtCollectorConfigurationsService</strong><br> &nbsp;&nbsp;* <code>getDebtCollectionConfigurationsSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /debt-collection/configurations/search &nbsp;&nbsp;&nbsp;&nbsp;Search debt collector configurations <br><br> - <strong>DebtCollectorConfigurationsService</strong><br> &nbsp;&nbsp;* <code>patchDebtCollectionConfigurationsId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>PATCH</strong> /debt-collection/configurations/{id} &nbsp;&nbsp;&nbsp;&nbsp;Update a debt collector configuration <br><br> - <strong>DebtCollectorConfigurationsService</strong><br> &nbsp;&nbsp;* <code>postDebtCollectionConfigurations</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /debt-collection/configurations &nbsp;&nbsp;&nbsp;&nbsp;Create a debt collector configuration <br><br> - <strong>DebtCollectorsService</strong><br> &nbsp;&nbsp;* <code>getDebtCollectionCollectors</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /debt-collection/collectors &nbsp;&nbsp;&nbsp;&nbsp;List all debt collectors <br><br> - <strong>DebtCollectorsService</strong><br> &nbsp;&nbsp;* <code>getDebtCollectionCollectorsId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /debt-collection/collectors/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a debt collector <br><br> - <strong>DebtCollectorsService</strong><br> &nbsp;&nbsp;* <code>getDebtCollectionCollectorsSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /debt-collection/collectors/search &nbsp;&nbsp;&nbsp;&nbsp;Search debt collectors <br><br> - <strong>DeliveryIndicationsService</strong><br> &nbsp;&nbsp;* <code>getPaymentDeliveryIndications</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/delivery-indications &nbsp;&nbsp;&nbsp;&nbsp;List all delivery indications <br><br> - <strong>DeliveryIndicationsService</strong><br> &nbsp;&nbsp;* <code>getPaymentDeliveryIndicationsId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/delivery-indications/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a delivery indication <br><br> - <strong>DeliveryIndicationsService</strong><br> &nbsp;&nbsp;* <code>getPaymentDeliveryIndicationsSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/delivery-indications/search &nbsp;&nbsp;&nbsp;&nbsp;Search delivery indications <br><br> - <strong>DeliveryIndicationsService</strong><br> &nbsp;&nbsp;* <code>postPaymentDeliveryIndicationsIdMarkNotSuitable</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /payment/delivery-indications/{id}/mark-not-suitable &nbsp;&nbsp;&nbsp;&nbsp;Mark a delivery indication as not suitable. <br><br> - <strong>DeliveryIndicationsService</strong><br> &nbsp;&nbsp;* <code>postPaymentDeliveryIndicationsIdMarkSuitable</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /payment/delivery-indications/{id}/mark-suitable &nbsp;&nbsp;&nbsp;&nbsp;Mark a delivery indication as suitable. <br><br> - <strong>DocumentTemplateTypesService</strong><br> &nbsp;&nbsp;* <code>getDocumentTemplatesTypes</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /document-templates/types &nbsp;&nbsp;&nbsp;&nbsp;List all document template types <br><br> - <strong>DocumentTemplateTypesService</strong><br> &nbsp;&nbsp;* <code>getDocumentTemplatesTypesId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /document-templates/types/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a document template type <br><br> - <strong>DocumentTemplateTypesService</strong><br> &nbsp;&nbsp;* <code>getDocumentTemplatesTypesSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /document-templates/types/search &nbsp;&nbsp;&nbsp;&nbsp;Search document template types <br><br> - <strong>DocumentTemplatesService</strong><br> &nbsp;&nbsp;* <code>getDocumentTemplates</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /document-templates &nbsp;&nbsp;&nbsp;&nbsp;List all document templates <br><br> - <strong>DocumentTemplatesService</strong><br> &nbsp;&nbsp;* <code>getDocumentTemplatesId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /document-templates/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a document template <br><br> - <strong>DocumentTemplatesService</strong><br> &nbsp;&nbsp;* <code>getDocumentTemplatesSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /document-templates/search &nbsp;&nbsp;&nbsp;&nbsp;Search document templates <br><br> - <strong>DunningCasesService</strong><br> &nbsp;&nbsp;* <code>getPaymentDunningCases</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/dunning-cases &nbsp;&nbsp;&nbsp;&nbsp;List all dunning cases <br><br> - <strong>DunningCasesService</strong><br> &nbsp;&nbsp;* <code>getPaymentDunningCasesId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/dunning-cases/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a dunning case <br><br> - <strong>DunningCasesService</strong><br> &nbsp;&nbsp;* <code>getPaymentDunningCasesSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/dunning-cases/search &nbsp;&nbsp;&nbsp;&nbsp;Search dunning cases <br><br> - <strong>DunningCasesService</strong><br> &nbsp;&nbsp;* <code>postPaymentDunningCasesIdSuspend</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /payment/dunning-cases/{id}/suspend &nbsp;&nbsp;&nbsp;&nbsp;Suspend a dunning case <br><br> - <strong>DunningCasesService</strong><br> &nbsp;&nbsp;* <code>postPaymentDunningCasesInvoiceInvoiceId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /payment/dunning-cases/invoice/{invoiceId} &nbsp;&nbsp;&nbsp;&nbsp;Create a dunning case for an invoice <br><br> - <strong>DunningFlowLevelsService</strong><br> &nbsp;&nbsp;* <code>getPaymentDunningFlowsLevels</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/dunning-flows/levels &nbsp;&nbsp;&nbsp;&nbsp;List all dunning flow levels <br><br> - <strong>DunningFlowLevelsService</strong><br> &nbsp;&nbsp;* <code>getPaymentDunningFlowsLevelsId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/dunning-flows/levels/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a dunning flow level <br><br> - <strong>DunningFlowLevelsService</strong><br> &nbsp;&nbsp;* <code>getPaymentDunningFlowsLevelsSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/dunning-flows/levels/search &nbsp;&nbsp;&nbsp;&nbsp;Search dunning flow levels <br><br> - <strong>DunningFlowsService</strong><br> &nbsp;&nbsp;* <code>getPaymentDunningFlows</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/dunning-flows &nbsp;&nbsp;&nbsp;&nbsp;List all dunning flows <br><br> - <strong>DunningFlowsService</strong><br> &nbsp;&nbsp;* <code>getPaymentDunningFlowsId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/dunning-flows/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a dunning flow <br><br> - <strong>DunningFlowsService</strong><br> &nbsp;&nbsp;* <code>getPaymentDunningFlowsSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/dunning-flows/search &nbsp;&nbsp;&nbsp;&nbsp;Search dunning flows <br><br> - <strong>ExpressCheckoutService</strong><br> &nbsp;&nbsp;* <code>patchExpressCheckoutShippingAddressChange</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>PATCH</strong> /express-checkout/shipping/address-change &nbsp;&nbsp;&nbsp;&nbsp;Change shipping address <br><br> - <strong>ExpressCheckoutService</strong><br> &nbsp;&nbsp;* <code>patchExpressCheckoutShippingMethodChange</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>PATCH</strong> /express-checkout/shipping/method-change &nbsp;&nbsp;&nbsp;&nbsp;Change shipping method <br><br> - <strong>ExpressCheckoutService</strong><br> &nbsp;&nbsp;* <code>postExpressCheckoutCreateSession</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /express-checkout/create-session &nbsp;&nbsp;&nbsp;&nbsp;Create a new Express Checkout Session <br><br> - <strong>ExternalTransferBankTransactionsService</strong><br> &nbsp;&nbsp;* <code>getPaymentBankTransactionsExternalTransfers</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/bank-transactions/external-transfers &nbsp;&nbsp;&nbsp;&nbsp;List all external transfer bank transactions <br><br> - <strong>ExternalTransferBankTransactionsService</strong><br> &nbsp;&nbsp;* <code>getPaymentBankTransactionsExternalTransfersId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/bank-transactions/external-transfers/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve an external transfer bank transaction <br><br> - <strong>ExternalTransferBankTransactionsService</strong><br> &nbsp;&nbsp;* <code>getPaymentBankTransactionsExternalTransfersSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/bank-transactions/external-transfers/search &nbsp;&nbsp;&nbsp;&nbsp;Search external transfer bank transactions <br><br> - <strong>HumanUsersService</strong><br> &nbsp;&nbsp;* <code>deleteHumanUsersId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>DELETE</strong> /human-users/{id} &nbsp;&nbsp;&nbsp;&nbsp;Delete a human user <br><br> - <strong>HumanUsersService</strong><br> &nbsp;&nbsp;* <code>getHumanUsers</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /human-users &nbsp;&nbsp;&nbsp;&nbsp;List all human users <br><br> - <strong>HumanUsersService</strong><br> &nbsp;&nbsp;* <code>getHumanUsersExport</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /human-users/export &nbsp;&nbsp;&nbsp;&nbsp;Export human users <br><br> - <strong>HumanUsersService</strong><br> &nbsp;&nbsp;* <code>getHumanUsersId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /human-users/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a human user <br><br> - <strong>HumanUsersService</strong><br> &nbsp;&nbsp;* <code>getHumanUsersSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /human-users/search &nbsp;&nbsp;&nbsp;&nbsp;Search human users <br><br> - <strong>HumanUsersService</strong><br> &nbsp;&nbsp;* <code>patchHumanUsersId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>PATCH</strong> /human-users/{id} &nbsp;&nbsp;&nbsp;&nbsp;Update a human user <br><br> - <strong>HumanUsersService</strong><br> &nbsp;&nbsp;* <code>postHumanUsers</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /human-users &nbsp;&nbsp;&nbsp;&nbsp;Create a human user <br><br> - <strong>HumanUsersRolesService</strong><br> &nbsp;&nbsp;* <code>deleteHumanUsersUserIdAccountRoles</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>DELETE</strong> /human-users/{userId}/account-roles &nbsp;&nbsp;&nbsp;&nbsp;Unassign a role from a human user for an account <br><br> - <strong>HumanUsersRolesService</strong><br> &nbsp;&nbsp;* <code>deleteHumanUsersUserIdSpaceRoles</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>DELETE</strong> /human-users/{userId}/space-roles &nbsp;&nbsp;&nbsp;&nbsp;Unassign a role from a human user for a space <br><br> - <strong>HumanUsersRolesService</strong><br> &nbsp;&nbsp;* <code>getHumanUsersUserIdAccountRoles</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /human-users/{userId}/account-roles &nbsp;&nbsp;&nbsp;&nbsp;List all roles of a human user for an account <br><br> - <strong>HumanUsersRolesService</strong><br> &nbsp;&nbsp;* <code>getHumanUsersUserIdSpaceRoles</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /human-users/{userId}/space-roles &nbsp;&nbsp;&nbsp;&nbsp;List all roles of a human user for a space <br><br> - <strong>HumanUsersRolesService</strong><br> &nbsp;&nbsp;* <code>postHumanUsersUserIdAccountRoles</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /human-users/{userId}/account-roles &nbsp;&nbsp;&nbsp;&nbsp;Assign a role to a human user for an account <br><br> - <strong>HumanUsersRolesService</strong><br> &nbsp;&nbsp;* <code>postHumanUsersUserIdSpaceRoles</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /human-users/{userId}/space-roles &nbsp;&nbsp;&nbsp;&nbsp;Assign a role to a human user for a space <br><br> - <strong>InternalTransferBankTransactionsService</strong><br> &nbsp;&nbsp;* <code>getPaymentBankTransactionsInternalTransfers</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/bank-transactions/internal-transfers &nbsp;&nbsp;&nbsp;&nbsp;List all internal transfer bank transactions <br><br> - <strong>InternalTransferBankTransactionsService</strong><br> &nbsp;&nbsp;* <code>getPaymentBankTransactionsInternalTransfersId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/bank-transactions/internal-transfers/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve an internal transfer bank transaction <br><br> - <strong>InternalTransferBankTransactionsService</strong><br> &nbsp;&nbsp;* <code>getPaymentBankTransactionsInternalTransfersSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/bank-transactions/internal-transfers/search &nbsp;&nbsp;&nbsp;&nbsp;Search internal transfer bank transactions <br><br> - <strong>LabelDescriptorsService</strong><br> &nbsp;&nbsp;* <code>getLabelDescriptors</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /label-descriptors &nbsp;&nbsp;&nbsp;&nbsp;List all label descriptors <br><br> - <strong>LabelDescriptorsService</strong><br> &nbsp;&nbsp;* <code>getLabelDescriptorsGroups</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /label-descriptors/groups &nbsp;&nbsp;&nbsp;&nbsp;List all label descriptor groups <br><br> - <strong>LabelDescriptorsService</strong><br> &nbsp;&nbsp;* <code>getLabelDescriptorsGroupsId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /label-descriptors/groups/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a label descriptor group <br><br> - <strong>LabelDescriptorsService</strong><br> &nbsp;&nbsp;* <code>getLabelDescriptorsGroupsSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /label-descriptors/groups/search &nbsp;&nbsp;&nbsp;&nbsp;Search label descriptor groups <br><br> - <strong>LabelDescriptorsService</strong><br> &nbsp;&nbsp;* <code>getLabelDescriptorsId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /label-descriptors/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a label descriptor <br><br> - <strong>LabelDescriptorsService</strong><br> &nbsp;&nbsp;* <code>getLabelDescriptorsSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /label-descriptors/search &nbsp;&nbsp;&nbsp;&nbsp;Search label descriptors <br><br> - <strong>LanguagesService</strong><br> &nbsp;&nbsp;* <code>getLanguages</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /languages &nbsp;&nbsp;&nbsp;&nbsp;List all languages <br><br> - <strong>LanguagesService</strong><br> &nbsp;&nbsp;* <code>getLanguagesCode</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /languages/{code} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a language <br><br> - <strong>LanguagesService</strong><br> &nbsp;&nbsp;* <code>getLanguagesSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /languages/search &nbsp;&nbsp;&nbsp;&nbsp;Search languages <br><br> - <strong>LegalOrganizationFormsService</strong><br> &nbsp;&nbsp;* <code>getLegalOrganizationForms</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /legal-organization-forms &nbsp;&nbsp;&nbsp;&nbsp;List all legal organization forms <br><br> - <strong>LegalOrganizationFormsService</strong><br> &nbsp;&nbsp;* <code>getLegalOrganizationFormsId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /legal-organization-forms/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a legal organization form <br><br> - <strong>LegalOrganizationFormsService</strong><br> &nbsp;&nbsp;* <code>getLegalOrganizationFormsSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /legal-organization-forms/search &nbsp;&nbsp;&nbsp;&nbsp;Search legal organization forms <br><br> - <strong>ManualTasksService</strong><br> &nbsp;&nbsp;* <code>getManualTasks</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /manual-tasks &nbsp;&nbsp;&nbsp;&nbsp;List all manual tasks <br><br> - <strong>ManualTasksService</strong><br> &nbsp;&nbsp;* <code>getManualTasksId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /manual-tasks/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a manual task <br><br> - <strong>ManualTasksService</strong><br> &nbsp;&nbsp;* <code>getManualTasksIdNotification</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /manual-tasks/{id}/notification &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a manual task\&#39;s notification message <br><br> - <strong>ManualTasksService</strong><br> &nbsp;&nbsp;* <code>getManualTasksSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /manual-tasks/search &nbsp;&nbsp;&nbsp;&nbsp;Search manual tasks <br><br> - <strong>ManualTasksService</strong><br> &nbsp;&nbsp;* <code>postManualTasksIdActionActionId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /manual-tasks/{id}/action/{actionId} &nbsp;&nbsp;&nbsp;&nbsp;Process a manual task\&#39;s action <br><br> - <strong>PaymentConnectorConfigurationsService</strong><br> &nbsp;&nbsp;* <code>deletePaymentConnectorConfigurationsId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>DELETE</strong> /payment/connector-configurations/{id} &nbsp;&nbsp;&nbsp;&nbsp;Delete a payment connector configuration <br><br> - <strong>PaymentConnectorConfigurationsService</strong><br> &nbsp;&nbsp;* <code>getPaymentConnectorConfigurations</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/connector-configurations &nbsp;&nbsp;&nbsp;&nbsp;List all payment connector configurations <br><br> - <strong>PaymentConnectorConfigurationsService</strong><br> &nbsp;&nbsp;* <code>getPaymentConnectorConfigurationsId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/connector-configurations/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a payment connector configuration <br><br> - <strong>PaymentConnectorConfigurationsService</strong><br> &nbsp;&nbsp;* <code>getPaymentConnectorConfigurationsSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/connector-configurations/search &nbsp;&nbsp;&nbsp;&nbsp;Search payment connector configurations <br><br> - <strong>PaymentConnectorConfigurationsService</strong><br> &nbsp;&nbsp;* <code>patchPaymentConnectorConfigurationsId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>PATCH</strong> /payment/connector-configurations/{id} &nbsp;&nbsp;&nbsp;&nbsp;Update a payment connector configuration <br><br> - <strong>PaymentConnectorConfigurationsService</strong><br> &nbsp;&nbsp;* <code>postPaymentConnectorConfigurations</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /payment/connector-configurations &nbsp;&nbsp;&nbsp;&nbsp;Create a payment connector configuration <br><br> - <strong>PaymentConnectorsService</strong><br> &nbsp;&nbsp;* <code>getPaymentConnectors</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/connectors &nbsp;&nbsp;&nbsp;&nbsp;List all payment connectors. <br><br> - <strong>PaymentConnectorsService</strong><br> &nbsp;&nbsp;* <code>getPaymentConnectorsId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/connectors/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a payment connector. <br><br> - <strong>PaymentConnectorsService</strong><br> &nbsp;&nbsp;* <code>getPaymentConnectorsSearch</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/connectors/search &nbsp;&nbsp;&nbsp;&nbsp;Search payment connectors. <br><br> - <strong>PaymentLinksService</strong><br> &nbsp;&nbsp;* <code>deletePaymentLinksId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>DELETE</strong> /payment/links/{id} &nbsp;&nbsp;&nbsp;&nbsp;Delete a payment link <br><br> - <strong>PaymentLinksService</strong><br> &nbsp;&nbsp;* <code>getPaymentLinks</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/links &nbsp;&nbsp;&nbsp;&nbsp;List all payment links <br><br> - <strong>PaymentLinksService</strong><br> &nbsp;&nbsp;* <code>getPaymentLinksId</code> &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/links/{id} &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a payment link <br><br> - <strong>PaymentLinksService</strong><br> &nbsp;&nbsp;* <code>getPaymentLinksSearch</code