Package Exports
- postfinancecheckout
- postfinancecheckout/dist/esm/index.js
- postfinancecheckout/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (postfinancecheckout) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
PostFinanceCheckout TypeScript SDK
- API version:
The PostFinanceCheckout TypeScript SDK is used to interact with PostFinanceCheckout's REST API.
Requirements
Node.js 18 or later
Installation
NOTE: Highly recommended to use TypeScript SDK in server-side applications.
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)
npm install postfinancecheckoutGetting Started
Please follow the installation instructions, then run the following example:
export const HttpBearerAuthConfig =
new HttpBearerAuth(
123441,
"oWVGn42ks+yIbuHt8w09kyQRUEgIuYxqd/F59LO/lF0=");
export const DefaultConfiguration: Configuration = DefaultConfig;
DefaultConfiguration.httpBearerAuth = HttpBearerAuthConfig;
const transactionsService = new TransactionsService(DefaultConfiguration);
const spaceId = 72979;
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
Web Api client: link
Click here to see full list of services
All URIs are relative to https://checkout.postfinance.ch/
(click on method name to see web doc)
API Services:
- AccountsService
*deleteAccountsIdDELETE /accounts/{id} Delete an account - AccountsService
*getAccountsGET /accounts List all accounts - AccountsService
*getAccountsIdGET /accounts/{id} Retrieve an account - AccountsService
*getAccountsSearchGET /accounts/search Search accounts - AccountsService
*patchAccountsIdPATCH /accounts/{id} Update an account - AccountsService
*postAccountsPOST /accounts Create an account - AccountsService
*postAccountsIdActivatePOST /accounts/{id}/activate Activate an account - AccountsService
*postAccountsIdDeactivatePOST /accounts/{id}/deactivate Deactivate an account - AnalyticsQueriesService
*deleteAnalyticsQueriesQueryTokenDELETE /analytics/queries/{queryToken} Cancel a query execution - AnalyticsQueriesService
*getAnalyticsQueriesGET /analytics/queries Get portion of query executions for account - AnalyticsQueriesService
*getAnalyticsQueriesQueryTokenGET /analytics/queries/{queryToken} Retrieve a query execution information - AnalyticsQueriesService
*getAnalyticsQueriesQueryTokenResultGET /analytics/queries/{queryToken}/result Generate a temporary URL to download the query result - AnalyticsQueriesService
*postAnalyticsQueriesSubmitPOST /analytics/queries/submit Submit a query execution - ApplicationUsersService
*deleteApplicationUsersIdDELETE /application-users/{id} Delete an application user - ApplicationUsersService
*deleteApplicationUsersUserIdKeysIdDELETE /application-users/{userId}/keys/{id} Deactivate an authentication key - ApplicationUsersService
*getApplicationUsersGET /application-users List all application users - ApplicationUsersService
*getApplicationUsersIdGET /application-users/{id} Retrieve an application user - ApplicationUsersService
*getApplicationUsersSearchGET /application-users/search Search application users - ApplicationUsersService
*getApplicationUsersUserIdKeysGET /application-users/{userId}/keys List a user's authentication keys - ApplicationUsersService
*patchApplicationUsersIdPATCH /application-users/{id} Update an application user - ApplicationUsersService
*postApplicationUsersPOST /application-users Create an application user - ApplicationUsersService
*postApplicationUsersUserIdKeysPOST /application-users/{userId}/keys Generate a new authentication key - ApplicationUsersRolesService
*deleteApplicationUsersUserIdAccountRolesDELETE /application-users/{userId}/account-roles Unassign a role from an application user for an account - ApplicationUsersRolesService
*deleteApplicationUsersUserIdSpaceRolesDELETE /application-users/{userId}/space-roles Unassign a role from an application user for a space - ApplicationUsersRolesService
*getApplicationUsersUserIdAccountRolesGET /application-users/{userId}/account-roles List all roles of an application user for an account - ApplicationUsersRolesService
*getApplicationUsersUserIdSpaceRolesGET /application-users/{userId}/space-roles List all roles of an application user for a space - ApplicationUsersRolesService
*postApplicationUsersUserIdAccountRolesPOST /application-users/{userId}/account-roles Assign a role to an application user for an account - ApplicationUsersRolesService
*postApplicationUsersUserIdSpaceRolesPOST /application-users/{userId}/space-roles Assign a role to an application user for a space - BankAccountsService
*getPaymentBankAccountsGET /payment/bank-accounts List all bank accounts - BankAccountsService
*getPaymentBankAccountsIdGET /payment/bank-accounts/{id} Retrieve a bank account - BankAccountsService
*getPaymentBankAccountsSearchGET /payment/bank-accounts/search Search bank accounts - BankTransactionsService
*getPaymentBankTransactionsGET /payment/bank-transactions List all bank transactions - BankTransactionsService
*getPaymentBankTransactionsIdGET /payment/bank-transactions/{id} Retrieve a bank transaction - BankTransactionsService
*getPaymentBankTransactionsSearchGET /payment/bank-transactions/search Search bank transactions - ChargeAttemptsService
*getPaymentChargeAttemptsGET /payment/charge-attempts List all charge attempts - ChargeAttemptsService
*getPaymentChargeAttemptsIdGET /payment/charge-attempts/{id} Retrieve a charge attempt - ChargeAttemptsService
*getPaymentChargeAttemptsSearchGET /payment/charge-attempts/search Search charge attempts - ChargeBankTransactionsService
*getPaymentBankTransactionsChargesGET /payment/bank-transactions/charges List all charge bank transactions - ChargeBankTransactionsService
*getPaymentBankTransactionsChargesIdGET /payment/bank-transactions/charges/{id} Retrieve a charge bank transaction - ChargeBankTransactionsService
*getPaymentBankTransactionsChargesSearchGET /payment/bank-transactions/charges/search Search charge bank transactions - ChargeFlowLevelsService
*getPaymentChargeFlowsLevelsGET /payment/charge-flows/levels List all charge flow levels - ChargeFlowLevelsService
*getPaymentChargeFlowsLevelsIdGET /payment/charge-flows/levels/{id} Retrieve a charge flow level - ChargeFlowLevelsService
*getPaymentChargeFlowsLevelsSearchGET /payment/charge-flows/levels/search Search charge flow levels - ChargeFlowLevelsService
*postPaymentChargeFlowsLevelsIdSendMessagePOST /payment/charge-flows/levels/{id}/send-message Send a payment link - ChargeFlowsService
*getPaymentChargeFlowsGET /payment/charge-flows List all charge flows - ChargeFlowsService
*getPaymentChargeFlowsIdGET /payment/charge-flows/{id} Retrieve a charge flow - ChargeFlowsService
*getPaymentChargeFlowsSearchGET /payment/charge-flows/search Search charge flows - ChargeFlowsLevelPaymentLinksService
*getPaymentChargeFlowsLevelsPaymentLinksGET /payment/charge-flows/levels/payment-links List all charge flow payment links - ChargeFlowsLevelPaymentLinksService
*getPaymentChargeFlowsLevelsPaymentLinksIdGET /payment/charge-flows/levels/payment-links/{id} Retrieve a charge flow payment link - ChargeFlowsLevelPaymentLinksService
*getPaymentChargeFlowsLevelsPaymentLinksSearchGET /payment/charge-flows/levels/payment-links/search Search charge flow payment links - ConditionTypesService
*getPaymentConditionTypesGET /payment/condition-types List all condition types. - ConditionTypesService
*getPaymentConditionTypesIdGET /payment/condition-types/{id} Retrieve a condition type. - ConditionTypesService
*getPaymentConditionTypesSearchGET /payment/condition-types/search Search condition types. - CountriesService
*getCountriesGET /countries List all countries - CountriesService
*getCountriesCodeGET /countries/{code} Retrieve a country - CountriesService
*getCountriesCountryCodeStatesGET /countries/{countryCode}/states List all states for a country - CountriesService
*getCountriesSearchGET /countries/search Search countries - CountriesService
*getCountriesStatesGET /countries/states List all country states - CountriesService
*getCountriesStatesIdGET /countries/states/{id} Retrieve a country state - CurrenciesService
*getCurrenciesGET /currencies List all currencies - CurrenciesService
*getCurrenciesCodeGET /currencies/{code} Retrieve a currency - CurrenciesService
*getCurrenciesSearchGET /currencies/search Search currencies - CurrencyBankAccountsService
*getPaymentCurrencyBankAccountsGET /payment/currency-bank-accounts List all currency bank accounts - CurrencyBankAccountsService
*getPaymentCurrencyBankAccountsIdGET /payment/currency-bank-accounts/{id} Retrieve a currency bank account - CurrencyBankAccountsService
*getPaymentCurrencyBankAccountsSearchGET /payment/currency-bank-accounts/search Search currency bank accounts - CustomerAddressesService
*deleteCustomersCustomerIdAddressesIdDELETE /customers/{customerId}/addresses/{id} Delete a customer address - CustomerAddressesService
*getCustomersCustomerIdAddressesGET /customers/{customerId}/addresses List all customer addresses - CustomerAddressesService
*getCustomersCustomerIdAddressesIdGET /customers/{customerId}/addresses/{id} Retrieve a customer address - CustomerAddressesService
*getCustomersCustomerIdAddressesSearchGET /customers/{customerId}/addresses/search Search customer addresses - CustomerAddressesService
*patchCustomersCustomerIdAddressesIdPATCH /customers/{customerId}/addresses/{id} Update a customer address - CustomerAddressesService
*postCustomersCustomerIdAddressesPOST /customers/{customerId}/addresses Create a customer address - CustomerAddressesService
*postCustomersCustomerIdAddressesIdDefaultPOST /customers/{customerId}/addresses/{id}/default Set the default address for a customer - CustomerCommentsService
*deleteCustomersCustomerIdCommentsIdDELETE /customers/{customerId}/comments/{id} Delete a customer comment - CustomerCommentsService
*getCustomersCustomerIdCommentsGET /customers/{customerId}/comments List all customer comments - CustomerCommentsService
*getCustomersCustomerIdCommentsIdGET /customers/{customerId}/comments/{id} Retrieve a customer comment - CustomerCommentsService
*getCustomersCustomerIdCommentsSearchGET /customers/{customerId}/comments/search Search customer comments - CustomerCommentsService
*patchCustomersCustomerIdCommentsIdPATCH /customers/{customerId}/comments/{id} Update a customer comment - CustomerCommentsService
*postCustomersCustomerIdCommentsPOST /customers/{customerId}/comments Create a customer comment - CustomerCommentsService
*postCustomersCustomerIdCommentsIdPinPOST /customers/{customerId}/comments/{id}/pin Pin a comment to the top - CustomerCommentsService
*postCustomersCustomerIdCommentsIdUnpinPOST /customers/{customerId}/comments/{id}/unpin Remove a pinned comment from the top - CustomersService
*deleteCustomersBulkDELETE /customers/bulk Delete multiple customers - CustomersService
*deleteCustomersIdDELETE /customers/{id} Delete a customer - CustomersService
*getCustomersGET /customers List all customers - CustomersService
*getCustomersIdGET /customers/{id} Retrieve a customer - CustomersService
*getCustomersIdEmailAddressesGET /customers/{id}/email-addresses List a customer's email addresses - CustomersService
*getCustomersSearchGET /customers/search Search customers - CustomersService
*patchCustomersBulkPATCH /customers/bulk Update multiple customers - CustomersService
*patchCustomersIdPATCH /customers/{id} Update a customer - CustomersService
*postCustomersPOST /customers Create a customer - CustomersService
*postCustomersBulkPOST /customers/bulk Create multiple customers - CustomersService
*postCustomersIdMergeOtherPOST /customers/{id}/merge/{other} Merge two customers - DeliveryIndicationsService
*getPaymentDeliveryIndicationsGET /payment/delivery-indications List all delivery indications - DeliveryIndicationsService
*getPaymentDeliveryIndicationsIdGET /payment/delivery-indications/{id} Retrieve a delivery indication - DeliveryIndicationsService
*getPaymentDeliveryIndicationsSearchGET /payment/delivery-indications/search Search delivery indications - DeliveryIndicationsService
*postPaymentDeliveryIndicationsIdMarkNotSuitablePOST /payment/delivery-indications/{id}/mark-not-suitable Mark a delivery indication as not suitable. - DeliveryIndicationsService
*postPaymentDeliveryIndicationsIdMarkSuitablePOST /payment/delivery-indications/{id}/mark-suitable Mark a delivery indication as suitable. - DocumentTemplateTypesService
*getDocumentTemplatesTypesGET /document-templates/types List all document template types - DocumentTemplateTypesService
*getDocumentTemplatesTypesIdGET /document-templates/types/{id} Retrieve a document template type - DocumentTemplateTypesService
*getDocumentTemplatesTypesSearchGET /document-templates/types/search Search document template types - DocumentTemplatesService
*getDocumentTemplatesGET /document-templates List all document templates - DocumentTemplatesService
*getDocumentTemplatesIdGET /document-templates/{id} Retrieve a document template - DocumentTemplatesService
*getDocumentTemplatesSearchGET /document-templates/search Search document templates - DunningCasesService
*getPaymentDunningCasesGET /payment/dunning-cases List all dunning cases - DunningCasesService
*getPaymentDunningCasesIdGET /payment/dunning-cases/{id} Retrieve a dunning case - DunningCasesService
*getPaymentDunningCasesSearchGET /payment/dunning-cases/search Search dunning cases - DunningCasesService
*postPaymentDunningCasesIdSuspendPOST /payment/dunning-cases/{id}/suspend Suspend a dunning case - DunningCasesService
*postPaymentDunningCasesInvoiceInvoiceIdPOST /payment/dunning-cases/invoice/{invoiceId} Create a dunning case for an invoice - DunningFlowLevelsService
*getPaymentDunningFlowsLevelsGET /payment/dunning-flows/levels List all dunning flow levels - DunningFlowLevelsService
*getPaymentDunningFlowsLevelsIdGET /payment/dunning-flows/levels/{id} Retrieve a dunning flow level - DunningFlowLevelsService
*getPaymentDunningFlowsLevelsSearchGET /payment/dunning-flows/levels/search Search dunning flow levels - DunningFlowsService
*getPaymentDunningFlowsGET /payment/dunning-flows List all dunning flows - DunningFlowsService
*getPaymentDunningFlowsIdGET /payment/dunning-flows/{id} Retrieve a dunning flow - DunningFlowsService
*getPaymentDunningFlowsSearchGET /payment/dunning-flows/search Search dunning flows - ExpressCheckoutService
*postExpressCheckoutCreateSessionPOST /express-checkout/create-session Create a new Express Checkout Session - ExternalTransferBankTransactionsService
*getPaymentBankTransactionsExternalTransfersGET /payment/bank-transactions/external-transfers List all external transfer bank transactions - ExternalTransferBankTransactionsService
*getPaymentBankTransactionsExternalTransfersIdGET /payment/bank-transactions/external-transfers/{id} Retrieve an external transfer bank transaction - ExternalTransferBankTransactionsService
*getPaymentBankTransactionsExternalTransfersSearchGET /payment/bank-transactions/external-transfers/search Search external transfer bank transactions - HumanUsersService
*deleteHumanUsersIdDELETE /human-users/{id} Delete a human user - HumanUsersService
*getHumanUsersGET /human-users List all human users - HumanUsersService
*getHumanUsersExportGET /human-users/export Export human users - HumanUsersService
*getHumanUsersIdGET /human-users/{id} Retrieve a human user - HumanUsersService
*getHumanUsersSearchGET /human-users/search Search human users - HumanUsersService
*patchHumanUsersIdPATCH /human-users/{id} Update a human user - HumanUsersService
*postHumanUsersPOST /human-users Create a human user - HumanUsersRolesService
*deleteHumanUsersUserIdAccountRolesDELETE /human-users/{userId}/account-roles Unassign a role from a human user for an account - HumanUsersRolesService
*deleteHumanUsersUserIdSpaceRolesDELETE /human-users/{userId}/space-roles Unassign a role from a human user for a space - HumanUsersRolesService
*getHumanUsersUserIdAccountRolesGET /human-users/{userId}/account-roles List all roles of a human user for an account - HumanUsersRolesService
*getHumanUsersUserIdSpaceRolesGET /human-users/{userId}/space-roles List all roles of a human user for a space - HumanUsersRolesService
*postHumanUsersUserIdAccountRolesPOST /human-users/{userId}/account-roles Assign a role to a human user for an account - HumanUsersRolesService
*postHumanUsersUserIdSpaceRolesPOST /human-users/{userId}/space-roles Assign a role to a human user for a space - InternalTransferBankTransactionsService
*getPaymentBankTransactionsInternalTransfersGET /payment/bank-transactions/internal-transfers List all internal transfer bank transactions - InternalTransferBankTransactionsService
*getPaymentBankTransactionsInternalTransfersIdGET /payment/bank-transactions/internal-transfers/{id} Retrieve an internal transfer bank transaction - InternalTransferBankTransactionsService
*getPaymentBankTransactionsInternalTransfersSearchGET /payment/bank-transactions/internal-transfers/search Search internal transfer bank transactions - LabelDescriptorsService
*getLabelDescriptorsGET /label-descriptors List all label descriptors - LabelDescriptorsService
*getLabelDescriptorsGroupsGET /label-descriptors/groups List all label descriptor groups - LabelDescriptorsService
*getLabelDescriptorsGroupsIdGET /label-descriptors/groups/{id} Retrieve a label descriptor group - LabelDescriptorsService
*getLabelDescriptorsGroupsSearchGET /label-descriptors/groups/search Search label descriptor groups - LabelDescriptorsService
*getLabelDescriptorsIdGET /label-descriptors/{id} Retrieve a label descriptor - LabelDescriptorsService
*getLabelDescriptorsSearchGET /label-descriptors/search Search label descriptors - LanguagesService
*getLanguagesGET /languages List all languages - LanguagesService
*getLanguagesCodeGET /languages/{code} Retrieve a language - LanguagesService
*getLanguagesSearchGET /languages/search Search languages - LegalOrganizationFormsService
*getLegalOrganizationFormsGET /legal-organization-forms List all legal organization forms - LegalOrganizationFormsService
*getLegalOrganizationFormsIdGET /legal-organization-forms/{id} Retrieve a legal organization form - LegalOrganizationFormsService
*getLegalOrganizationFormsSearchGET /legal-organization-forms/search Search legal organization forms - ManualTasksService
*getManualTasksGET /manual-tasks List all manual tasks - ManualTasksService
*getManualTasksIdGET /manual-tasks/{id} Retrieve a manual task - ManualTasksService
*getManualTasksIdNotificationGET /manual-tasks/{id}/notification Retrieve a manual task's notification message - ManualTasksService
*getManualTasksSearchGET /manual-tasks/search Search manual tasks - ManualTasksService
*postManualTasksIdActionActionIdPOST /manual-tasks/{id}/action/{actionId} Process a manual task's action - PaymentConnectorConfigurationsService
*deletePaymentConnectorConfigurationsIdDELETE /payment/connector-configurations/{id} Delete a payment connector configuration - PaymentConnectorConfigurationsService
*getPaymentConnectorConfigurationsGET /payment/connector-configurations List all payment connector configurations - PaymentConnectorConfigurationsService
*getPaymentConnectorConfigurationsIdGET /payment/connector-configurations/{id} Retrieve a payment connector configuration - PaymentConnectorConfigurationsService
*getPaymentConnectorConfigurationsSearchGET /payment/connector-configurations/search Search payment connector configurations - PaymentConnectorConfigurationsService
*patchPaymentConnectorConfigurationsIdPATCH /payment/connector-configurations/{id} Update a payment connector configuration - PaymentConnectorConfigurationsService
*postPaymentConnectorConfigurationsPOST /payment/connector-configurations Create a payment connector configuration - PaymentConnectorsService
*getPaymentConnectorsGET /payment/connectors List all payment connectors. - PaymentConnectorsService
*getPaymentConnectorsIdGET /payment/connectors/{id} Retrieve a payment connector. - PaymentConnectorsService
*getPaymentConnectorsSearchGET /payment/connectors/search Search payment connectors. - PaymentLinksService
*deletePaymentLinksIdDELETE /payment/links/{id} Delete a payment link - PaymentLinksService
*getPaymentLinksGET /payment/links List all payment links - PaymentLinksService
*getPaymentLinksIdGET /payment/links/{id} Retrieve a payment link - PaymentLinksService
*getPaymentLinksSearchGET /payment/links/search Search payment links - PaymentLinksService
*patchPaymentLinksIdPATCH /payment/links/{id} Update a payment link - PaymentLinksService
*postPaymentLinksPOST /payment/links Create a payment link - PaymentMethodBrandsService
*getPaymentMethodBrandsGET /payment/method-brands List all payment method brands. - PaymentMethodBrandsService
*getPaymentMethodBrandsIdGET /payment/method-brands/{id} Retrieve a payment method brand. - PaymentMethodBrandsService
*getPaymentMethodBrandsSearchGET /payment/method-brands/search Search payment method brands. - PaymentMethodConfigurationsService
*deletePaymentMethodConfigurationsIdDELETE /payment/method-configurations/{id} Delete a payment method configuration - PaymentMethodConfigurationsService
*getPaymentMethodConfigurationsGET /payment/method-configurations List all payment method configurations - PaymentMethodConfigurationsService
*getPaymentMethodConfigurationsIdGET /payment/method-configurations/{id} Retrieve a payment method configuration - PaymentMethodConfigurationsService
*getPaymentMethodConfigurationsSearchGET /payment/method-configurations/search Search payment method configurations - PaymentMethodConfigurationsService
*patchPaymentMethodConfigurationsIdPATCH /payment/method-configurations/{id} Update a payment method configuration - PaymentMethodConfigurationsService
*postPaymentMethodConfigurationsPOST /payment/method-configurations Create a payment method configuration - PaymentMethodsService
*getPaymentMethodsGET /payment/methods List all payment methods. - PaymentMethodsService
*getPaymentMethodsIdGET /payment/methods/{id} Retrieve a payment method. - PaymentMethodsService
*getPaymentMethodsSearchGET /payment/methods/search Search payment methods. - PaymentProcessorConfigurationsService
*deletePaymentProcessorConfigurationsIdDELETE /payment/processor-configurations/{id} Delete a payment processor configuration - PaymentProcessorConfigurationsService
*getPaymentProcessorConfigurationsGET /payment/processor-configurations List all payment processor configurations - PaymentProcessorConfigurationsService
*getPaymentProcessorConfigurationsIdGET /payment/processor-configurations/{id} Retrieve a payment processor configuration - PaymentProcessorConfigurationsService
*getPaymentProcessorConfigurationsSearchGET /payment/processor-configurations/search Search payment processor configurations - PaymentProcessorConfigurationsService
*patchPaymentProcessorConfigurationsIdPATCH /payment/processor-configurations/{id} Update a payment processor configuration - PaymentProcessorConfigurationsService
*postPaymentProcessorConfigurationsPOST /payment/processor-configurations Create a payment processor configuration - PaymentProcessorsService
*getPaymentProcessorsGET /payment/processors List all payment processors. - PaymentProcessorsService
*getPaymentProcessorsIdGET /payment/processors/{id} Retrieve a payment processor. - PaymentProcessorsService
*getPaymentProcessorsSearchGET /payment/processors/search Search payment processors. - PaymentSalesChannelsService
*getPaymentSalesChannelsGET /payment/sales-channels List all payment sales channels. - PaymentSalesChannelsService
*getPaymentSalesChannelsIdGET /payment/sales-channels/{id} Retrieve a payment sales channel. - PaymentSalesChannelsService
*getPaymentSalesChannelsSearchGET /payment/sales-channels/search Search payment sales channels. - PaymentTerminalsService
*deletePaymentTerminalsIdDELETE /payment/terminals/{id} Delete a payment terminal - PaymentTerminalsService
*getPaymentTerminalsGET /payment/terminals List all payment terminals - PaymentTerminalsService
*getPaymentTerminalsIdGET /payment/terminals/{id} Retrieve a payment terminal - PaymentTerminalsService
*getPaymentTerminalsIdTillConnectionCredentialsGET /payment/terminals/{id}/till-connection-credentials Retrieve till connection credentials - PaymentTerminalsService
*getPaymentTerminalsSearchGET /payment/terminals/search Search payment terminals - PaymentTerminalsService
*patchPaymentTerminalsIdPATCH /payment/terminals/{id} Update a payment terminal - PaymentTerminalsService
*postPaymentTerminalsPOST /payment/terminals Create a payment terminal - PaymentTerminalsService
*postPaymentTerminalsByIdentifierIdentifierPerformTransactionPOST /payment/terminals/by-identifier/{identifier}/perform-transaction Perform a payment terminal transaction by identifier - PaymentTerminalsService
*postPaymentTerminalsByIdentifierIdentifierTriggerFinalBalancePOST /payment/terminals/by-identifier/{identifier}/trigger-final-balance Remotely trigger the final balance by identifier - PaymentTerminalsService
*postPaymentTerminalsIdLinkPOST /payment/terminals/{id}/link Link a device with a payment terminal - PaymentTerminalsService
*postPaymentTerminalsIdPerformTransactionPOST /payment/terminals/{id}/perform-transaction Perform a payment terminal transaction - PaymentTerminalsService
*postPaymentTerminalsIdTriggerFinalBalancePOST /payment/terminals/{id}/trigger-final-balance Remotely trigger the final balance - PaymentTerminalsService
*postPaymentTerminalsIdUnlinkPOST /payment/terminals/{id}/unlink Unlink any device from a payment terminal - PermissionsService
*getPermissionsGET /permissions List all permissions - PermissionsService
*getPermissionsIdGET /permissions/{id} Retrieve a permission - PermissionsService
*getPermissionsSearchGET /permissions/search Search permissions - RefundBankTransactionsService
*getPaymentBankTransactionsRefundsGET /payment/bank-transactions/refunds List all refund bank transactions - RefundBankTransactionsService
*getPaymentBankTransactionsRefundsIdGET /payment/bank-transactions/refunds/{id} Retrieve a refund bank transaction - RefundBankTransactionsService
*getPaymentBankTransactionsRefundsSearchGET /payment/bank-transactions/refunds/search Search refund bank transactions - RefundCommentsService
*deletePaymentRefundsRefundIdCommentsIdDELETE /payment/refunds/{refundId}/comments/{id} Delete a refund comment - RefundCommentsService
*getPaymentRefundsRefundIdCommentsGET /payment/refunds/{refundId}/comments List all refund comments - RefundCommentsService
*getPaymentRefundsRefundIdCommentsIdGET /payment/refunds/{refundId}/comments/{id} Retrieve a refund comment - RefundCommentsService
*getPaymentRefundsRefundIdCommentsSearchGET /payment/refunds/{refundId}/comments/search Search refund comments - RefundCommentsService
*patchPaymentRefundsRefundIdCommentsIdPATCH /payment/refunds/{refundId}/comments/{id} Update a refund comment - RefundCommentsService
*postPaymentRefundsRefundIdCommentsPOST /payment/refunds/{refundId}/comments Create a refund comment - RefundCommentsService
*postPaymentRefundsRefundIdCommentsIdPinPOST /payment/refunds/{refundId}/comments/{id}/pin Pin a comment to the top - RefundCommentsService
*postPaymentRefundsRefundIdCommentsIdUnpinPOST /payment/refunds/{refundId}/comments/{id}/unpin Remove the pinned comment from the top - RefundRecoveryBankTransactionsService
*getPaymentBankTransactionsRefundRecoveriesGET /payment/bank-transactions/refund-recoveries List all refund recovery bank transactions - RefundRecoveryBankTransactionsService
*getPaymentBankTransactionsRefundRecoveriesIdGET /payment/bank-transactions/refund-recoveries/{id} Retrieve a refund recovery bank transaction - RefundRecoveryBankTransactionsService
*getPaymentBankTransactionsRefundRecoveriesSearchGET /payment/bank-transactions/refund-recoveries/search Search refund recovery bank transactions - RefundsService
*getPaymentRefundsGET /payment/refunds List all refunds - RefundsService
*getPaymentRefundsIdGET /payment/refunds/{id} Retrieve a refund - RefundsService
*getPaymentRefundsIdDocumentGET /payment/refunds/{id}/document Retrieve a refund document - RefundsService
*getPaymentRefundsSearchGET /payment/refunds/search Search refunds - RefundsService
*postPaymentRefundsPOST /payment/refunds Create a refund - RefundsService
*postPaymentRefundsIdMarkFailedPOST /payment/refunds/{id}/mark-failed Mark a refund as failed - RefundsService
*postPaymentRefundsIdMarkSucceededPOST /payment/refunds/{id}/mark-succeeded Mark a refund as successful - RolesService
*deleteRolesIdDELETE /roles/{id} Delete a role - RolesService
*getRolesGET /roles List all roles - RolesService
*getRolesIdGET /roles/{id} Retrieve a role - RolesService
*getRolesSearchGET /roles/search Search roles - RolesService
*patchRolesIdPATCH /roles/{id} Update a role - RolesService
*postRolesPOST /roles Create a role - SingleSignOnUsersService
*deleteSingleSignOnUsersIdDELETE /single-sign-on-users/{id} Delete a single sign-on user - SingleSignOnUsersService
*getSingleSignOnUsersGET /single-sign-on-users List all single sign-on users - SingleSignOnUsersService
*getSingleSignOnUsersIdGET /single-sign-on-users/{id} Retrieve a single sign-on user - SingleSignOnUsersService
*getSingleSignOnUsersSearchGET /single-sign-on-users/search Search single sign-on users - SingleSignOnUsersService
*patchSingleSignOnUsersIdPATCH /single-sign-on-users/{id} Update a single sign-on user - SingleSignOnUsersService
*postSingleSignOnUsersPOST /single-sign-on-users Create a single sign-on user - SingleSignOnUsersRolesService
*deleteSingleSignOnUsersUserIdAccountRolesDELETE /single-sign-on-users/{userId}/account-roles Unassign a role from a single sign-on user for an account - SingleSignOnUsersRolesService
*deleteSingleSignOnUsersUserIdSpaceRolesDELETE /single-sign-on-users/{userId}/space-roles Unassign a role from a single sign-on user for a space - SingleSignOnUsersRolesService
*getSingleSignOnUsersUserIdAccountRolesGET /single-sign-on-users/{userId}/account-roles List all roles of a single sign-on user for an account - SingleSignOnUsersRolesService
*getSingleSignOnUsersUserIdSpaceRolesGET /single-sign-on-users/{userId}/space-roles List all roles of a single sign-on user for a space - SingleSignOnUsersRolesService
*postSingleSignOnUsersUserIdAccountRolesPOST /single-sign-on-users/{userId}/account-roles Assign a role to a single sign-on user for an account - SingleSignOnUsersRolesService
*postSingleSignOnUsersUserIdSpaceRolesPOST /single-sign-on-users/{userId}/space-roles Assign a role to a single sign-on user for a space - SpacesService
*deleteSpacesIdDELETE /spaces/{id} Delete a space - SpacesService
*getSpacesGET /spaces List all spaces - SpacesService
*getSpacesIdGET /spaces/{id} Retrieve a space - SpacesService
*getSpacesSearchGET /spaces/search Search spaces - SpacesService
*patchSpacesIdPATCH /spaces/{id} Update a space - SpacesService
*postSpacesPOST /spaces Create a space - StaticValuesService
*getStaticValuesGET /static-values List all static values - StaticValuesService
*getStaticValuesIdGET /static-values/{id} Retrieve a static value - StaticValuesService
*getStaticValuesSearchGET /static-values/search Search static values - SubscribersService
*deleteSubscriptionsSubscribersIdDELETE /subscriptions/subscribers/{id} Delete a subscriber - SubscribersService
*getSubscriptionsSubscribersGET /subscriptions/subscribers List all subscribers - SubscribersService
*getSubscriptionsSubscribersIdGET /subscriptions/subscribers/{id} Retrieve a subscriber - SubscribersService
*getSubscriptionsSubscribersSearchGET /subscriptions/subscribers/search Search subscribers - SubscribersService
*patchSubscriptionsSubscribersIdPATCH /subscriptions/subscribers/{id} Update a subscriber - SubscribersService
*postSubscriptionsSubscribersPOST /subscriptions/subscribers Create a subscriber - SubscriptionAffiliatesService
*deleteSubscriptionsAffiliatesIdDELETE /subscriptions/affiliates/{id} Delete an affiliate - SubscriptionAffiliatesService
*getSubscriptionsAffiliatesGET /subscriptions/affiliates List all affiliates - SubscriptionAffiliatesService
*getSubscriptionsAffiliatesIdGET /subscriptions/affiliates/{id} Retrieve an affiliate - SubscriptionAffiliatesService
*getSubscriptionsAffiliatesSearchGET /subscriptions/affiliates/search Search affiliates - SubscriptionAffiliatesService
*patchSubscriptionsAffiliatesIdPATCH /subscriptions/affiliates/{id} Update an affiliate - SubscriptionAffiliatesService
*postSubscriptionsAffiliatesPOST /subscriptions/affiliates Create an affiliate - SubscriptionChargesService
*getSubscriptionsChargesGET /subscriptions/charges List all charges - SubscriptionChargesService
*getSubscriptionsChargesIdGET /subscriptions/charges/{id} Retrieve a charge - SubscriptionChargesService
*getSubscriptionsChargesSearchGET /subscriptions/charges/search Search charges - SubscriptionChargesService
*postSubscriptionsChargesPOST /subscriptions/charges Create a charge - SubscriptionChargesService
*postSubscriptionsChargesIdDiscardPOST /subscriptions/charges/{id}/discard Discard a charge - SubscriptionLedgerEntriesService
*getSubscriptionsLedgerEntriesGET /subscriptions/ledger-entries List all ledger entries - SubscriptionLedgerEntriesService
*getSubscriptionsLedgerEntriesIdGET /subscriptions/ledger-entries/{id} Retrieve a ledger entry - SubscriptionLedgerEntriesService
*getSubscriptionsLedgerEntriesSearchGET /subscriptions/ledger-entries/search Search ledger entries - SubscriptionLedgerEntriesService
*postSubscriptionsLedgerEntriesPOST /subscriptions/ledger-entries Create a ledger entry - SubscriptionMetricUsageReportsService
*getSubscriptionsMetricUsageReportsGET /subscriptions/metric-usage-reports List all metric usage reports - SubscriptionMetricUsageReportsService
*getSubscriptionsMetricUsageReportsIdGET /subscriptions/metric-usage-reports/{id} Retrieve a metric usage report - SubscriptionMetricUsageReportsService
*getSubscriptionsMetricUsageReportsSearchGET /subscriptions/metric-usage-reports/search Search metric usage reports - SubscriptionMetricUsageReportsService
*postSubscriptionsMetricUsageReportsPOST /subscriptions/metric-usage-reports Create a metric usage report - SubscriptionMetricsService
*deleteSubscriptionsMetricsIdDELETE /subscriptions/metrics/{id} Delete a metric - SubscriptionMetricsService
*getSubscriptionsMetricsGET /subscriptions/metrics List all metrics - SubscriptionMetricsService
*getSubscriptionsMetricsIdGET /subscriptions/metrics/{id} Retrieve a metric - SubscriptionMetricsService
*getSubscriptionsMetricsSearchGET /subscriptions/metrics/search Search metrics - SubscriptionMetricsService
*patchSubscriptionsMetricsIdPATCH /subscriptions/metrics/{id} Update a metric - SubscriptionMetricsService
*postSubscriptionsMetricsPOST /subscriptions/metrics Create a metric - SubscriptionPeriodBillsService
*getSubscriptionsPeriodBillsGET /subscriptions/period-bills List all subscription period bills - SubscriptionPeriodBillsService
*getSubscriptionsPeriodBillsIdGET /subscriptions/period-bills/{id} Retrieve a subscription period bill - SubscriptionPeriodBillsService
*getSubscriptionsPeriodBillsSearchGET /subscriptions/period-bills/search Search subscription period bills - SubscriptionPeriodBillsService
*postSubscriptionsPeriodBillsIdClosePOST /subscriptions/period-bills/{id}/close Close a subscription period bill - SubscriptionProductComponentGroupsService
*deleteSubscriptionsProductsComponentGroupsIdDELETE /subscriptions/products/component-groups/{id} Delete a component group - SubscriptionProductComponentGroupsService
*getSubscriptionsProductsComponentGroupsGET /subscriptions/products/component-groups List all component groups - SubscriptionProductComponentGroupsService
*getSubscriptionsProductsComponentGroupsIdGET /subscriptions/products/component-groups/{id} Retrieve a component group - SubscriptionProductComponentGroupsService
*getSubscriptionsProductsComponentGroupsSearchGET /subscriptions/products/component-groups/search Search component groups - SubscriptionProductComponentGroupsService
*patchSubscriptionsProductsComponentGroupsIdPATCH /subscriptions/products/component-groups/{id} Update a component group - SubscriptionProductComponentGroupsService
*postSubscriptionsProductsComponentGroupsPOST /subscriptions/products/component-groups Create a component group - SubscriptionProductComponentsService
*deleteSubscriptionsProductsComponentsIdDELETE /subscriptions/products/components/{id} Delete a component - SubscriptionProductComponentsService
*getSubscriptionsProductsComponentsGET /subscriptions/products/components List all components - SubscriptionProductComponentsService
*getSubscriptionsProductsComponentsIdGET /subscriptions/products/components/{id} Retrieve a component - SubscriptionProductComponentsService
*getSubscriptionsProductsComponentsSearchGET /subscriptions/products/components/search Search components - SubscriptionProductComponentsService
*patchSubscriptionsProductsComponentsIdPATCH /subscriptions/products/components/{id} Update a component - SubscriptionProductComponentsService
*postSubscriptionsProductsComponentsPOST /subscriptions/products/components Create a component - SubscriptionProductMeteredFeeTiersService
*deleteSubscriptionsProductsMeteredFeesFeeIdTiersIdDELETE /subscriptions/products/metered-fees/{feeId}/tiers/{id} Delete a metered fee tier - SubscriptionProductMeteredFeeTiersService
*getSubscriptionsProductsMeteredFeesFeeIdTiersGET /subscriptions/products/metered-fees/{feeId}/tiers List all metered fee tiers - SubscriptionProductMeteredFeeTiersService
*getSubscriptionsProductsMeteredFeesFeeIdTiersIdGET /subscriptions/products/metered-fees/{feeId}/tiers/{id} Retrieve a metered fee tier - SubscriptionProductMeteredFeeTiersService
*getSubscriptionsProductsMeteredFeesFeeIdTiersSearchGET /subscriptions/products/metered-fees/{feeId}/tiers/search Search metered fee tiers - SubscriptionProductMeteredFeeTiersService
*patchSubscriptionsProductsMeteredFeesFeeIdTiersIdPATCH /subscriptions/products/metered-fees/{feeId}/tiers/{id} Update a metered fee tier - SubscriptionProductMeteredFeeTiersService
*postSubscriptionsProductsMeteredFeesFeeIdTiersPOST /subscriptions/products/metered-fees/{feeId}/tiers Create a metered fee tier - SubscriptionProductMeteredFeesService
*deleteSubscriptionsProductsMeteredFeesIdDELETE /subscriptions/products/metered-fees/{id} Delete a metered fee - SubscriptionProductMeteredFeesService
*getSubscriptionsProductsMeteredFeesGET /subscriptions/products/metered-fees List all metered fees - SubscriptionProductMeteredFeesService
*getSubscriptionsProductsMeteredFeesIdGET /subscriptions/products/metered-fees/{id} Retrieve a metered fee - SubscriptionProductMeteredFeesService
*getSubscriptionsProductsMeteredFeesSearchGET /subscriptions/products/metered-fees/search Search metered fees - SubscriptionProductMeteredFeesService
*patchSubscriptionsProductsMeteredFeesIdPATCH /subscriptions/products/metered-fees/{id} Update a metered fee - SubscriptionProductMeteredFeesService
*postSubscriptionsProductsMeteredFeesPOST /subscriptions/products/metered-fees Create a metered fee - SubscriptionProductPeriodFeesService
*deleteSubscriptionsProductsPeriodFeesIdDELETE /subscriptions/products/period-fees/{id} Delete a period fee - SubscriptionProductPeriodFeesService
*getSubscriptionsProductsPeriodFeesGET /subscriptions/products/period-fees List all period fees - SubscriptionProductPeriodFeesService
*getSubscriptionsProductsPeriodFeesIdGET /subscriptions/products/period-fees/{id} Retrieve a period fee - SubscriptionProductPeriodFeesService
*getSubscriptionsProductsPeriodFeesSearchGET /subscriptions/products/period-fees/search Search period fees - SubscriptionProductPeriodFeesService
*patchSubscriptionsProductsPeriodFeesIdPATCH /subscriptions/products/period-fees/{id} Update a period fee - SubscriptionProductPeriodFeesService
*postSubscriptionsProductsPeriodFeesPOST /subscriptions/products/period-fees Create a period fee - SubscriptionProductRetirementsService
*getSubscriptionsProductsRetirementsGET /subscriptions/products/retirements List all product retirements - SubscriptionProductRetirementsService
*getSubscriptionsProductsRetirementsIdGET /subscriptions/products/retirements/{id} Retrieve a product retirement - SubscriptionProductRetirementsService
*getSubscriptionsProductsRetirementsSearchGET /subscriptions/products/retirements/search Search product retirements - SubscriptionProductSetupFeesService
*deleteSubscriptionsProductsSetupFeesIdDELETE /subscriptions/products/setup-fees/{id} Delete a setup fee - SubscriptionProductSetupFeesService
*getSubscriptionsProductsSetupFeesGET /subscriptions/products/setup-fees List all setup fees - SubscriptionProductSetupFeesService
*getSubscriptionsProductsSetupFeesIdGET /subscriptions/products/setup-fees/{id} Retrieve a setup fee - SubscriptionProductSetupFeesService
*getSubscriptionsProductsSetupFeesSearchGET /subscriptions/products/setup-fees/search Search setup fees - SubscriptionProductSetupFeesService
*patchSubscriptionsProductsSetupFeesIdPATCH /subscriptions/products/setup-fees/{id} Update a setup fee - SubscriptionProductSetupFeesService
*postSubscriptionsProductsSetupFeesPOST /subscriptions/products/setup-fees Create a setup fee - SubscriptionProductVersionRetirementsService
*getSubscriptionsProductsVersionsRetirementsGET /subscriptions/products/versions/retirements List all product version retirements - SubscriptionProductVersionRetirementsService
*getSubscriptionsProductsVersionsRetirementsIdGET /subscriptions/products/versions/retirements/{id} Retrieve a product version retirement - SubscriptionProductVersionRetirementsService
*getSubscriptionsProductsVersionsRetirementsSearchGET /subscriptions/products/versions/retirements/search Search product version retirements - SubscriptionProductVersionsService
*getSubscriptionsProductsVersionsGET /subscriptions/products/versions List all product versions - SubscriptionProductVersionsService
*getSubscriptionsProductsVersionsIdGET /subscriptions/products/versions/{id} Retrieve a product version - SubscriptionProductVersionsService
*getSubscriptionsProductsVersionsSearchGET /subscriptions/products/versions/search Search product versions - SubscriptionProductVersionsService
*patchSubscriptionsProductsVersionsIdPATCH /subscriptions/products/versions/{id} Update a product version - SubscriptionProductVersionsService
*postSubscriptionsProductsVersionsPOST /subscriptions/products/versions Create a product version - SubscriptionProductVersionsService
*postSubscriptionsProductsVersionsIdActivatePOST /subscriptions/products/versions/{id}/activate Activate a product version - SubscriptionProductVersionsService
*postSubscriptionsProductsVersionsIdRetirePOST /subscriptions/products/versions/{id}/retire Retire a product version - SubscriptionProductsService
*getSubscriptionsProductsGET /subscriptions/products List all products - SubscriptionProductsService
*getSubscriptionsProductsIdGET /subscriptions/products/{id} Retrieve a product - SubscriptionProductsService
*getSubscriptionsProductsSearchGET /subscriptions/products/search Search products - SubscriptionProductsService
*patchSubscriptionsProductsIdPATCH /subscriptions/products/{id} Update a product - SubscriptionProductsService
*postSubscriptionsProductsPOST /subscriptions/products Create a product - SubscriptionProductsService
*postSubscriptionsProductsIdRetirePOST /subscriptions/products/{id}/retire Retire a product - SubscriptionSuspensionsService
*getSubscriptionsSuspensionsGET /subscriptions/suspensions List all suspensions - SubscriptionSuspensionsService
*getSubscriptionsSuspensionsIdGET /subscriptions/suspensions/{id} Retrieve a suspension - SubscriptionSuspensionsService
*getSubscriptionsSuspensionsSearchGET /subscriptions/suspensions/search Search suspensions - SubscriptionVersionsService
*getSubscriptionsVersionsGET /subscriptions/versions List all subscription versions - SubscriptionVersionsService
*getSubscriptionsVersionsIdGET /subscriptions/versions/{id} Retrieve a subscription version - SubscriptionVersionsService
*getSubscriptionsVersionsSearchGET /subscriptions/versions/search Search subscription versions - SubscriptionsService
*getSubscriptionsGET /subscriptions List all subscriptions - SubscriptionsService
*getSubscriptionsIdGET /subscriptions/{id} Retrieve a subscription - SubscriptionsService
*getSubscriptionsIdInvoicesGET /subscriptions/{id}/invoices Search subscription invoices - SubscriptionsService
*getSubscriptionsSearchGET /subscriptions/search Search subscriptions - SubscriptionsService
*patchSubscriptionsIdPATCH /subscriptions/{id} Update a subscription - SubscriptionsService
*postSubscriptionsPOST /subscriptions Create a subscription - SubscriptionsService
*postSubscriptionsIdApplyChangesPOST /subscriptions/{id}/apply-changes Apply changes to a subscription - SubscriptionsService
*postSubscriptionsIdInitializePOST /subscriptions/{id}/initialize Initialize a subscription - SubscriptionsService
*postSubscriptionsIdInitializeSubscriberPresentPOST /subscriptions/{id}/initialize-subscriber-present Initialize a subscription with the subscriber present - SubscriptionsService
*postSubscriptionsIdReactivatePOST /subscriptions/{id}/reactivate Reactivate a suspended subscription - SubscriptionsService
*postSubscriptionsIdSuspendPOST /subscriptions/{id}/suspend Suspend a subscription - SubscriptionsService
*postSubscriptionsIdTerminatePOST /subscriptions/{id}/terminate Terminate a subscription - SubscriptionsService
*postSubscriptionsIdUpgradeProductPOST /subscriptions/{id}/upgrade-product Upgrade a subscription's product - TokenVersionsService
*getPaymentTokenVersionsGET /payment/token-versions List all token versions - TokenVersionsService
*getPaymentTokenVersionsIdGET /payment/token-versions/{id} Retrieve a token version - TokenVersionsService
*getPaymentTokenVersionsSearchGET /payment/token-versions/search Search token token versions - TokensService
*deletePaymentTokensIdDELETE /payment/tokens/{id} Delete a token - TokensService
*getPaymentTokensGET /payment/tokens List all tokens - TokensService
*getPaymentTokensIdGET /payment/tokens/{id} Retrieve a token - TokensService
*getPaymentTokensIdActiveVersionGET /payment/tokens/{id}/active-version Retrieve the active token version - TokensService
*getPaymentTokensSearchGET /payment/tokens/search Search tokens - TokensService
*patchPaymentTokensIdPATCH /payment/tokens/{id} Update a token - TokensService
*postPaymentTokensPOST /payment/tokens Create a token - TokensService
*postPaymentTokensIdCreateTransactionForTokenUpdatePOST /payment/tokens/{id}/create-transaction-for-token-update Create a transaction for token update - TransactionClientPlatformsService
*getPaymentTransactionClientPlatformsGET /payment/transaction/client-platforms List all client platforms - TransactionClientPlatformsService
*getPaymentTransactionClientPlatformsIdGET /payment/transaction/client-platforms/{id} Retrieve the client platform based on id - TransactionClientPlatformsService
*getPaymentTransactionClientPlatformsSearchGET /payment/transaction/client-platforms/search Search client platforms - TransactionCommentsService
*deletePaymentTransactionsTransactionIdCommentsIdDELETE /payment/transactions/{transactionId}/comments/{id} Delete a transaction comment - TransactionCommentsService
*getPaymentTransactionsTransactionIdCommentsGET /payment/transactions/{transactionId}/comments List all transaction comments - TransactionCommentsService
*getPaymentTransactionsTransactionIdCommentsIdGET /payment/transactions/{transactionId}/comments/{id} Retrieve a transaction comment - TransactionCommentsService
*getPaymentTransactionsTransactionIdCommentsSearchGET /payment/transactions/{transactionId}/comments/search Search transaction comments - TransactionCommentsService
*patchPaymentTransactionsTransactionIdCommentsIdPATCH /payment/transactions/{transactionId}/comments/{id} Update a transaction comment - TransactionCommentsService
*postPaymentTransactionsTransactionIdCommentsPOST /payment/transactions/{transactionId}/comments Create a transaction comment - TransactionCommentsService
*postPaymentTransactionsTransactionIdCommentsIdPinPOST /payment/transactions/{transactionId}/comments/{id}/pin Pin a comment to the top - TransactionCommentsService
*postPaymentTransactionsTransactionIdCommentsIdUnpinPOST /payment/transactions/{transactionId}/comments/{id}/unpin Remove the pinned comment from the top - TransactionCompletionsService
*getPaymentTransactionsCompletionsGET /payment/transactions/completions List all transaction completions - TransactionCompletionsService
*getPaymentTransactionsCompletionsIdGET /payment/transactions/completions/{id} Retrieve a transaction completion - TransactionCompletionsService
*getPaymentTransactionsCompletionsSearchGET /payment/transactions/completions/search Search transaction completions - TransactionInvoiceCommentsService
*deletePaymentTransactionsInvoicesInvoiceIdCommentsIdDELETE /payment/transactions/invoices/{invoiceId}/comments/{id} Delete a transaction comment - TransactionInvoiceCommentsService
*getPaymentTransactionsInvoicesInvoiceIdCommentsGET /payment/transactions/invoices/{invoiceId}/comments List all transaction invoice comments - TransactionInvoiceCommentsService
*getPaymentTransactionsInvoicesInvoiceIdCommentsIdGET /payment/transactions/invoices/{invoiceId}/comments/{id} Retrieve a transaction invoice comment - TransactionInvoiceCommentsService
*getPaymentTransactionsInvoicesInvoiceIdCommentsSearchGET /payment/transactions/invoices/{invoiceId}/comments/search Search transaction invoice comments - TransactionInvoiceCommentsService
*patchPaymentTransactionsInvoicesInvoiceIdCommentsIdPATCH /payment/transactions/invoices/{invoiceId}/comments/{id} Update a transaction comment - TransactionInvoiceCommentsService
*postPaymentTransactionsInvoicesInvoiceIdCommentsPOST /payment/transactions/invoices/{invoiceId}/comments Create a transaction invoice comment - TransactionInvoiceCommentsService
*postPaymentTransactionsInvoicesInvoiceIdCommentsIdPinPOST /payment/transactions/invoices/{invoiceId}/comments/{id}/pin Pin a comment to the top - TransactionInvoiceCommentsService
*postPaymentTransactionsInvoicesInvoiceIdCommentsIdUnpinPOST /payment/transactions/invoices/{invoiceId}/comments/{id}/unpin Remove the pinned comment from the top - TransactionInvoicesService
*getPaymentTransactionsInvoicesGET /payment/transactions/invoices List all transaction invoices - TransactionInvoicesService
*getPaymentTransactionsInvoicesIdGET /payment/transactions/invoices/{id} Retrieve a transaction invoice - TransactionInvoicesService
*getPaymentTransactionsInvoicesIdCheckReplacementPossibleGET /payment/transactions/invoices/{id}/check-replacement-possible Check if a transaction invoice can be replaced - TransactionInvoicesService
*getPaymentTransactionsInvoicesIdDocumentGET /payment/transactions/invoices/{id}/document Retrieve an invoice document - TransactionInvoicesService
*getPaymentTransactionsInvoicesSearchGET /payment/transactions/invoices/search Search transaction invoices - TransactionInvoicesService
*postPaymentTransactionsInvoicesIdDerecognizePOST /payment/transactions/invoices/{id}/derecognize Derecognize a transaction invoice - TransactionInvoicesService
*postPaymentTransactionsInvoicesIdMarkPaidPOST /payment/transactions/invoices/{id}/mark-paid Mark a transaction invoice as paid - TransactionInvoicesService
*postPaymentTransactionsInvoicesIdReplacePOST /payment/transactions/invoices/{id}/replace Replace a transaction invoice - TransactionLineItemVersionsService
*getPaymentTransactionsLineItemVersionsGET /payment/transactions/line-item-versions List all transaction line item versions - TransactionLineItemVersionsService
*getPaymentTransactionsLineItemVersionsIdGET /payment/transactions/line-item-versions/{id} Retrieve a transaction line item version - TransactionLineItemVersionsService
*getPaymentTransactionsLineItemVersionsSearchGET /payment/transactions/line-item-versions/search Search transaction line item versions - TransactionLineItemVersionsService
*postPaymentTransactionsLineItemVersionsPOST /payment/transactions/line-item-versions Create a transaction line item version - TransactionVoidsService
*getPaymentTransactionsVoidsGET /payment/transactions/voids List all transaction voids - TransactionVoidsService
*getPaymentTransactionsVoidsIdGET /payment/transactions/voids/{id} Retrieve a transaction void - TransactionVoidsService
*getPaymentTransactionsVoidsSearchGET /payment/transactions/voids/search Search transaction voids - TransactionsService
*deletePaymentTransactionsByCredentialsCredentialsOneClickTokensIdDELETE /payment/transactions/by-credentials/{credentials}/one-click-tokens/{id} Delete a one-click token by credentials - TransactionsService
*getPaymentTransactionsGET /payment/transactions List all transactions - TransactionsService
*getPaymentTransactionsByCredentialsCredentialsGET /payment/transactions/by-credentials/{credentials} Retrieve a transaction by credentials - TransactionsService
*getPaymentTransactionsByCredentialsCredentialsMobileSdkUrlGET /payment/transactions/by-credentials/{credentials}/mobile-sdk-url Retrieve a Mobile SDK URL by credentials - TransactionsService
*getPaymentTransactionsByCredentialsCredentialsOneClickTokensGET /payment/transactions/by-credentials/{credentials}/one-click-tokens List one-click tokens by credentials - TransactionsService
*getPaymentTransactionsByCredentialsCredentialsPaymentMethodConfigurationsGET /payment/transactions/by-credentials/{credentials}/payment-method-configurations List available payment method configurations by credentials - TransactionsService
*getPaymentTransactionsExportGET /payment/transactions/export Export transactions - TransactionsService
*getPaymentTransactionsIdGET /payment/transactions/{id} Retrieve a transaction - TransactionsService
*getPaymentTransactionsIdChargeFlowPaymentPageUrlGET /payment/transactions/{id}/charge-flow/payment-page-url Retrieve a charge flow payment page URL - TransactionsService
*getPaymentTransactionsIdCheckTokenCreationPossibleGET /payment/transactions/{id}/check-token-creation-possible Check if token can be created - TransactionsService
*getPaymentTransactionsIdCredentialsGET /payment/transactions/{id}/credentials Retrieve transaction credentials - TransactionsService
*getPaymentTransactionsIdIframeJavascriptUrlGET /payment/transactions/{id}/iframe-javascript-url Retrieve an iFrame JavaScript URL - TransactionsService
*getPaymentTransactionsIdInvoiceDocumentGET /payment/transactions/{id}/invoice-document Retrieve an invoice document - TransactionsService
*getPaymentTransactionsIdLatestLineItemVersionGET /payment/transactions/{id}/latest-line-item-version Retrieve the latest line item version - TransactionsService
*getPaymentTransactionsIdLightboxJavascriptUrlGET /payment/transactions/{id}/lightbox-javascript-url Retrieve a Lightbox JavaScript URL - TransactionsService
*getPaymentTransactionsIdPackingSlipDocumentGET /payment/transactions/{id}/packing-slip-document Retrieve a packing slip document - TransactionsService
*getPaymentTransactionsIdPaymentMethodConfigurationsGET /payment/transactions/{id}/payment-method-configurations List available payment method configurations - TransactionsService
*getPaymentTransactionsIdPaymentPageUrlGET /payment/transactions/{id}/payment-page-url Retrieve a payment page URL - TransactionsService
*getPaymentTransactionsIdTerminalReceiptsGET /payment/transactions/{id}/terminal-receipts List terminal receipts - TransactionsService
*getPaymentTransactionsSearchGET /payment/transactions/search Search transactions - TransactionsService
*patchPaymentTransactionsIdPATCH /payment/transactions/{id} Update a transaction - TransactionsService
*postPaymentTransactionsPOST /payment/transactions Create a transaction - TransactionsService
*postPaymentTransactionsByCredentialsCredentialsOneClickTokensIdProcessPOST /payment/transactions/by-credentials/{credentials}/one-click-tokens/{id}/process Process via one-click token by credentials - TransactionsService
*postPaymentTransactionsIdChargeFlowApplyPOST /payment/transactions/{id}/charge-flow/apply Process a transaction via charge flow - TransactionsService
*postPaymentTransactionsIdChargeFlowCancelPOST /payment/transactions/{id}/charge-flow/cancel Cancel a charge flow - TransactionsService
*postPaymentTransactionsIdChargeFlowUpdateRecipientPOST /payment/transactions/{id}/charge-flow/update-recipient Update a charge flow recipient - TransactionsService
*postPaymentTransactionsIdCompleteOfflinePOST /payment/transactions/{id}/complete-offline Complete a transaction offline - TransactionsService
*postPaymentTransactionsIdCompleteOnlinePOST /payment/transactions/{id}/complete-online Complete a transaction online - TransactionsService
*postPaymentTransactionsIdCompletePartiallyOfflinePOST /payment/transactions/{id}/complete-partially-offline Complete a transaction offline partially - TransactionsService
*postPaymentTransactionsIdCompletePartiallyOnlinePOST /payment/transactions/{id}/complete-partially-online Complete a transaction online partially - TransactionsService
*postPaymentTransactionsIdConfirmPOST /payment/transactions/{id}/confirm Confirm a transaction - TransactionsService
*postPaymentTransactionsIdProcessCardDetailsPOST /payment/transactions/{id}/process-card-details Process a card transaction - TransactionsService
*postPaymentTransactionsIdProcessCardDetailsThreedPOST /payment/transactions/{id}/process-card-details-threed Process a card transaction with 3-D Secure - TransactionsService
*postPaymentTransactionsIdProcessWithTokenPOST /payment/transactions/{id}/process-with-token Process a transaction via token - TransactionsService
*postPaymentTransactionsIdProcessWithoutInteractionPOST /payment/transactions/{id}/process-without-interaction Process a transaction without user-interaction - TransactionsService
*postPaymentTransactionsIdVoidOfflinePOST /payment/transactions/{id}/void-offline Void a transaction offline - TransactionsService
*postPaymentTransactionsIdVoidOnlinePOST /payment/transactions/{id}/void-online Void a transaction online - WebAppsService
*getWebAppsInstalledGET /web-apps/installed Check whether the web app is installed - WebAppsService
*postWebAppsConfirmCodePOST /web-apps/confirm/{code} Confirm a web app installation - WebAppsService
*postWebAppsUninstallPOST /web-apps/uninstall Uninstall a web app - WebhookEncryptionKeysService
*getWebhooksEncryptionKeysIdGET /webhooks/encryption-keys/{id} Retrieve a webhook encryption key - WebhookListenersService
*deleteWebhooksListenersBulkDELETE /webhooks/listeners/bulk Delete multiple webhook listeners - WebhookListenersService
*deleteWebhooksListenersIdDELETE /webhooks/listeners/{id} Delete a webhook listener - WebhookListenersService
*getWebhooksListenersGET /webhooks/listeners List all webhook listeners - WebhookListenersService
*getWebhooksListenersIdGET /webhooks/listeners/{id} Retrieve a webhook listener - WebhookListenersService
*getWebhooksListenersSearchGET /webhooks/listeners/search Search webhook listeners - WebhookListenersService
*patchWebhooksListenersBulkPATCH /webhooks/listeners/bulk Update multiple webhook listeners - WebhookListenersService
*patchWebhooksListenersIdPATCH /webhooks/listeners/{id} Update a webhook listener - WebhookListenersService
*postWebhooksListenersPOST /webhooks/listeners Create a webhook listener - WebhookListenersService
*postWebhooksListenersBulkPOST /webhooks/listeners/bulk Create multiple webhook listeners - WebhookURLsService
*deleteWebhooksUrlsBulkDELETE /webhooks/urls/bulk Delete multiple webhook URLs - WebhookURLsService
*deleteWebhooksUrlsIdDELETE /webhooks/urls/{id} Delete a webhook URL - WebhookURLsService
*getWebhooksUrlsGET /webhooks/urls List all webhook URLs - WebhookURLsService
*getWebhooksUrlsIdGET /webhooks/urls/{id} Retrieve a webhook URL - WebhookURLsService
*getWebhooksUrlsSearchGET /webhooks/urls/search Search webhook URLs - WebhookURLsService
*patchWebhooksUrlsBulkPATCH /webhooks/urls/bulk Update multiple webhook URLs - WebhookURLsService
*patchWebhooksUrlsIdPATCH /webhooks/urls/{id} Update a webhook URL - WebhookURLsService
*postWebhooksUrlsPOST /webhooks/urls Create a webhook URL - WebhookURLsService
*postWebhooksUrlsBulkPOST /webhooks/urls/bulk Create multiple webhook URLs
Documentation for Models
Additional Api models documentation: link
Click here to see full list of models
Models:
- AbstractAccountUpdate
- AbstractApplicationUserUpdate
- AbstractCustomerActive
- AbstractCustomerAddressActive
- AbstractCustomerCommentActive
- 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
- 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
- Environment
- 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
- MetricUsageReportListResponse
- MetricUsageReportSearchResponse
- OneClickPaymentMode
- PanType
- PaymentAdjustment
- PaymentAdjustmentType
- 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
- PaymentTerminalLocation
- PaymentTerminalLocationState
- PaymentTerminalLocationVersion
- PaymentTerminalLocationVersionState
- PaymentTerminalPreparing
- PaymentTerminalReceiptType
- PaymentTerminalState
- 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
- 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
- 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
Documentation for Error Codes
When working with webhooks, the PostFinanceCheckoutSdkException may throw error codes to help with debugging.
Error Code Categories
| Range | Category | Description |
|---|---|---|
| 404 | Not Found | Indicates that the requested resource could not be found or the endpoint returned an empty response |
| 1000–1999 | Client-Side Errors | Errors typically caused by invalid input |
| 2000–2999 | Server-Side Errors | Errors typically caused by incorrect data provided by the server |
Error Code Reference
| Code | Error Name | Description | Category |
|---|---|---|---|
| 404 | UNKNOWN_WEBHOOK_ENCRYPTION_PUBLIC_KEY |
Unknown webhook signature public key | Not Found |
| 1000 | WEBHOOK_ENCRYPTION_GENERAL_ERROR |
General webhook encryption error | Client-Side |
| 1001 | INVALID_WEBHOOK_ENCRYPTION_PUBLIC_KEY |
Invalid webhook signature public key | Client-Side |
| 1002 | INVALID_WEBHOOK_ENCRYPTION_HEADER_FORMAT |
Invalid webhook signature header | Client-Side |
| 1003 | UNSUPPORTED_WEBHOOK_ENCRYPTION_ALGORYTHM |
Unsupported webhook signature algorithm | Client-Side |
| 1004 | UNKNOWN_WEBHOOK_ENCRYPTION_PROVIDER |
Unknown webhook encryption provider | Client-Side |
| 1005 | WEBHOOK_ENCRYPTION_VERIFIER_INIT_ERROR |
Encryption verifier initialization error | Client-Side |
| 1006 | WEBHOOK_ENCRYPTION_VERIFIER_CONTENT_UPDATE_ERROR |
Error during content update in encryption verifier | Client-Side |
| 1007 | WEBHOOK_ENCRYPTION_SIGNATURE_VERIFICATION_FAILED |
Encryption signature verification failed | Client-Side |
| 1008 | INVALID_WEBHOOK_ENCRYPTION_CONTENT_SIGNATURE |
Invalid webhook content signature | Client-Side |
| 2000 | MISSING_WEBHOOK_ENCRYPTION_ALGORYTHM |
Missing webhook signature algorithm value | Server-Side |
Usage Example
try {
// SDK operation
} catch (e: unknown) {
if (e instanceof PostFinanceCheckoutSdkException) {
if (e.code === 1001) {
// Handle invalid authentication key
} else {
// Handle other known SDK errors
}
} else {
// Handle other errors
}
}Author
- Wallee Ecosystem Team
Automatically generated by the OpenAPI Generator
Generator version: 7.6.0
License
Please see the license file for more information.