├── .editorconfig ├── .gitignore ├── .redocly.lint-ignore.yaml ├── CONTRIBUTING.md ├── README.md ├── WRITING-STYLE.md ├── openapi ├── code_samples │ ├── JavaScript │ │ ├── api-keys │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── api-keys@{id} │ │ │ ├── delete.js │ │ │ ├── get.js │ │ │ └── put.js │ │ ├── application-instances@{applicationId} │ │ │ ├── delete.js │ │ │ ├── get.js │ │ │ └── put.js │ │ ├── applications │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── applications@{id} │ │ │ └── get.js │ │ ├── applications@{id}@instances │ │ │ └── get.js │ │ ├── applications@{id}@instances@{organizationId} │ │ │ └── get.js │ │ ├── attachments │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── attachments@{id} │ │ │ ├── delete.js │ │ │ ├── get.js │ │ │ └── put.js │ │ ├── authentication-options │ │ │ ├── get.js │ │ │ └── put.js │ │ ├── authentication-tokens │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── authentication-tokens@{token} │ │ │ ├── delete.js │ │ │ └── get.js │ │ ├── blocklists │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── blocklists@{id} │ │ │ ├── delete.js │ │ │ ├── get.js │ │ │ └── put.js │ │ ├── coupons-redemptions │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── coupons-redemptions@{id} │ │ │ └── get.js │ │ ├── coupons-redemptions@{id}@cancel │ │ │ └── post.js │ │ ├── coupons │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── coupons@{id} │ │ │ ├── get.js │ │ │ └── put.js │ │ ├── coupons@{id}@expiration │ │ │ └── post.js │ │ ├── credentials │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── credentials@{id} │ │ │ ├── delete.js │ │ │ ├── get.js │ │ │ └── put.js │ │ ├── custom-fields@{resource} │ │ │ └── get.js │ │ ├── custom-fields@{resource}@{name} │ │ │ ├── get.js │ │ │ └── put.js │ │ ├── customers │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── customers@{customerId}@summary-metrics │ │ │ └── get.js │ │ ├── customers@{id} │ │ │ ├── get.js │ │ │ └── put.js │ │ ├── customers@{id}@lead-source │ │ │ ├── delete.js │ │ │ ├── get.js │ │ │ └── put.js │ │ ├── customers@{id}@timeline │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── customers@{id}@timeline@{messageId} │ │ │ ├── delete.js │ │ │ └── get.js │ │ ├── data-exports │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── data-exports@{id} │ │ │ └── get.js │ │ ├── disputes │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── disputes@{id} │ │ │ ├── get.js │ │ │ └── put.js │ │ ├── events │ │ │ └── get.js │ │ ├── events@{eventType} │ │ │ └── get.js │ │ ├── events@{eventType}@rules │ │ │ ├── get.js │ │ │ └── put.js │ │ ├── events@{eventType}@rules@history │ │ │ └── get.js │ │ ├── events@{eventType}@rules@history@{version} │ │ │ └── get.js │ │ ├── events@{eventType}@rules@versions@{version} │ │ │ └── get.js │ │ ├── files │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── files@{id} │ │ │ ├── delete.js │ │ │ ├── get.js │ │ │ └── put.js │ │ ├── files@{id}@download │ │ │ └── get.js │ │ ├── forgot-password │ │ │ └── post.js │ │ ├── gateway-accounts │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── gateway-accounts@{id} │ │ │ ├── delete.js │ │ │ ├── get.js │ │ │ ├── patch.js │ │ │ └── put.js │ │ ├── gateway-accounts@{id}@close │ │ │ └── post.js │ │ ├── gateway-accounts@{id}@disable │ │ │ └── post.js │ │ ├── gateway-accounts@{id}@downtime-schedules │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── gateway-accounts@{id}@downtime-schedules@{downtimeId} │ │ │ ├── delete.js │ │ │ ├── get.js │ │ │ └── put.js │ │ ├── gateway-accounts@{id}@enable │ │ │ └── post.js │ │ ├── gateway-accounts@{id}@timeline │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── gateway-accounts@{id}@timeline@{messageId} │ │ │ ├── delete.js │ │ │ └── get.js │ │ ├── histograms@transactions │ │ │ └── get.js │ │ ├── invoices │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── invoices@{id} │ │ │ ├── get.js │ │ │ └── put.js │ │ ├── invoices@{id}@abandon │ │ │ └── post.js │ │ ├── invoices@{id}@issue │ │ │ └── post.js │ │ ├── invoices@{id}@items │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── invoices@{id}@items@{itemId} │ │ │ ├── delete.js │ │ │ ├── get.js │ │ │ └── put.js │ │ ├── invoices@{id}@lead-source │ │ │ ├── delete.js │ │ │ ├── get.js │ │ │ └── put.js │ │ ├── invoices@{id}@timeline │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── invoices@{id}@timeline@{messageId} │ │ │ ├── delete.js │ │ │ └── get.js │ │ ├── invoices@{id}@transaction │ │ │ └── post.js │ │ ├── invoices@{id}@void │ │ │ └── post.js │ │ ├── kyc-documents │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── kyc-documents@{id} │ │ │ ├── get.js │ │ │ └── put.js │ │ ├── kyc-documents@{id}@acceptance │ │ │ └── post.js │ │ ├── kyc-documents@{id}@rejection │ │ │ └── post.js │ │ ├── kyc-documents@{id}@review │ │ │ └── post.js │ │ ├── lists │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── lists@{id} │ │ │ ├── delete.js │ │ │ ├── get.js │ │ │ └── put.js │ │ ├── order-reactivations │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── order-reactivations@{id} │ │ │ └── get.js │ │ ├── orders@{id}@items@{itemId} │ │ │ └── patch.js │ │ ├── orders@{id}@void │ │ │ └── post.js │ │ ├── password-tokens │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── password-tokens@{id} │ │ │ ├── delete.js │ │ │ └── get.js │ │ ├── payment-instruments │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── payment-instruments@{id} │ │ │ ├── get.js │ │ │ └── patch.js │ │ ├── payment-instruments@{id}@deactivation │ │ │ └── post.js │ │ ├── plans │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── plans@{id} │ │ │ ├── delete.js │ │ │ ├── get.js │ │ │ └── put.js │ │ ├── previews@rule-actions@send-email │ │ │ └── post.js │ │ ├── previews@webhooks │ │ │ └── post.js │ │ ├── products │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── products@{id} │ │ │ ├── delete.js │ │ │ ├── get.js │ │ │ └── put.js │ │ ├── profile │ │ │ ├── get.js │ │ │ └── put.js │ │ ├── profile@mfa │ │ │ ├── delete.js │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── reports@annual-recurring-revenue │ │ │ └── get.js │ │ ├── reports@api-log-summary │ │ │ └── get.js │ │ ├── reports@cumulative-subscriptions │ │ │ └── get.js │ │ ├── reports@dcc-markup │ │ │ └── get.js │ │ ├── reports@deferred-revenue │ │ │ └── get.js │ │ ├── reports@disputes │ │ │ └── get.js │ │ ├── reports@events-triggered │ │ │ └── get.js │ │ ├── reports@events-triggered@{eventType}@rules │ │ │ └── get.js │ │ ├── reports@future-renewals │ │ │ └── get.js │ │ ├── reports@journal │ │ │ └── get.js │ │ ├── reports@monthly-recurring-revenue │ │ │ └── get.js │ │ ├── reports@renewal-sales │ │ │ └── get.js │ │ ├── reports@retention-percentage │ │ │ └── get.js │ │ ├── reports@retention-value │ │ │ └── get.js │ │ ├── reports@revenue-waterfall │ │ │ └── get.js │ │ ├── reports@subscription-cancellation │ │ │ └── get.js │ │ ├── reports@subscription-renewal │ │ │ └── get.js │ │ ├── reports@tax │ │ │ └── get.js │ │ ├── reports@time-series-transaction │ │ │ └── get.js │ │ ├── reports@transactions-time-dispute │ │ │ └── get.js │ │ ├── reports@transactions │ │ │ └── get.js │ │ ├── reset-sandbox │ │ │ └── post.js │ │ ├── service-credentials@{type} │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── service-credentials@{type}@{id} │ │ │ ├── get.js │ │ │ └── patch.js │ │ ├── service-credentials@{type}@{id}@items │ │ │ └── get.js │ │ ├── shipping-rates │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── shipping-rates@{id} │ │ │ ├── delete.js │ │ │ ├── get.js │ │ │ └── put.js │ │ ├── status │ │ │ └── get.js │ │ ├── subscription-cancellations │ │ │ └── post.js │ │ ├── subscription-cancellations@{id} │ │ │ └── put.js │ │ ├── subscription-reactivations │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── subscription-reactivations@{id} │ │ │ └── get.js │ │ ├── subscriptions │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── subscriptions@{id} │ │ │ ├── get.js │ │ │ └── put.js │ │ ├── subscriptions@{id}@items@{itemId} │ │ │ └── patch.js │ │ ├── subscriptions@{id}@timeline │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── subscriptions@{id}@timeline@{messageId} │ │ │ ├── delete.js │ │ │ └── get.js │ │ ├── subscriptions@{id}@void │ │ │ └── post.js │ │ ├── tokens │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── tokens@{token} │ │ │ └── get.js │ │ ├── tracking@api │ │ │ └── get.js │ │ ├── tracking@api@{id} │ │ │ └── get.js │ │ ├── tracking@lists │ │ │ └── get.js │ │ ├── tracking@taxes │ │ │ └── get.js │ │ ├── tracking@taxes@{id} │ │ │ └── get.js │ │ ├── tracking@webhooks │ │ │ └── get.js │ │ ├── tracking@webhooks@{id} │ │ │ └── get.js │ │ ├── tracking@website-webhooks@{id} │ │ │ └── get.js │ │ ├── transactions │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── transactions@{id} │ │ │ ├── get.js │ │ │ └── patch.js │ │ ├── transactions@{id}@refund │ │ │ └── post.js │ │ ├── transactions@{id}@timeline │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── transactions@{id}@timeline@{messageId} │ │ │ ├── delete.js │ │ │ └── get.js │ │ ├── users │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── users@{id} │ │ │ ├── get.js │ │ │ └── put.js │ │ ├── users@{id}@mfa │ │ │ └── get.js │ │ ├── webhooks │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── webhooks@{id} │ │ │ ├── get.js │ │ │ └── post.js │ │ ├── websites │ │ │ ├── get.js │ │ │ └── post.js │ │ └── websites@{id} │ │ │ ├── delete.js │ │ │ ├── get.js │ │ │ └── put.js │ ├── PHP-SDK-2.0 │ │ ├── api-keys │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── api-keys@{id} │ │ │ ├── delete.php │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── application-instances@{applicationId} │ │ │ ├── delete.php │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── applications │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── applications@{id} │ │ │ └── get.php │ │ ├── applications@{id}@instances │ │ │ └── get.php │ │ ├── applications@{id}@instances@{organizationId} │ │ │ └── get.php │ │ ├── attachments │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── attachments@{id} │ │ │ ├── delete.php │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── authentication-options │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── authentication-tokens │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── authentication-tokens@{token} │ │ │ ├── delete.php │ │ │ └── get.php │ │ ├── blocklists │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── blocklists@{id} │ │ │ ├── delete.php │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── coupons-redemptions │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── coupons-redemptions@{id} │ │ │ └── get.php │ │ ├── coupons-redemptions@{id}@cancel │ │ │ └── post.php │ │ ├── coupons │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── coupons@{id} │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── credentials │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── credentials@{id} │ │ │ ├── delete.php │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── custom-fields@{resource} │ │ │ └── get.php │ │ ├── custom-fields@{resource}@{name} │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── customers │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── customers@{id} │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── customers@{id}@lead-source │ │ │ ├── delete.php │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── disputes │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── disputes@{id} │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── files │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── files@{id} │ │ │ ├── delete.php │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── forgot-password │ │ │ └── post.php │ │ ├── gateway-accounts │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── gateway-accounts@{id} │ │ │ ├── delete.php │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── invoices │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── invoices@{id} │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── invoices@{id}@abandon │ │ │ └── post.php │ │ ├── invoices@{id}@issue │ │ │ └── post.php │ │ ├── invoices@{id}@items │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── invoices@{id}@items@{itemId} │ │ │ ├── delete.php │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── invoices@{id}@void │ │ │ └── post.php │ │ ├── orders@{id}@void │ │ │ └── post.php │ │ ├── organizations │ │ │ └── post.php │ │ ├── organizations@{id} │ │ │ ├── get.php │ │ │ └── patch.php │ │ ├── payment-instruments │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── payment-instruments@{id} │ │ │ ├── get.php │ │ │ └── patch.php │ │ ├── payment-instruments@{id}@deactivation │ │ │ └── post.php │ │ ├── plans │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── plans@{id} │ │ │ ├── delete.php │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── ready-to-pay │ │ │ └── post.php │ │ ├── subscription-cancellations │ │ │ └── post.php │ │ ├── subscriptions │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── subscriptions@{id} │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── subscriptions@{id}@void │ │ │ └── post.php │ │ ├── tokens │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── tokens@{token} │ │ │ └── get.php │ │ ├── tracking@api │ │ │ └── get.php │ │ ├── tracking@api@{id} │ │ │ └── get.php │ │ ├── transactions │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── transactions@{id} │ │ │ ├── get.php │ │ │ └── patch.php │ │ ├── transactions@{id}@refund │ │ │ └── post.php │ │ ├── users │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── users@{id} │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── websites │ │ │ ├── get.php │ │ │ └── post.php │ │ └── websites@{id} │ │ │ ├── delete.php │ │ │ ├── get.php │ │ │ └── put.php │ ├── PHP │ │ ├── .gitignore │ │ ├── .php-cs-fixer.php │ │ ├── api-keys │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── api-keys@{id} │ │ │ ├── delete.php │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── application-instances@{applicationId} │ │ │ ├── delete.php │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── applications │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── applications@{id} │ │ │ └── get.php │ │ ├── applications@{id}@instances │ │ │ └── get.php │ │ ├── applications@{id}@instances@{organizationId} │ │ │ └── get.php │ │ ├── attachments │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── attachments@{id} │ │ │ ├── delete.php │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── authentication-options │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── authentication-tokens │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── authentication-tokens@{token} │ │ │ ├── delete.php │ │ │ └── get.php │ │ ├── blocklists │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── blocklists@{id} │ │ │ ├── delete.php │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── composer.json │ │ ├── coupons-redemptions │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── coupons-redemptions@{id} │ │ │ └── get.php │ │ ├── coupons-redemptions@{id}@cancel │ │ │ └── post.php │ │ ├── coupons │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── coupons@{id} │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── credentials │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── credentials@{id} │ │ │ ├── delete.php │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── custom-fields@{resource} │ │ │ └── get.php │ │ ├── custom-fields@{resource}@{name} │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── customers │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── customers@{customerId}@summary-metrics │ │ │ └── get.php │ │ ├── customers@{id} │ │ │ ├── delete.php │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── customers@{id}@lead-source │ │ │ ├── delete.php │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── data-exports │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── data-exports@{id} │ │ │ ├── delete.php │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── disputes │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── disputes@{id} │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── files │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── files@{id} │ │ │ ├── delete.php │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── forgot-password │ │ │ └── post.php │ │ ├── gateway-accounts │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── gateway-accounts@{id} │ │ │ ├── delete.php │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── histograms@transactions │ │ │ └── get.php │ │ ├── invoices │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── invoices@{id} │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── invoices@{id}@abandon │ │ │ └── post.php │ │ ├── invoices@{id}@issue │ │ │ └── post.php │ │ ├── invoices@{id}@items │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── invoices@{id}@items@{itemId} │ │ │ ├── delete.php │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── invoices@{id}@recalculate │ │ │ └── post.php │ │ ├── invoices@{id}@reissue │ │ │ └── post.php │ │ ├── invoices@{id}@timeline │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── invoices@{id}@timeline@{messageId} │ │ │ ├── delete.php │ │ │ └── get.php │ │ ├── invoices@{id}@transaction-allocations │ │ │ └── get.php │ │ ├── invoices@{id}@transaction │ │ │ └── post.php │ │ ├── invoices@{id}@void │ │ │ └── post.php │ │ ├── lists │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── lists@{id} │ │ │ ├── delete.php │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── lists@{id}@{version} │ │ │ └── get.php │ │ ├── organizations │ │ │ └── post.php │ │ ├── organizations@{id} │ │ │ ├── get.php │ │ │ └── patch.php │ │ ├── password-tokens │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── password-tokens@{id} │ │ │ ├── delete.php │ │ │ └── get.php │ │ ├── payment-instruments │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── payment-instruments@{id} │ │ │ ├── get.php │ │ │ └── patch.php │ │ ├── payment-instruments@{id}@deactivation │ │ │ └── post.php │ │ ├── plans │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── plans@{id} │ │ │ ├── delete.php │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── products │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── products@{id} │ │ │ ├── delete.php │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── psalm.xml │ │ ├── ready-to-pay │ │ │ └── post.php │ │ ├── reports@api-log-summary │ │ │ └── get.php │ │ ├── reports@cumulative-subscriptions │ │ │ └── get.php │ │ ├── reports@dashboard │ │ │ └── get.php │ │ ├── reports@dcc-markup │ │ │ └── get.php │ │ ├── reports@disputes │ │ │ └── get.php │ │ ├── reports@events-triggered │ │ │ └── get.php │ │ ├── reports@events-triggered@{eventType}@rules │ │ │ └── get.php │ │ ├── reports@future-renewals │ │ │ └── get.php │ │ ├── reports@journal │ │ │ └── get.php │ │ ├── reports@kyc-acceptance-summary │ │ │ └── get.php │ │ ├── reports@kyc-rejection-summary │ │ │ └── get.php │ │ ├── reports@kyc-request-summary │ │ │ └── get.php │ │ ├── reports@monthly-recurring-revenue │ │ │ └── get.php │ │ ├── reports@renewal-sales │ │ │ └── get.php │ │ ├── reports@retention-percentage │ │ │ └── get.php │ │ ├── reports@retention-value │ │ │ └── get.php │ │ ├── reports@revenue-waterfall │ │ │ └── get.php │ │ ├── reports@subscription-cancellation │ │ │ └── get.php │ │ ├── reports@subscription-renewal │ │ │ └── get.php │ │ ├── reports@time-series-transaction │ │ │ └── get.php │ │ ├── reports@transactions-time-dispute │ │ │ └── get.php │ │ ├── reports@transactions │ │ │ └── get.php │ │ ├── subscription-cancellations │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── subscription-cancellations@{id} │ │ │ ├── delete.php │ │ │ ├── get.php │ │ │ ├── patch.php │ │ │ └── put.php │ │ ├── subscriptions │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── subscriptions@{id} │ │ │ ├── delete.php │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── subscriptions@{id}@void │ │ │ └── post.php │ │ ├── subscriptions@{subscriptionId}@summary-metrics │ │ │ └── get.php │ │ ├── tags │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── tokens │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── tokens@{token} │ │ │ └── get.php │ │ ├── tracking@api │ │ │ └── get.php │ │ ├── tracking@api@{id} │ │ │ └── get.php │ │ ├── transactions │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── transactions@{id} │ │ │ ├── get.php │ │ │ └── patch.php │ │ ├── transactions@{id}@refund │ │ │ └── post.php │ │ ├── users │ │ │ ├── get.php │ │ │ └── post.php │ │ ├── users@{id} │ │ │ ├── get.php │ │ │ └── put.php │ │ ├── websites │ │ │ ├── get.php │ │ │ └── post.php │ │ └── websites@{id} │ │ │ ├── delete.php │ │ │ ├── get.php │ │ │ └── put.php │ └── README.md ├── components │ ├── README.md │ ├── examples │ │ └── Fee │ │ │ ├── stripe-intl-request.yaml │ │ │ ├── stripe-intl-response.yaml │ │ │ ├── stripe-trx-request.yaml │ │ │ ├── stripe-trx-response.yaml │ │ │ ├── stripe-us-request.yaml │ │ │ └── stripe-us-response.yaml │ ├── headers │ │ ├── Location.yaml │ │ ├── Pagination-Limit.yaml │ │ ├── Pagination-Offset.yaml │ │ ├── Pagination-Total.yaml │ │ ├── X-RateLimit-Limit.yaml │ │ ├── X-RateLimit-Remaining.yaml │ │ └── X-RateLimit-Retry-After.yaml │ ├── parameters │ │ ├── applicationId.yaml │ │ ├── collectionCriteria.yaml │ │ ├── collectionExpand.yaml │ │ ├── collectionFields.yaml │ │ ├── collectionFilter.yaml │ │ ├── collectionLimit.yaml │ │ ├── collectionOffset.yaml │ │ ├── collectionQuery.yaml │ │ ├── collectionSort.yaml │ │ ├── credentialType.yaml │ │ ├── customFieldResource.yaml │ │ ├── customerId.yaml │ │ ├── externalIdentifierResource.yaml │ │ ├── externalIdentifierResourceId.yaml │ │ ├── externalIdentifierService.yaml │ │ ├── hash.yaml │ │ ├── imageSize.yaml │ │ ├── integrationLabel.yaml │ │ ├── journalRecordId.yaml │ │ ├── kycDocumentId.yaml │ │ ├── mediaTypeJsonPdf.yaml │ │ ├── orderExpand.yaml │ │ ├── organizationId.yaml │ │ ├── resourceId.yaml │ │ ├── rulesVersion.yaml │ │ ├── storefrontCustomFieldResource.yaml │ │ ├── subscriptionExpand.yaml │ │ ├── systemEventType.yaml │ │ ├── tag.yaml │ │ └── token.yaml │ ├── requestBodies │ │ ├── ApiKey.yaml │ │ ├── Attachment.yaml │ │ ├── BankAccount.yaml │ │ ├── Blocklist.yaml │ │ ├── Coupon.yaml │ │ ├── CreditTransactionRequest.yaml │ │ ├── Customer.yaml │ │ ├── DataExport.yaml │ │ ├── Dispute.yaml │ │ ├── FileCreateFromInline.yaml │ │ ├── FileCreateFromUrl.yaml │ │ ├── GatewayAccount.yaml │ │ ├── GatewayAccountDowntimeSchedule.yaml │ │ ├── GlobalWebhook.yaml │ │ ├── GridSegment.yaml │ │ ├── Invoice.yaml │ │ ├── OAuth2Credential.yaml │ │ ├── OrderItemUpdate.yaml │ │ ├── Organization.yaml │ │ ├── PatchCredential.yaml │ │ ├── PatchCreditMemo.yaml │ │ ├── PatchFee.yaml │ │ ├── PatchKycRequest.yaml │ │ ├── PatchOrganization.yaml │ │ ├── PatchPaymentInstrument.yaml │ │ ├── PatchPlaidCredential.yaml │ │ ├── PatchQuote.yaml │ │ ├── PatchServiceCredential.yaml │ │ ├── PatchTaxJarCredential.yaml │ │ ├── PatchTransactionRequest.yaml │ │ ├── PostCashier.yaml │ │ ├── PostDepositRequest.yaml │ │ ├── PostOrganization.yaml │ │ ├── PostPaymentInstrument.yaml │ │ ├── PostReadyToPay.yaml │ │ ├── Product.yaml │ │ ├── RuleSet.yaml │ │ ├── RuleSetDraft.yaml │ │ ├── Subscription.yaml │ │ ├── SubscriptionCancellation.yaml │ │ ├── Tag.yaml │ │ ├── TransactionRequest.yaml │ │ ├── UpdateTag.yaml │ │ ├── User.yaml │ │ ├── Webhooks │ │ │ ├── ApplicationInstanceDisabled.yaml │ │ │ ├── ApplicationInstanceEnabled.yaml │ │ │ ├── AutodepositLookupPerformed.yaml │ │ │ ├── BalanceTransactionSettled.yaml │ │ │ ├── CouponRedemptionWebhook.yaml │ │ │ ├── CouponWebhook.yaml │ │ │ ├── CreditMemoWebhook.yaml │ │ │ ├── CustomerRedirect.yaml │ │ │ ├── CustomerTaxNumberValidated.yaml │ │ │ ├── CustomerWebhook.yaml │ │ │ ├── DataExportWebhook.yaml │ │ │ ├── DisputeWebhook.yaml │ │ │ ├── ExperianCheckPerformed.yaml │ │ │ ├── GatewayAccountAndGatewayAccountLimit.yaml │ │ │ ├── GatewayAccountWebhook.yaml │ │ │ ├── InvoiceAndTransaction.yaml │ │ │ ├── InvoiceTaxCalculationFailed.yaml │ │ │ ├── InvoiceWebhook.yaml │ │ │ ├── KycDocumentWebhook.yaml │ │ │ ├── KycRequestWebhook.yaml │ │ │ ├── MergedCustomer.yaml │ │ │ ├── OrderAbandonReminderSent.yaml │ │ │ ├── OrganizationTaxNumberValidated.yaml │ │ │ ├── PaymentCardWebhook.yaml │ │ │ ├── PaymentInstrumentWebhook.yaml │ │ │ ├── PayoutRequestWebhook.yaml │ │ │ ├── QuoteWebhook.yaml │ │ │ ├── ReadyToPayRequested.yaml │ │ │ ├── RenewalInvoiceIssued.yaml │ │ │ ├── SubscriptionAndSubscriptionPause.yaml │ │ │ ├── SubscriptionQuantityFilledLimitReached.yaml │ │ │ ├── SubscriptionWebhook.yaml │ │ │ ├── TransactionWebhook.yaml │ │ │ └── UsageLimitWebhook.yaml │ │ ├── Website.yaml │ │ └── storefront │ │ │ ├── PatchAccountPassword.yaml │ │ │ ├── PatchInvoice.yaml │ │ │ ├── PatchOrder.yaml │ │ │ ├── PaymentInstructionsInstrument.yaml │ │ │ ├── PaymentInstructionsToken.yaml │ │ │ ├── PostCashierPayoutRequestCancellation.yaml │ │ │ ├── PostDeposit.yaml │ │ │ ├── PostKycLivenessSession.yaml │ │ │ ├── PostOrderCancellation.yaml │ │ │ ├── PostOrderPause.yaml │ │ │ ├── PostPayment.yaml │ │ │ ├── PostPayoutRequest.yaml │ │ │ ├── PostRegister.yaml │ │ │ ├── PostSubscription.yaml │ │ │ ├── PostSubscriptionItemsChange.yaml │ │ │ ├── PostSubscriptionReactivation.yaml │ │ │ ├── SetupPaymentInstrumentRequest.yaml │ │ │ ├── StorefrontPatchPaymentInstrument.yaml │ │ │ ├── StorefrontPostPaymentInstrument.yaml │ │ │ └── StorefrontTransactionRedirectUrl.yaml │ ├── responses │ │ ├── Conflict.yaml │ │ ├── Customer.yaml │ │ ├── Forbidden.yaml │ │ ├── Found.yaml │ │ ├── NoContent.yaml │ │ ├── NotFound.yaml │ │ ├── SeeOther.yaml │ │ ├── TooManyRequests.yaml │ │ ├── Unauthorized.yaml │ │ └── ValidationError.yaml │ └── schemas │ │ ├── AML.yaml │ │ ├── AchPlaidFeature.yaml │ │ ├── Acl.yaml │ │ ├── AclPermissions.yaml │ │ ├── AcquirerName.yaml │ │ ├── AdjustPaymentMethod.yaml │ │ ├── AdjustReadyToPayAch.yaml │ │ ├── AdjustReadyToPayGeneric.yaml │ │ ├── AdjustReadyToPayPaymentCard.yaml │ │ ├── AdjustReadyToPayPaypal.yaml │ │ ├── AdjustReadyToPayoutGeneric.yaml │ │ ├── AdjustReadyToPayoutPaymentMethod.yaml │ │ ├── AllowedIps.yaml │ │ ├── Allowlist.yaml │ │ ├── AlternativeInstrument.yaml │ │ ├── AlternativePaymentInstrument.yaml │ │ ├── AlternativePaymentMethods.yaml │ │ ├── AlternativePaymentToken.yaml │ │ ├── AmlCheck.yaml │ │ ├── AmlCheckReview.yaml │ │ ├── AmlChecksDataExport.yaml │ │ ├── AmlCompoundConfidence.yaml │ │ ├── AmlConfidence.yaml │ │ ├── AmlPriority.yaml │ │ ├── AmlSettings.yaml │ │ ├── AmountAdjustmentInstructionNone.yaml │ │ ├── AmountAdjustmentInstructionPartial.yaml │ │ ├── AmountAdjustmentPoliciesDiscountAmountRemaining.yaml │ │ ├── AmountAdjustmentPoliciesNone.yaml │ │ ├── AmountAdjustmentTolerance.yaml │ │ ├── ApiKey.yaml │ │ ├── ApiKeyScope.yaml │ │ ├── ApiLogSummary.yaml │ │ ├── ApiTracking.yaml │ │ ├── ApplePayFeature.yaml │ │ ├── ApplePayValidation.yaml │ │ ├── Application.yaml │ │ ├── ApplicationInstance.yaml │ │ ├── ApplicationInstanceConfiguration.yaml │ │ ├── ArrayCustomField.yaml │ │ ├── Attachment.yaml │ │ ├── AuthenticationOptions.yaml │ │ ├── AuthenticationToken.yaml │ │ ├── AuthenticationTokenPasswordMode.yaml │ │ ├── AuthenticationTokenPasswordlessMode.yaml │ │ ├── AuthenticationTokenResponse.yaml │ │ ├── AvalaraCredential.yaml │ │ ├── BBANInstrument.yaml │ │ ├── BBANType.yaml │ │ ├── BalanceTransaction.yaml │ │ ├── BankAccount.yaml │ │ ├── BankAccountCreatePlain.yaml │ │ ├── BankAccountInstrument.yaml │ │ ├── BankAccountToken.yaml │ │ ├── BankAccountUpdatePlain.yaml │ │ ├── BillingPortal.yaml │ │ ├── Bind.yaml │ │ ├── Bips.yaml │ │ ├── Blocklist.yaml │ │ ├── BooleanCustomField.yaml │ │ ├── BroadcastMessage.yaml │ │ ├── BuyFeeTransaction.yaml │ │ ├── CashInstrument.yaml │ │ ├── Cashier.yaml │ │ ├── ChangeQuote.yaml │ │ ├── ChargeTransaction.yaml │ │ ├── CheckInstrument.yaml │ │ ├── CheckoutForm.yaml │ │ ├── CheckoutFormFixedPlan.yaml │ │ ├── CheckoutFormId.yaml │ │ ├── CheckoutFormPlan.yaml │ │ ├── CheckoutFormVariablePlan.yaml │ │ ├── Company.yaml │ │ ├── CompositeToken.yaml │ │ ├── ContactEmails.yaml │ │ ├── ContactObject.yaml │ │ ├── ContactPhoneNumbers.yaml │ │ ├── CountriesMetadata.yaml │ │ ├── CountriesSubsetMetadata.yaml │ │ ├── CountriesUnrestrictedMetadata.yaml │ │ ├── Country.yaml │ │ ├── Coupon.yaml │ │ ├── CouponExpiration.yaml │ │ ├── CouponRedemption.yaml │ │ ├── CouponRestriction.yaml │ │ ├── CouponRestrictionDiscountPerRedemption.yaml │ │ ├── CouponRestrictionExclusiveApplication.yaml │ │ ├── CouponRestrictionMinimumOrderAmount.yaml │ │ ├── CouponRestrictionPaidByTime.yaml │ │ ├── CouponRestrictionRedemptionsPerCustomer.yaml │ │ ├── CouponRestrictionRestrictToBxgy.yaml │ │ ├── CouponRestrictionRestrictToCountries.yaml │ │ ├── CouponRestrictionRestrictToCustomerTags.yaml │ │ ├── CouponRestrictionRestrictToCustomers.yaml │ │ ├── CouponRestrictionRestrictToInvoices.yaml │ │ ├── CouponRestrictionRestrictToPlans.yaml │ │ ├── CouponRestrictionRestrictToProducts.yaml │ │ ├── CouponRestrictionRestrictToSubscriptions.yaml │ │ ├── CouponRestrictionTotalRedemptions.yaml │ │ ├── CreatedTime.yaml │ │ ├── CreationQuote.yaml │ │ ├── CreditFileCommonDecisionData.yaml │ │ ├── CreditFileMatches.yaml │ │ ├── CreditMemo.yaml │ │ ├── CreditMemoInvoiceAllocation.yaml │ │ ├── CreditMemoTaxItem.yaml │ │ ├── CreditMemoTimeline.yaml │ │ ├── CumulativeSubscriptions.yaml │ │ ├── CumulativeSubscriptionsPlans.yaml │ │ ├── CurrenciesSubsetMetadata.yaml │ │ ├── CurrenciesUnrestrictedMetadata.yaml │ │ ├── CurrencyCode.yaml │ │ ├── CustomDomain.yaml │ │ ├── CustomField.yaml │ │ ├── Customer.yaml │ │ ├── CustomerAverageValue.yaml │ │ ├── CustomerCredential.yaml │ │ ├── CustomerId.yaml │ │ ├── CustomerInformation.yaml │ │ ├── CustomerJWT.yaml │ │ ├── CustomerLifetimeRevenue.yaml │ │ ├── CustomerTimeline.yaml │ │ ├── CustomerTimelineCustomEvent.yaml │ │ ├── CustomersDataExport.yaml │ │ ├── DashboardResponse.yaml │ │ ├── DataExport.yaml │ │ ├── DataExportArguments.yaml │ │ ├── DataExportDateRange.yaml │ │ ├── DataExportRecurring.yaml │ │ ├── DateCustomField.yaml │ │ ├── DateTimeCustomField.yaml │ │ ├── DccMarkup.yaml │ │ ├── DepositCustomPropertySet.yaml │ │ ├── DepositRequest.yaml │ │ ├── DepositStrategy.yaml │ │ ├── DigitalWalletCountry.yaml │ │ ├── DigitalWalletOnboardingApplePay.yaml │ │ ├── DigitalWalletToken.yaml │ │ ├── DigitalWalletValidation.yaml │ │ ├── DigitalWallets.yaml │ │ ├── Discount.yaml │ │ ├── DiscountContext.yaml │ │ ├── DiscountFixed.yaml │ │ ├── DiscountPercent.yaml │ │ ├── Dispute.yaml │ │ ├── DisputesDataExport.yaml │ │ ├── Edd.yaml │ │ ├── EddScore.yaml │ │ ├── EddScoreDetails.yaml │ │ ├── EddSearchResult.yaml │ │ ├── EddTimeline.yaml │ │ ├── EmailDeliverySetting.yaml │ │ ├── EmailMessage.yaml │ │ ├── EmailNotification.yaml │ │ ├── Error.yaml │ │ ├── EventType.yaml │ │ ├── ExperianCredential.yaml │ │ ├── ExternalIdentifier.yaml │ │ ├── ExternalServiceSettings.yaml │ │ ├── Fee.yaml │ │ ├── FeeFormula.yaml │ │ ├── File.yaml │ │ ├── FixedFeeFormula.yaml │ │ ├── FlexiblePlan.yaml │ │ ├── ForgotPassword.yaml │ │ ├── FundsMatches.yaml │ │ ├── FutureRenewals.yaml │ │ ├── GatewayAccount.yaml │ │ ├── GatewayAccountConfig │ │ ├── A1Gateway.yaml │ │ ├── ACI.yaml │ │ ├── Adyen.yaml │ │ ├── Aera.yaml │ │ ├── Aircash.yaml │ │ ├── Airpay.yaml │ │ ├── Airwallex.yaml │ │ ├── AmazonPay.yaml │ │ ├── AmexVPC.yaml │ │ ├── Antom.yaml │ │ ├── ApcoPay.yaml │ │ ├── AsiaPay.yaml │ │ ├── AsiaPaymentGateway.yaml │ │ ├── AstroPayCard.yaml │ │ ├── AuthorizeNet.yaml │ │ ├── Awepay.yaml │ │ ├── BVNK.yaml │ │ ├── Bambora.yaml │ │ ├── BankSEND.yaml │ │ ├── BitPay.yaml │ │ ├── BlueSnap.yaml │ │ ├── BraintreePayments.yaml │ │ ├── Buckaroo.yaml │ │ ├── CASHlib.yaml │ │ ├── CCAvenue.yaml │ │ ├── CODVoucher.yaml │ │ ├── Cardknox.yaml │ │ ├── CashToCode.yaml │ │ ├── Cashflows.yaml │ │ ├── Cashterminal.yaml │ │ ├── CauriPayment.yaml │ │ ├── Cayan.yaml │ │ ├── Chase.yaml │ │ ├── CheckoutCom.yaml │ │ ├── Chillstock.yaml │ │ ├── Circle.yaml │ │ ├── Citadel.yaml │ │ ├── Clearhaus.yaml │ │ ├── Cleo.yaml │ │ ├── CoinGate.yaml │ │ ├── CoinPayments.yaml │ │ ├── Coinbase.yaml │ │ ├── Conekta.yaml │ │ ├── Coppr.yaml │ │ ├── Credorax.yaml │ │ ├── Cryptomus.yaml │ │ ├── Cryptonator.yaml │ │ ├── CyberSource.yaml │ │ ├── DataCash.yaml │ │ ├── Dengi.yaml │ │ ├── Dimoco.yaml │ │ ├── Directa24.yaml │ │ ├── Directa24Banks.yaml │ │ ├── Dragonphoenix.yaml │ │ ├── Dropayment.yaml │ │ ├── EBANX.yaml │ │ ├── EMS.yaml │ │ ├── EPG.yaml │ │ ├── EPro.yaml │ │ ├── EasyPayDirect.yaml │ │ ├── EcorePay.yaml │ │ ├── Elavon.yaml │ │ ├── Euteller.yaml │ │ ├── Ezeebill.yaml │ │ ├── FasterPay.yaml │ │ ├── FinTecSystems.yaml │ │ ├── Finrax.yaml │ │ ├── Flexepin.yaml │ │ ├── Forte.yaml │ │ ├── FundSend.yaml │ │ ├── GET.yaml │ │ ├── Gigadat.yaml │ │ ├── GlobalOne.yaml │ │ ├── GoCardless.yaml │ │ ├── Gooney.yaml │ │ ├── Gpaysafe.yaml │ │ ├── Greenbox.yaml │ │ ├── HiPay.yaml │ │ ├── ICEPAY.yaml │ │ ├── INOVAPAY.yaml │ │ ├── Ilixium.yaml │ │ ├── Ingenico.yaml │ │ ├── Inovio.yaml │ │ ├── InstaDebit.yaml │ │ ├── Intuit.yaml │ │ ├── IpayOptions.yaml │ │ ├── JPMOrbital.yaml │ │ ├── JetPay.yaml │ │ ├── Jeton.yaml │ │ ├── Khelocard.yaml │ │ ├── Klarna.yaml │ │ ├── Konnektive.yaml │ │ ├── Kushki.yaml │ │ ├── LPG.yaml │ │ ├── LaCore.yaml │ │ ├── Limepay.yaml │ │ ├── Loonio.yaml │ │ ├── MaxiCash.yaml │ │ ├── MercadoPago.yaml │ │ ├── MiFinity.yaml │ │ ├── MobilePay.yaml │ │ ├── MonRem.yaml │ │ ├── Moneris.yaml │ │ ├── Monolo.yaml │ │ ├── MtaPay.yaml │ │ ├── MuchBetter.yaml │ │ ├── MuchBetterGateway.yaml │ │ ├── MyFatoorah.yaml │ │ ├── NGenius.yaml │ │ ├── NMI.yaml │ │ ├── NOWPayments.yaml │ │ ├── Naewe.yaml │ │ ├── Neosurf.yaml │ │ ├── Netbanking.yaml │ │ ├── Neteller.yaml │ │ ├── NinjaWallet.yaml │ │ ├── NordikCoin.yaml │ │ ├── NuaPay.yaml │ │ ├── OchaPay.yaml │ │ ├── OmniMatrix.yaml │ │ ├── OnRamp.yaml │ │ ├── Onlineueberweisen.yaml │ │ ├── Orbital.yaml │ │ ├── PPRO.yaml │ │ ├── PSiGate.yaml │ │ ├── Pagadito.yaml │ │ ├── Pagsmile.yaml │ │ ├── Panamerican.yaml │ │ ├── PandaGateway.yaml │ │ ├── ParamountCommerce.yaml │ │ ├── ParamountEft.yaml │ │ ├── ParamountInterac.yaml │ │ ├── Pay4Fun.yaml │ │ ├── PayCash.yaml │ │ ├── PayClub.yaml │ │ ├── PayCom.yaml │ │ ├── PayEcards.yaml │ │ ├── PayPal.yaml │ │ ├── PayRedeem.yaml │ │ ├── PayRetailers.yaml │ │ ├── PayTabs.yaml │ │ ├── PayU.yaml │ │ ├── PayULatam.yaml │ │ ├── Paybilt.yaml │ │ ├── Paycly.yaml │ │ ├── Payeezy.yaml │ │ ├── Payflow.yaml │ │ ├── PaymenTechnologies.yaml │ │ ├── PaymentAsia.yaml │ │ ├── PaymentsOS.yaml │ │ ├── Paymero.yaml │ │ ├── Paynote.yaml │ │ ├── Payper.yaml │ │ ├── Payr.yaml │ │ ├── Paysafe.yaml │ │ ├── Paysafecard.yaml │ │ ├── Paysafecash.yaml │ │ ├── Payvision.yaml │ │ ├── PharosPayments.yaml │ │ ├── Piastrix.yaml │ │ ├── Pin4Pay.yaml │ │ ├── Plugnpay.yaml │ │ ├── PostFinance.yaml │ │ ├── Prosa.yaml │ │ ├── RPN.yaml │ │ ├── Rapyd.yaml │ │ ├── Realex.yaml │ │ ├── Realtime.yaml │ │ ├── Redsys.yaml │ │ ├── Rotessa.yaml │ │ ├── SMSVoucher.yaml │ │ ├── STPMexico.yaml │ │ ├── STPMexicoBanks.yaml │ │ ├── Safecharge.yaml │ │ ├── Sagepay.yaml │ │ ├── SaltarPay.yaml │ │ ├── SeamlessChex.yaml │ │ ├── SecureTrading.yaml │ │ ├── SecurionPay.yaml │ │ ├── Skrill.yaml │ │ ├── SmartInvoice.yaml │ │ ├── Sofort.yaml │ │ ├── SparkPay.yaml │ │ ├── Splitit.yaml │ │ ├── StaticGateway.yaml │ │ ├── Stripe.yaml │ │ ├── TWINT.yaml │ │ ├── Tabby.yaml │ │ ├── Telr.yaml │ │ ├── TestProcessor.yaml │ │ ├── ThreeDSecureIO3dsServer.yaml │ │ ├── ToditoCash.yaml │ │ ├── Triple000.yaml │ │ ├── Truevo.yaml │ │ ├── Trustly.yaml │ │ ├── TrustsPay.yaml │ │ ├── UPayCard.yaml │ │ ├── USAePay.yaml │ │ ├── Unlimit.yaml │ │ ├── VCreditos.yaml │ │ ├── VantivLitle.yaml │ │ ├── VegaWallet.yaml │ │ ├── Wallet88.yaml │ │ ├── Walpay.yaml │ │ ├── WesternUnion.yaml │ │ ├── Wirecard.yaml │ │ ├── WorldlineAtosFrankfurt.yaml │ │ ├── Worldpay.yaml │ │ ├── XPay.yaml │ │ ├── Zimpler.yaml │ │ ├── Zotapay.yaml │ │ ├── dLocal.yaml │ │ ├── eMerchantPay.yaml │ │ ├── ePay.yaml │ │ ├── eZeeWallet.yaml │ │ ├── ecoPayz.yaml │ │ ├── ecoPayzTurkey.yaml │ │ ├── ezyEFT.yaml │ │ ├── gate2way.yaml │ │ ├── iCanPay.yaml │ │ ├── iCashOne.yaml │ │ ├── iCheque.yaml │ │ ├── iDebit.yaml │ │ ├── loonie.yaml │ │ └── vegaaH.yaml │ │ ├── GatewayAccountDowntimeSchedule.yaml │ │ ├── GatewayAccountFinancialSettings.yaml │ │ ├── GatewayAccountLimit.yaml │ │ ├── GatewayAccountPickInstruction.yaml │ │ ├── GatewayAccountTimeline.yaml │ │ ├── GatewayName.yaml │ │ ├── GlobalEventType.yaml │ │ ├── GlobalWebhook.yaml │ │ ├── GooglePayFeature.yaml │ │ ├── GoogleSpreadsheet.yaml │ │ ├── GridSegment.yaml │ │ ├── HistogramData.yaml │ │ ├── HttpHeaders.yaml │ │ ├── IBANInstrument.yaml │ │ ├── IBANType.yaml │ │ ├── IntegerCustomField.yaml │ │ ├── Integration.yaml │ │ ├── InvalidError.yaml │ │ ├── Invoice.yaml │ │ ├── InvoiceIssue.yaml │ │ ├── InvoiceItem.yaml │ │ ├── InvoiceItemsDataExport.yaml │ │ ├── InvoiceReissue.yaml │ │ ├── InvoiceRetryAmountAdjustmentInstruction.yaml │ │ ├── InvoiceRetryScheduleInstruction.yaml │ │ ├── InvoiceTimeShift.yaml │ │ ├── InvoiceTimeline.yaml │ │ ├── InvoiceTransaction.yaml │ │ ├── InvoiceTransactionAllocation.yaml │ │ ├── InvoicesDataExport.yaml │ │ ├── JournalAccount.yaml │ │ ├── JournalEntry.yaml │ │ ├── JournalRecord.yaml │ │ ├── JournalRecordsDataExport.yaml │ │ ├── JournalSummaryReport.yaml │ │ ├── KhelocardCard.yaml │ │ ├── KhelocardCardToken.yaml │ │ ├── KlarnaFeature.yaml │ │ ├── KlarnaToken.yaml │ │ ├── KycAddressMatches.yaml │ │ ├── KycDocument.yaml │ │ ├── KycDocumentCheck.yaml │ │ ├── KycDocumentCheckList.yaml │ │ ├── KycDocumentMatchLevels.yaml │ │ ├── KycDocumentMatchesScore.yaml │ │ ├── KycDocumentRejection.yaml │ │ ├── KycDocumentRejectionReasonTypes.yaml │ │ ├── KycDocumentRequestStatuses.yaml │ │ ├── KycDocumentSubtypes.yaml │ │ ├── KycDocumentTypes.yaml │ │ ├── KycIdentityMatches.yaml │ │ ├── KycRequest.yaml │ │ ├── KycRequestDocument.yaml │ │ ├── KycSettings.yaml │ │ ├── KycSettingsAddress.yaml │ │ ├── KycSettingsIdentity.yaml │ │ ├── LanguageIsoCode.yaml │ │ ├── LastPaymentTime.yaml │ │ ├── LeadSource.yaml │ │ ├── LeadSourceData.yaml │ │ ├── ListTimelineTable.yaml │ │ ├── MailgunCredential.yaml │ │ ├── ManualShipping.yaml │ │ ├── ManualTax.yaml │ │ ├── Membership.yaml │ │ ├── MonetaryCustomField.yaml │ │ ├── Money.yaml │ │ ├── MoneyAmount.yaml │ │ ├── NumberCustomField.yaml │ │ ├── OAuth2Credential.yaml │ │ ├── OneColumnTimelineTable.yaml │ │ ├── OneTimeOrder.yaml │ │ ├── OneTimeSale.yaml │ │ ├── OneTimeSaleItem.yaml │ │ ├── OneTimeSalePlan.yaml │ │ ├── Order.yaml │ │ ├── OrderCancellation.yaml │ │ ├── OrderChange.yaml │ │ ├── OrderPause.yaml │ │ ├── OrderPreview.yaml │ │ ├── OrderReactivation.yaml │ │ ├── OrderTimeline.yaml │ │ ├── OrderUpcomingInvoice.yaml │ │ ├── OrderUpcomingInvoiceItem.yaml │ │ ├── Organization.yaml │ │ ├── OrganizationExport.yaml │ │ ├── OrganizationId.yaml │ │ ├── OriginalPlan.yaml │ │ ├── OwnerApplicationInstance.yaml │ │ ├── PayPalAccount.yaml │ │ ├── PayPalAccountAuthorization.yaml │ │ ├── PayPalBillingAgreementFeature.yaml │ │ ├── PayPalToken.yaml │ │ ├── PaymentCard.yaml │ │ ├── PaymentCardBrand.yaml │ │ ├── PaymentCardCreatePlain.yaml │ │ ├── PaymentCardFeature.yaml │ │ ├── PaymentCardToken.yaml │ │ ├── PaymentCardUpdatePlain.yaml │ │ ├── PaymentGatewayMetadata.yaml │ │ ├── PaymentInstruction.yaml │ │ ├── PaymentInstructionInstrument.yaml │ │ ├── PaymentInstructionMethods.yaml │ │ ├── PaymentInstructionToken.yaml │ │ ├── PaymentInstrument.yaml │ │ ├── PaymentInstrumentCreateToken.yaml │ │ ├── PaymentInstrumentNameInquiry.yaml │ │ ├── PaymentInstrumentUpdateToken.yaml │ │ ├── PaymentMethod.yaml │ │ ├── PaymentMethodMetadata.yaml │ │ ├── PayoutRequest.yaml │ │ ├── PayoutRequestCancellation.yaml │ │ ├── PayoutRequestRejection.yaml │ │ ├── PercentageFeeFormula.yaml │ │ ├── PeriodAnchor.yaml │ │ ├── PickInstructionGatewayAccountWeights.yaml │ │ ├── PickInstructionGatewayAcquirerWeights.yaml │ │ ├── PlaidAccountToken.yaml │ │ ├── PlaidCredential.yaml │ │ ├── Plan.yaml │ │ ├── PlanFormulaFixedFee.yaml │ │ ├── PlanFormulaFlatRate.yaml │ │ ├── PlanFormulaStairstep.yaml │ │ ├── PlanFormulaTiered.yaml │ │ ├── PlanFormulaVolume.yaml │ │ ├── PlanPriceFormula.yaml │ │ ├── PlanSetup.yaml │ │ ├── PlanTrial.yaml │ │ ├── PostmarkCredential.yaml │ │ ├── PriceBasedShippingRate.yaml │ │ ├── ProblemTypes │ │ ├── BaseProblem.yaml │ │ ├── BlankProblem.yaml │ │ ├── Conflict.yaml │ │ ├── DetailedProblem.yaml │ │ ├── DocumentedProblem.yaml │ │ ├── ExtendedProblem.yaml │ │ ├── Forbidden.yaml │ │ ├── NotFound.yaml │ │ ├── Problem.yaml │ │ ├── TooManyRequests.yaml │ │ ├── TrackedProblem.yaml │ │ ├── Unauthorized.yaml │ │ ├── ValidationError.yaml │ │ └── ValidationErrorExtensions.yaml │ │ ├── Product.yaml │ │ ├── Profile.yaml │ │ ├── ProfileMfa.yaml │ │ ├── ProofOfAddressKycDocument.yaml │ │ ├── ProofOfCreditFileKycDocument.yaml │ │ ├── ProofOfFundsKycDocument.yaml │ │ ├── ProofOfIdentityKycDocument.yaml │ │ ├── ProofOfPurchaseKycDocument.yaml │ │ ├── PurchaseMatches.yaml │ │ ├── Quote.yaml │ │ ├── QuoteItem.yaml │ │ ├── QuoteOneTimeSaleItem.yaml │ │ ├── QuoteSubscriptionItem.yaml │ │ ├── QuoteTimeline.yaml │ │ ├── ReactivationQuote.yaml │ │ ├── ReadyToPay.yaml │ │ ├── ReadyToPayAchMethod.yaml │ │ ├── ReadyToPayAchMethodFeature.yaml │ │ ├── ReadyToPayAmount.yaml │ │ ├── ReadyToPayGenericMethod.yaml │ │ ├── ReadyToPayItems.yaml │ │ ├── ReadyToPayKlarnaMethod.yaml │ │ ├── ReadyToPayKlarnaMethodFeature.yaml │ │ ├── ReadyToPayMethodFilters.yaml │ │ ├── ReadyToPayMethods.yaml │ │ ├── ReadyToPayPayPalMethod.yaml │ │ ├── ReadyToPayPayPalMethodFeature.yaml │ │ ├── ReadyToPayPaymentCardMethod.yaml │ │ ├── ReadyToPayout.yaml │ │ ├── ReadyToPayoutGenericMethod.yaml │ │ ├── ReadyToPayoutMethodFilters.yaml │ │ ├── ReadyToPayoutMethods.yaml │ │ ├── ReadyToPayoutPaymentCardMethod.yaml │ │ ├── RebillyAvalaraTax.yaml │ │ ├── RebillyShipping.yaml │ │ ├── RebillyTaxJarTax.yaml │ │ ├── RecurringOrder.yaml │ │ ├── RedemptionCancelTimelineAction.yaml │ │ ├── RedemptionRestriction.yaml │ │ ├── RefundTransaction.yaml │ │ ├── ReminderScheduleInstruction.yaml │ │ ├── RenewalSales.yaml │ │ ├── ReportAnnualRecurringRevenue.yaml │ │ ├── ReportDeclinedTransactions.yaml │ │ ├── ReportDeferredRevenue.yaml │ │ ├── ReportDisputeDelays.yaml │ │ ├── ReportDisputes.yaml │ │ ├── ReportEventsTriggeredSummary.yaml │ │ ├── ReportJournal.yaml │ │ ├── ReportKycRejections.yaml │ │ ├── ReportKycRequests.yaml │ │ ├── ReportMonthlyRecurringRevenue.yaml │ │ ├── ReportRetentionPercentage.yaml │ │ ├── ReportRetentionValue.yaml │ │ ├── ReportRevenueWaterfall.yaml │ │ ├── ReportRulesMatchedSummary.yaml │ │ ├── ReportStatistics.yaml │ │ ├── ReportTax.yaml │ │ ├── ReportTransactions.yaml │ │ ├── ResendEmailTimelineAction.yaml │ │ ├── ResetPasswordToken.yaml │ │ ├── ResourceCustomFields.yaml │ │ ├── ResourceId.yaml │ │ ├── ReverseTransaction.yaml │ │ ├── RiskMetadata.yaml │ │ ├── RiskReserveReleaseTransaction.yaml │ │ ├── RiskReserveTransaction.yaml │ │ ├── RiskScoreBlocklist.yaml │ │ ├── RiskScoreBlocklistType.yaml │ │ ├── RiskScoreBoolean.yaml │ │ ├── RiskScoreBracket.yaml │ │ ├── RiskScoreRules.yaml │ │ ├── Role.yaml │ │ ├── Rule.yaml │ │ ├── RuleAction.yaml │ │ ├── RuleActionAbandonScheduledPayments.yaml │ │ ├── RuleActionAddBlockList.yaml │ │ ├── RuleActionAddRiskScore.yaml │ │ ├── RuleActionAdjustReadyToPay.yaml │ │ ├── RuleActionAdjustReadyToPayout.yaml │ │ ├── RuleActionCancelScheduledPayments.yaml │ │ ├── RuleActionCheckOntarioRestriction.yaml │ │ ├── RuleActionCreateIntuitQuickbooksBalanceTransactionEntry.yaml │ │ ├── RuleActionCreateIntuitQuickbooksInvoice.yaml │ │ ├── RuleActionCreateIntuitQuickbooksPayment.yaml │ │ ├── RuleActionCreateIntuitQuickbooksRefundReceipt.yaml │ │ ├── RuleActionCreateIntuitQuickbooksRevenueRecognitionEntry.yaml │ │ ├── RuleActionDeclineTransaction.yaml │ │ ├── RuleActionDisplayOtherChoices.yaml │ │ ├── RuleActionGuessPaymentCardExpiration.yaml │ │ ├── RuleActionPerformExperianCheck.yaml │ │ ├── RuleActionPickGatewayAccount.yaml │ │ ├── RuleActionRequestKyc.yaml │ │ ├── RuleActionScheduleInvoiceRetry.yaml │ │ ├── RuleActionSchedulePayment.yaml │ │ ├── RuleActionScheduleReminder.yaml │ │ ├── RuleActionSendEmail.yaml │ │ ├── RuleActionStopSubscriptions.yaml │ │ ├── RuleActionTagOrUntagCustomer.yaml │ │ ├── RuleActionUpdateIntuitQuickbooksInvoice.yaml │ │ ├── RuleActionVoidIntuitQuickbooksInvoice.yaml │ │ ├── RuleSet.yaml │ │ ├── RuleSetDraft.yaml │ │ ├── RuleSetHistoryItem.yaml │ │ ├── RuleSetVersion.yaml │ │ ├── RulesEmailNotification.yaml │ │ ├── RulesEngineTimeline.yaml │ │ ├── RulesetRestoreTimelineAction.yaml │ │ ├── SESCredential.yaml │ │ ├── SamsungPayFeature.yaml │ │ ├── ScheduleInstruction.yaml │ │ ├── SchedulingMethodAuto.yaml │ │ ├── SchedulingMethodDateInterval.yaml │ │ ├── SchedulingMethodDayAndMonthOfYear.yaml │ │ ├── SchedulingMethodDayOfMonth.yaml │ │ ├── SchedulingMethodDayOfWeek.yaml │ │ ├── SchedulingMethodImmediately.yaml │ │ ├── SchedulingMethodIntelligent.yaml │ │ ├── Search.yaml │ │ ├── SelfLink.yaml │ │ ├── SellFeeTransaction.yaml │ │ ├── SendGridCredential.yaml │ │ ├── SendThroughAttribution.yaml │ │ ├── ServerTimestamp.yaml │ │ ├── ServiceCredential.yaml │ │ ├── ServicePeriodAnchorInstruction.yaml │ │ ├── Session.yaml │ │ ├── SettlementPeriod.yaml │ │ ├── SettlementSettings.yaml │ │ ├── Shipping.yaml │ │ ├── ShippingOption.yaml │ │ ├── ShippingRate.yaml │ │ ├── ShowEddSearchLogsTimelineAction.yaml │ │ ├── SmtpAuthorization.yaml │ │ ├── SmtpAuthorizationCramMd5.yaml │ │ ├── SmtpAuthorizationLogin.yaml │ │ ├── SmtpAuthorizationNone.yaml │ │ ├── SmtpAuthorizationPlain.yaml │ │ ├── SmtpCredential.yaml │ │ ├── Status.yaml │ │ ├── StorefrontAccount.yaml │ │ ├── StorefrontAlternativeInstrument.yaml │ │ ├── StorefrontBankAccount.yaml │ │ ├── StorefrontBillingPortal.yaml │ │ ├── StorefrontCashier.yaml │ │ ├── StorefrontChangeQuote.yaml │ │ ├── StorefrontCheckoutForm.yaml │ │ ├── StorefrontCreationQuote.yaml │ │ ├── StorefrontCustomerJWT.yaml │ │ ├── StorefrontInvoice.yaml │ │ ├── StorefrontKhelocardCard.yaml │ │ ├── StorefrontKycDocument.yaml │ │ ├── StorefrontKycLivenessSession.yaml │ │ ├── StorefrontKycRequest.yaml │ │ ├── StorefrontOneTimeSale.yaml │ │ ├── StorefrontOrder.yaml │ │ ├── StorefrontOrderPreview.yaml │ │ ├── StorefrontPayPalAccount.yaml │ │ ├── StorefrontPaymentCard.yaml │ │ ├── StorefrontPaymentInstrument.yaml │ │ ├── StorefrontPayoutRequest.yaml │ │ ├── StorefrontPlan.yaml │ │ ├── StorefrontProduct.yaml │ │ ├── StorefrontProofOfAddressKycDocument.yaml │ │ ├── StorefrontProofOfCreditFileKycDocument.yaml │ │ ├── StorefrontProofOfFundsKycDocument.yaml │ │ ├── StorefrontProofOfIdentityKycDocument.yaml │ │ ├── StorefrontProofOfPurchaseKycDocument.yaml │ │ ├── StorefrontPurchase.yaml │ │ ├── StorefrontQuote.yaml │ │ ├── StorefrontReactivationQuote.yaml │ │ ├── StorefrontSubscription.yaml │ │ ├── StorefrontSubscriptionOrOneTimeSaleItem.yaml │ │ ├── StorefrontTransaction.yaml │ │ ├── StorefrontUpcomingInvoice.yaml │ │ ├── StringCustomField.yaml │ │ ├── Subscription.yaml │ │ ├── SubscriptionCancellation.yaml │ │ ├── SubscriptionCancellationReport.yaml │ │ ├── SubscriptionChange.yaml │ │ ├── SubscriptionInvoice.yaml │ │ ├── SubscriptionItem.yaml │ │ ├── SubscriptionOrOneTimeSale.yaml │ │ ├── SubscriptionOrOneTimeSaleItem.yaml │ │ ├── SubscriptionPause.yaml │ │ ├── SubscriptionPlan.yaml │ │ ├── SubscriptionReactivation.yaml │ │ ├── SubscriptionRenewal.yaml │ │ ├── SubscriptionSummaryMetrics.yaml │ │ ├── SubscriptionsDataExport.yaml │ │ ├── SystemEvent.yaml │ │ ├── Tag.yaml │ │ ├── TagUntagRule.yaml │ │ ├── TaxItem.yaml │ │ ├── TaxJarCredential.yaml │ │ ├── TaxNumber.yaml │ │ ├── TaxTracking.yaml │ │ ├── Taxes.yaml │ │ ├── ThreeColumnsTimelineTable.yaml │ │ ├── TimeIso8601.yaml │ │ ├── TimeIso8601Extended.yaml │ │ ├── TimePluralUnit.yaml │ │ ├── TimeSeriesTransaction.yaml │ │ ├── TimeUnit.yaml │ │ ├── TimelineAction.yaml │ │ ├── TimelineExtraData.yaml │ │ ├── TimelineTable.yaml │ │ ├── Transaction.yaml │ │ ├── TransactionId.yaml │ │ ├── TransactionLimitAmount.yaml │ │ ├── TransactionQuery.yaml │ │ ├── TransactionRefund.yaml │ │ ├── TransactionTimeline.yaml │ │ ├── TransactionUpdate.yaml │ │ ├── TransactionsDataExport.yaml │ │ ├── TrialOnlyPlan.yaml │ │ ├── TwoColumnsTimelineTable.yaml │ │ ├── UpcomingInvoice.yaml │ │ ├── UpcomingInvoiceItem.yaml │ │ ├── UpdatedTime.yaml │ │ ├── Usage.yaml │ │ ├── UsageLimits.yaml │ │ ├── UsageStatus.yaml │ │ ├── UseAsBackup.yaml │ │ ├── User.yaml │ │ ├── UserApplication.yaml │ │ ├── ValueList.yaml │ │ ├── VaultedInstrument.yaml │ │ ├── WebhookAuthorization.yaml │ │ ├── WebhookAuthorizationBasic.yaml │ │ ├── WebhookAuthorizationDigest.yaml │ │ ├── WebhookAuthorizationNone.yaml │ │ ├── WebhookCredential.yaml │ │ ├── WebhookTracking.yaml │ │ ├── Website.yaml │ │ └── WebsiteId.yaml ├── description.md ├── openapi.yaml ├── paths │ ├── README.md │ ├── allowlists.yaml │ ├── allowlists@{id}.yaml │ ├── aml-checks.yaml │ ├── aml-checks@{id}.yaml │ ├── aml-checks@{id}@review.yaml │ ├── aml-checks@{id}@start-review.yaml │ ├── aml-checks@{id}@stop-review.yaml │ ├── aml-settings.yaml │ ├── api-keys.yaml │ ├── api-keys@{id}.yaml │ ├── application-instances@{applicationId}.yaml │ ├── application-instances@{applicationId}@configuration.yaml │ ├── applications.yaml │ ├── applications@{id}.yaml │ ├── applications@{id}@instances.yaml │ ├── applications@{id}@instances@{organizationId}.yaml │ ├── attachments.yaml │ ├── attachments@{id}.yaml │ ├── authentication-options.yaml │ ├── authentication-tokens.yaml │ ├── authentication-tokens@{token}.yaml │ ├── authentication-tokens@{token}@exchange.yaml │ ├── balance-transactions.yaml │ ├── balance-transactions@{id}.yaml │ ├── billing-portals.yaml │ ├── billing-portals@{id}.yaml │ ├── blocklists.yaml │ ├── blocklists@{id}.yaml │ ├── broadcast-messages.yaml │ ├── broadcast-messages@{id}.yaml │ ├── cashiers.yaml │ ├── cashiers@{id}.yaml │ ├── checkout-forms.yaml │ ├── checkout-forms@{id}.yaml │ ├── coupons-redemptions.yaml │ ├── coupons-redemptions@{id}.yaml │ ├── coupons-redemptions@{id}@cancel.yaml │ ├── coupons.yaml │ ├── coupons@{id}.yaml │ ├── coupons@{id}@expiration.yaml │ ├── credentials.yaml │ ├── credentials@{id}.yaml │ ├── credit-memos.yaml │ ├── credit-memos@{id}.yaml │ ├── credit-memos@{id}@timeline.yaml │ ├── credit-memos@{id}@timeline@{messageId}.yaml │ ├── credit-memos@{id}@void.yaml │ ├── custom-domains.yaml │ ├── custom-domains@{domain}.yaml │ ├── custom-fields@{resource}.yaml │ ├── custom-fields@{resource}@{name}.yaml │ ├── customer-timeline-custom-events.yaml │ ├── customer-timeline-custom-events@{id}.yaml │ ├── customers.yaml │ ├── customers@{customerId}@summary-metrics.yaml │ ├── customers@{id}.yaml │ ├── customers@{id}@edd-score.yaml │ ├── customers@{id}@edd-search-results.yaml │ ├── customers@{id}@edd-search-results@{searchResultId}.yaml │ ├── customers@{id}@edd-timeline.yaml │ ├── customers@{id}@edd-timeline@{messageId}.yaml │ ├── customers@{id}@lead-source.yaml │ ├── customers@{id}@timeline.yaml │ ├── customers@{id}@timeline@{messageId}.yaml │ ├── data-exports.yaml │ ├── data-exports@{id}.yaml │ ├── deposit-custom-property-sets.yaml │ ├── deposit-custom-property-sets@{id}.yaml │ ├── deposit-requests.yaml │ ├── deposit-requests@{id}.yaml │ ├── deposit-strategies.yaml │ ├── deposit-strategies@{id}.yaml │ ├── digital-wallets@onboarding@apple-pay.yaml │ ├── digital-wallets@validation.yaml │ ├── disputes.yaml │ ├── disputes@{id}.yaml │ ├── email-delivery-setting-verifications@{token}.yaml │ ├── email-delivery-settings.yaml │ ├── email-delivery-settings@{id}.yaml │ ├── email-delivery-settings@{id}@resend-email-verification.yaml │ ├── email-messages.yaml │ ├── email-messages@{id}.yaml │ ├── email-notifications.yaml │ ├── events.yaml │ ├── events@{eventType}.yaml │ ├── events@{eventType}@rules.yaml │ ├── events@{eventType}@rules@drafts.yaml │ ├── events@{eventType}@rules@drafts@{id}.yaml │ ├── events@{eventType}@rules@history.yaml │ ├── events@{eventType}@rules@history@{version}.yaml │ ├── events@{eventType}@rules@versions@{version}.yaml │ ├── events@{eventType}@timeline.yaml │ ├── events@{eventType}@timeline@{messageId}.yaml │ ├── external-identifiers.yaml │ ├── external-services-settings.yaml │ ├── fees.yaml │ ├── fees@{id}.yaml │ ├── files.yaml │ ├── files@{id}.yaml │ ├── files@{id}@download.yaml │ ├── forgot-password.yaml │ ├── gateway-accounts.yaml │ ├── gateway-accounts@{id}.yaml │ ├── gateway-accounts@{id}@check-credentials.yaml │ ├── gateway-accounts@{id}@close.yaml │ ├── gateway-accounts@{id}@disable.yaml │ ├── gateway-accounts@{id}@downtime-schedules.yaml │ ├── gateway-accounts@{id}@downtime-schedules@{downtimeId}.yaml │ ├── gateway-accounts@{id}@enable.yaml │ ├── gateway-accounts@{id}@financial-settings.yaml │ ├── gateway-accounts@{id}@limits.yaml │ ├── gateway-accounts@{id}@limits@{limitId}.yaml │ ├── gateway-accounts@{id}@timeline.yaml │ ├── gateway-accounts@{id}@timeline@{messageId}.yaml │ ├── grid-segments.yaml │ ├── grid-segments@{id}.yaml │ ├── histograms@transactions.yaml │ ├── integrations.yaml │ ├── integrations@{label}.yaml │ ├── invoices.yaml │ ├── invoices@{id}.yaml │ ├── invoices@{id}@abandon.yaml │ ├── invoices@{id}@issue.yaml │ ├── invoices@{id}@items.yaml │ ├── invoices@{id}@items@{itemId}.yaml │ ├── invoices@{id}@recalculate.yaml │ ├── invoices@{id}@reissue.yaml │ ├── invoices@{id}@timeline.yaml │ ├── invoices@{id}@timeline@{messageId}.yaml │ ├── invoices@{id}@transaction-allocations.yaml │ ├── invoices@{id}@transaction.yaml │ ├── invoices@{id}@void.yaml │ ├── journal-accounts.yaml │ ├── journal-accounts@{id}.yaml │ ├── journal-entries.yaml │ ├── journal-entries@{id}.yaml │ ├── journal-records.yaml │ ├── journal-records@{id}.yaml │ ├── kyc-documents.yaml │ ├── kyc-documents@{id}.yaml │ ├── kyc-documents@{id}@acceptance.yaml │ ├── kyc-documents@{id}@matches.yaml │ ├── kyc-documents@{id}@rejection.yaml │ ├── kyc-documents@{id}@review.yaml │ ├── kyc-documents@{id}@start-review.yaml │ ├── kyc-documents@{id}@stop-review.yaml │ ├── kyc-requests.yaml │ ├── kyc-requests@{id}.yaml │ ├── kyc-settings.yaml │ ├── lists.yaml │ ├── lists@{id}.yaml │ ├── lists@{id}@{version}.yaml │ ├── memberships.yaml │ ├── memberships@{organizationId}@{userId}.yaml │ ├── order-cancellations.yaml │ ├── order-cancellations@{id}.yaml │ ├── order-pauses.yaml │ ├── order-pauses@{id}.yaml │ ├── order-reactivations.yaml │ ├── order-reactivations@{id}.yaml │ ├── orders.yaml │ ├── orders@{id}.yaml │ ├── orders@{id}@change-items.yaml │ ├── orders@{id}@interim-invoice.yaml │ ├── orders@{id}@items@{itemId}.yaml │ ├── orders@{id}@upcoming-invoice.yaml │ ├── orders@{id}@upcoming-invoice@issue.yaml │ ├── orders@{id}@void.yaml │ ├── organization-exports.yaml │ ├── organization-exports@{id}.yaml │ ├── organizations.yaml │ ├── organizations@{id}.yaml │ ├── password-tokens.yaml │ ├── password-tokens@{id}.yaml │ ├── payment-cards-bank-names.yaml │ ├── payment-gateways-metadata.yaml │ ├── payment-gateways-metadata@{apiName}.yaml │ ├── payment-instruments.yaml │ ├── payment-instruments@{id}.yaml │ ├── payment-instruments@{id}@deactivation.yaml │ ├── payment-instruments@{id}@name-inquiry.yaml │ ├── payment-methods.yaml │ ├── payment-methods@{apiName}.yaml │ ├── payout-requests.yaml │ ├── payout-requests@{id}.yaml │ ├── payout-requests@{id}@cancel.yaml │ ├── payout-requests@{id}@payment-instruments.yaml │ ├── payouts.yaml │ ├── permissions-emulation.yaml │ ├── plans.yaml │ ├── plans@{id}.yaml │ ├── previews@orders.yaml │ ├── previews@rule-actions@send-email.yaml │ ├── previews@webhooks.yaml │ ├── products.yaml │ ├── products@{id}.yaml │ ├── profile.yaml │ ├── profile@mfa.yaml │ ├── quotes.yaml │ ├── quotes@{id}.yaml │ ├── quotes@{id}@accept.yaml │ ├── quotes@{id}@cancel.yaml │ ├── quotes@{id}@issue.yaml │ ├── quotes@{id}@recall.yaml │ ├── quotes@{id}@reject.yaml │ ├── quotes@{id}@timeline.yaml │ ├── quotes@{id}@timeline@{messageId}.yaml │ ├── ready-to-pay.yaml │ ├── reports@annual-recurring-revenue.yaml │ ├── reports@api-log-summary.yaml │ ├── reports@cumulative-subscriptions.yaml │ ├── reports@dashboard.yaml │ ├── reports@dcc-markup.yaml │ ├── reports@declined-transactions.yaml │ ├── reports@deferred-revenue.yaml │ ├── reports@disputes.yaml │ ├── reports@events-triggered.yaml │ ├── reports@events-triggered@{eventType}@rules.yaml │ ├── reports@future-renewals.yaml │ ├── reports@journal-summary.yaml │ ├── reports@journal.yaml │ ├── reports@kyc-acceptance-summary.yaml │ ├── reports@kyc-rejection-summary.yaml │ ├── reports@kyc-request-summary.yaml │ ├── reports@monthly-recurring-revenue.yaml │ ├── reports@renewal-sales.yaml │ ├── reports@retention-percentage.yaml │ ├── reports@retention-value.yaml │ ├── reports@revenue-waterfall.yaml │ ├── reports@subscription-cancellation.yaml │ ├── reports@subscription-renewal.yaml │ ├── reports@tax.yaml │ ├── reports@time-series-transaction.yaml │ ├── reports@transactions-time-dispute.yaml │ ├── reports@transactions.yaml │ ├── risk-score-rules.yaml │ ├── risk-score-rules@blocklists.yaml │ ├── roles.yaml │ ├── roles@{id}.yaml │ ├── search.yaml │ ├── send-through-attribution@{eventType}.yaml │ ├── service-credentials@{type}.yaml │ ├── service-credentials@{type}@{id}.yaml │ ├── service-credentials@{type}@{id}@items.yaml │ ├── shipping-rates.yaml │ ├── shipping-rates@{id}.yaml │ ├── status.yaml │ ├── storefront │ │ ├── account.yaml │ │ ├── account@forgot-password.yaml │ │ ├── account@password.yaml │ │ ├── account@resend-verification.yaml │ │ ├── account@reset-password@{token}.yaml │ │ ├── account@verification@{token}.yaml │ │ ├── billing-portals@{slug}.yaml │ │ ├── cashiers@{id}.yaml │ │ ├── cashiers@{id}payout-request-cancellation.yaml │ │ ├── checkout-forms@{id}.yaml │ │ ├── custom-fields@{resource}.yaml │ │ ├── deposit-requests@{id}.yaml │ │ ├── deposit-strategies@{id}.yaml │ │ ├── deposit.yaml │ │ ├── invoices.yaml │ │ ├── invoices@{id}.yaml │ │ ├── kyc-documents.yaml │ │ ├── kyc-documents@{id}.yaml │ │ ├── kyc-liveness-sessions.yaml │ │ ├── kyc-liveness-sessions@{id}.yaml │ │ ├── kyc-liveness-sessions@{id}@finish.yaml │ │ ├── kyc-requests@{id}.yaml │ │ ├── login.yaml │ │ ├── logout.yaml │ │ ├── orders.yaml │ │ ├── orders@{id}.yaml │ │ ├── orders@{id}@cancellation.yaml │ │ ├── orders@{id}@pause.yaml │ │ ├── orders@{id}@upcoming-invoice.yaml │ │ ├── payment-instruments.yaml │ │ ├── payment-instruments@{id}.yaml │ │ ├── payment-instruments@{id}@deactivation.yaml │ │ ├── payment-instruments@{id}@setup.yaml │ │ ├── payment.yaml │ │ ├── payout-requests.yaml │ │ ├── payout-requests@{id}.yaml │ │ ├── plans.yaml │ │ ├── plans@{id}.yaml │ │ ├── preview-purchase.yaml │ │ ├── products.yaml │ │ ├── products@{id}.yaml │ │ ├── purchase.yaml │ │ ├── quotes@{id}.yaml │ │ ├── quotes@{id}@accept.yaml │ │ ├── quotes@{id}@reject.yaml │ │ ├── ready-to-pay.yaml │ │ ├── ready-to-payout.yaml │ │ ├── register.yaml │ │ ├── subscription-reactivations.yaml │ │ ├── subscriptions.yaml │ │ ├── subscriptions@{id}@change-items.yaml │ │ ├── transactions.yaml │ │ ├── transactions@{id}.yaml │ │ ├── transactions@{id}@{token}@bypass.yaml │ │ ├── transactions@{id}@{token}@continue.yaml │ │ └── websites@{id}.yaml │ ├── subscription-cancellations.yaml │ ├── subscription-cancellations@{id}.yaml │ ├── subscription-pauses.yaml │ ├── subscription-pauses@{id}.yaml │ ├── subscription-reactivations.yaml │ ├── subscription-reactivations@{id}.yaml │ ├── subscriptions.yaml │ ├── subscriptions@{id}.yaml │ ├── subscriptions@{id}@change-items.yaml │ ├── subscriptions@{id}@interim-invoice.yaml │ ├── subscriptions@{id}@items@{itemId}.yaml │ ├── subscriptions@{id}@timeline.yaml │ ├── subscriptions@{id}@timeline@{messageId}.yaml │ ├── subscriptions@{id}@upcoming-invoice.yaml │ ├── subscriptions@{id}@upcoming-invoice@issue.yaml │ ├── subscriptions@{id}@upcoming-invoices.yaml │ ├── subscriptions@{id}@upcoming-invoices@{invoiceId}@issue.yaml │ ├── subscriptions@{id}@void.yaml │ ├── subscriptions@{subscriptionId}@summary-metrics.yaml │ ├── tags-rules.yaml │ ├── tags-rules@{id}.yaml │ ├── tags.yaml │ ├── tags@{tag}.yaml │ ├── tags@{tag}@aml-checks.yaml │ ├── tags@{tag}@aml-checks@{amlCheckId}.yaml │ ├── tags@{tag}@customers.yaml │ ├── tags@{tag}@customers@{customerId}.yaml │ ├── tags@{tag}@kyc-documents.yaml │ ├── tags@{tag}@kyc-documents@{kycDocumentId}.yaml │ ├── tokens.yaml │ ├── tokens@{token}.yaml │ ├── tracking@api.yaml │ ├── tracking@api@{id}.yaml │ ├── tracking@lists.yaml │ ├── tracking@taxes.yaml │ ├── tracking@taxes@{id}.yaml │ ├── tracking@webhooks.yaml │ ├── tracking@webhooks@{id}.yaml │ ├── tracking@webhooks@{id}@resend.yaml │ ├── transactions.yaml │ ├── transactions@{id}.yaml │ ├── transactions@{id}@query.yaml │ ├── transactions@{id}@refund.yaml │ ├── transactions@{id}@timeline.yaml │ ├── transactions@{id}@timeline@{messageId}.yaml │ ├── transactions@{id}@update.yaml │ ├── usages.yaml │ ├── usages@{id}.yaml │ ├── users.yaml │ ├── users@{id}.yaml │ ├── users@{id}@mfa.yaml │ ├── webhooks.yaml │ ├── webhooks@{id}.yaml │ ├── websites.yaml │ ├── websites@{id}.yaml │ └── {resource}@{resourceId}@external-identifiers@{service}.yaml └── webhooks │ ├── aml-list-possibly-matched.yaml │ ├── application-instance-disabled.yaml │ ├── application-instance-enabled.yaml │ ├── autodeposit-lookup-performed.yaml │ ├── balance-transaction-settled.yaml │ ├── coupon-application-removed.yaml │ ├── coupon-applied.yaml │ ├── coupon-expiration-modified.yaml │ ├── coupon-expired.yaml │ ├── coupon-issued.yaml │ ├── coupon-modified.yaml │ ├── coupon-redeemed.yaml │ ├── coupon-redemption-canceled.yaml │ ├── credit-memo-applied.yaml │ ├── credit-memo-created.yaml │ ├── credit-memo-modified.yaml │ ├── credit-memo-partially-applied.yaml │ ├── credit-memo-voided.yaml │ ├── customer-created.yaml │ ├── customer-merged.yaml │ ├── customer-one-time-password-requested.yaml │ ├── customer-redirected-offsite.yaml │ ├── customer-returned.yaml │ ├── customer-tax-number-validated.yaml │ ├── customer-updated.yaml │ ├── data-export-completed.yaml │ ├── dispute-created.yaml │ ├── dispute-modified.yaml │ ├── experian-check-performed.yaml │ ├── gateway-account-downtime-ended.yaml │ ├── gateway-account-downtime-started.yaml │ ├── gateway-account-limit-reached.yaml │ ├── gateway-account-onboarding-completed.yaml │ ├── gateway-account-onboarding-failed.yaml │ ├── gateway-account-requested.yaml │ ├── hard-usage-limit-reached.yaml │ ├── invoice-abandoned.yaml │ ├── invoice-created.yaml │ ├── invoice-issued.yaml │ ├── invoice-modified.yaml │ ├── invoice-paid.yaml │ ├── invoice-partially-paid.yaml │ ├── invoice-partially-refunded.yaml │ ├── invoice-past-due-reminder.yaml │ ├── invoice-past-due.yaml │ ├── invoice-refunded.yaml │ ├── invoice-reissued.yaml │ ├── invoice-tax-calculation-failed.yaml │ ├── invoice-voided.yaml │ ├── kyc-document-accepted.yaml │ ├── kyc-document-archived.yaml │ ├── kyc-document-created.yaml │ ├── kyc-document-modified.yaml │ ├── kyc-document-rejected.yaml │ ├── kyc-document-reviewed.yaml │ ├── kyc-request-attempted.yaml │ ├── kyc-request-failed.yaml │ ├── kyc-request-fulfilled.yaml │ ├── kyc-request-partially-fulfilled.yaml │ ├── lead-source-changed.yaml │ ├── offsite-payment-completed.yaml │ ├── order-abandon-reminder.yaml │ ├── order-abandoned.yaml │ ├── order-completed.yaml │ ├── order-delinquency-reached.yaml │ ├── orders-experimental-hard-usage-limit-reached.yaml │ ├── orders-experimental-order-abandon-reminder.yaml │ ├── orders-experimental-order-abandoned.yaml │ ├── orders-experimental-order-completed.yaml │ ├── orders-experimental-order-delinquency-reached.yaml │ ├── orders-experimental-renewal-invoice-issued.yaml │ ├── orders-experimental-soft-usage-limit-reached.yaml │ ├── orders-experimental-subscription-activated.yaml │ ├── orders-experimental-subscription-canceled.yaml │ ├── orders-experimental-subscription-churned.yaml │ ├── orders-experimental-subscription-created.yaml │ ├── orders-experimental-subscription-downgraded.yaml │ ├── orders-experimental-subscription-items-changed.yaml │ ├── orders-experimental-subscription-modified.yaml │ ├── orders-experimental-subscription-pause-created.yaml │ ├── orders-experimental-subscription-pause-modified.yaml │ ├── orders-experimental-subscription-pause-revoked.yaml │ ├── orders-experimental-subscription-paused.yaml │ ├── orders-experimental-subscription-quantity-filled-limit-reached.yaml │ ├── orders-experimental-subscription-reactivated.yaml │ ├── orders-experimental-subscription-renewal-reminder.yaml │ ├── orders-experimental-subscription-renewed.yaml │ ├── orders-experimental-subscription-resumed.yaml │ ├── orders-experimental-subscription-trial-converted.yaml │ ├── orders-experimental-subscription-trial-end-reminder.yaml │ ├── orders-experimental-subscription-trial-ended.yaml │ ├── orders-experimental-subscription-upgraded.yaml │ ├── orders-experimental-trial-usage-limit-reached.yaml │ ├── organization-tax-number-validated.yaml │ ├── payment-card-created.yaml │ ├── payment-card-expiration-reminder.yaml │ ├── payment-card-expired.yaml │ ├── payment-instrument-modified.yaml │ ├── payout-request-canceled.yaml │ ├── payout-request-created.yaml │ ├── payout-request-modified.yaml │ ├── quote-accepted.yaml │ ├── quote-canceled.yaml │ ├── quote-created.yaml │ ├── quote-expired.yaml │ ├── quote-issued.yaml │ ├── quote-recalled.yaml │ ├── quote-rejected.yaml │ ├── quote-updated.yaml │ ├── ready-to-pay-requested.yaml │ ├── renewal-invoice-issued.yaml │ ├── renewal-invoice-payment-canceled.yaml │ ├── renewal-invoice-payment-declined.yaml │ ├── risk-score-changed.yaml │ ├── soft-usage-limit-reached.yaml │ ├── subscription-activated.yaml │ ├── subscription-canceled.yaml │ ├── subscription-churned.yaml │ ├── subscription-created.yaml │ ├── subscription-downgraded.yaml │ ├── subscription-items-changed.yaml │ ├── subscription-modified.yaml │ ├── subscription-pause-created.yaml │ ├── subscription-pause-modified.yaml │ ├── subscription-pause-revoked.yaml │ ├── subscription-paused.yaml │ ├── subscription-quantity-filled-limit-reached.yaml │ ├── subscription-reactivated.yaml │ ├── subscription-renewal-reminder.yaml │ ├── subscription-renewed.yaml │ ├── subscription-resumed.yaml │ ├── subscription-trial-converted.yaml │ ├── subscription-trial-end-reminder.yaml │ ├── subscription-trial-ended.yaml │ ├── subscription-upgraded.yaml │ ├── transaction-amount-discrepancy-found.yaml │ ├── transaction-declined.yaml │ ├── transaction-discrepancy-found.yaml │ ├── transaction-process-requested.yaml │ ├── transaction-processed.yaml │ ├── transaction-reconciled.yaml │ ├── transaction-timeout-resolved.yaml │ ├── trial-usage-limit-reached.yaml │ └── waiting-gateway-transaction-completed.yaml ├── package.json ├── plugins ├── custom-rules.js ├── decorators.js ├── decorators │ ├── backport-to-30.js │ ├── change-title.js │ ├── include-deprecated-fields.js │ ├── remove-php-sample-prefix.js │ ├── remove-tag-groups.js │ └── remove-unused-tags.js ├── products-bundler │ ├── README.md │ ├── bundler.js │ └── mapping │ │ ├── Combined.yaml │ │ ├── Core.yaml │ │ ├── Reports.yaml │ │ ├── Storefront.yaml │ │ └── Users.yaml └── rules │ ├── no-unused-tags.js │ └── sibling-ref.js ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── redocly.yaml ├── replay-rules.yaml ├── run-respect.js ├── specification-extensions.md ├── tests ├── health-check.arazzo.yaml ├── smoke-tests.arazzo.yaml └── synapse-squad │ └── arazzo.yaml └── web ├── apple-touch-icon-163dpi.png ├── apple-touch-icon-326dpi.png ├── favicon.ico ├── favicon.png ├── images └── app-store-example.png ├── index.html └── rb_apiLogo.svg /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/.gitignore -------------------------------------------------------------------------------- /.redocly.lint-ignore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/.redocly.lint-ignore.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/README.md -------------------------------------------------------------------------------- /WRITING-STYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/WRITING-STYLE.md -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/api-keys/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/api-keys/get.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/api-keys/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/api-keys/post.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/blocklists/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/blocklists/get.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/coupons/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/coupons/get.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/coupons/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/coupons/post.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/customers/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/customers/get.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/customers/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/customers/post.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/disputes/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/disputes/get.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/disputes/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/disputes/post.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/events/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/events/get.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/files/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/files/get.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/files/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/files/post.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/files@{id}/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/files@{id}/get.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/files@{id}/put.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/files@{id}/put.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/invoices/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/invoices/get.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/invoices/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/invoices/post.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/lists/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/lists/get.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/lists/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/lists/post.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/lists@{id}/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/lists@{id}/get.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/lists@{id}/put.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/lists@{id}/put.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/plans/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/plans/get.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/plans/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/plans/post.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/plans@{id}/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/plans@{id}/get.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/plans@{id}/put.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/plans@{id}/put.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/products/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/products/get.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/products/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/products/post.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/profile/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/profile/get.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/profile/put.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/profile/put.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/profile@mfa/delete.js: -------------------------------------------------------------------------------- 1 | await api.profile.deleteMfa(); 2 | -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/status/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/status/get.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/tokens/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/tokens/get.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/tokens/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/tokens/post.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/users/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/users/get.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/users/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/users/post.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/users@{id}/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/users@{id}/get.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/users@{id}/put.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/users@{id}/put.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/webhooks/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/webhooks/get.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/webhooks/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/webhooks/post.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/websites/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/websites/get.js -------------------------------------------------------------------------------- /openapi/code_samples/JavaScript/websites/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/JavaScript/websites/post.js -------------------------------------------------------------------------------- /openapi/code_samples/PHP-SDK-2.0/api-keys/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP-SDK-2.0/api-keys/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP-SDK-2.0/coupons/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP-SDK-2.0/coupons/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP-SDK-2.0/coupons/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP-SDK-2.0/coupons/post.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP-SDK-2.0/disputes/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP-SDK-2.0/disputes/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP-SDK-2.0/files/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP-SDK-2.0/files/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP-SDK-2.0/files/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP-SDK-2.0/files/post.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP-SDK-2.0/files@{id}/delete.php: -------------------------------------------------------------------------------- 1 | $client->files()->delete('fileId'); 2 | -------------------------------------------------------------------------------- /openapi/code_samples/PHP-SDK-2.0/invoices/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP-SDK-2.0/invoices/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP-SDK-2.0/plans/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP-SDK-2.0/plans/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP-SDK-2.0/plans/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP-SDK-2.0/plans/post.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP-SDK-2.0/plans@{id}/delete.php: -------------------------------------------------------------------------------- 1 | $client->plans()->delete('planId'); 2 | -------------------------------------------------------------------------------- /openapi/code_samples/PHP-SDK-2.0/tokens/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP-SDK-2.0/tokens/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP-SDK-2.0/tokens/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP-SDK-2.0/tokens/post.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP-SDK-2.0/users/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP-SDK-2.0/users/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP-SDK-2.0/users/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP-SDK-2.0/users/post.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP-SDK-2.0/websites/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP-SDK-2.0/websites/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /composer.lock 3 | /.php-cs-fixer.cache -------------------------------------------------------------------------------- /openapi/code_samples/PHP/.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/.php-cs-fixer.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/api-keys/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/api-keys/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/api-keys/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/api-keys/post.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/api-keys@{id}/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/api-keys@{id}/delete.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/api-keys@{id}/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/api-keys@{id}/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/api-keys@{id}/put.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/api-keys@{id}/put.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/applications/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/applications/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/applications/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/applications/post.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/attachments/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/attachments/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/attachments/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/attachments/post.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/attachments@{id}/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/attachments@{id}/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/attachments@{id}/put.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/attachments@{id}/put.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/blocklists/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/blocklists/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/blocklists/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/blocklists/post.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/blocklists@{id}/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/blocklists@{id}/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/blocklists@{id}/put.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/blocklists@{id}/put.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/composer.json -------------------------------------------------------------------------------- /openapi/code_samples/PHP/coupons/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/coupons/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/coupons/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/coupons/post.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/coupons@{id}/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/coupons@{id}/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/coupons@{id}/put.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/coupons@{id}/put.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/credentials/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/credentials/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/credentials/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/credentials/post.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/credentials@{id}/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/credentials@{id}/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/credentials@{id}/put.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/credentials@{id}/put.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/customers/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/customers/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/customers/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/customers/post.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/customers@{id}/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/customers@{id}/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/customers@{id}/put.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/customers@{id}/put.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/data-exports/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/data-exports/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/data-exports/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/data-exports/post.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/disputes/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/disputes/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/disputes/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/disputes/post.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/disputes@{id}/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/disputes@{id}/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/disputes@{id}/put.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/disputes@{id}/put.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/files/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/files/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/files/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/files/post.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/files@{id}/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/files@{id}/delete.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/files@{id}/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/files@{id}/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/files@{id}/put.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/files@{id}/put.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/forgot-password/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/forgot-password/post.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/gateway-accounts/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/gateway-accounts/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/invoices/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/invoices/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/invoices/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/invoices/post.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/invoices@{id}/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/invoices@{id}/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/invoices@{id}/put.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/invoices@{id}/put.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/lists/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/lists/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/lists/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/lists/post.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/lists@{id}/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/lists@{id}/delete.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/lists@{id}/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/lists@{id}/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/lists@{id}/put.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/lists@{id}/put.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/organizations/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/organizations/post.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/password-tokens/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/password-tokens/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/password-tokens/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/password-tokens/post.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/plans/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/plans/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/plans/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/plans/post.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/plans@{id}/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/plans@{id}/delete.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/plans@{id}/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/plans@{id}/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/plans@{id}/put.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/plans@{id}/put.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/products/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/products/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/products/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/products/post.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/products@{id}/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/products@{id}/delete.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/products@{id}/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/products@{id}/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/products@{id}/put.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/products@{id}/put.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/psalm.xml -------------------------------------------------------------------------------- /openapi/code_samples/PHP/ready-to-pay/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/ready-to-pay/post.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/reports@disputes/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/reports@disputes/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/reports@journal/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/reports@journal/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/subscriptions/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/subscriptions/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/subscriptions/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/subscriptions/post.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/tags/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/tags/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/tags/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/tags/post.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/tokens/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/tokens/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/tokens/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/tokens/post.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/tokens@{token}/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/tokens@{token}/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/tracking@api/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/tracking@api/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/transactions/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/transactions/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/transactions/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/transactions/post.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/users/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/users/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/users/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/users/post.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/users@{id}/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/users@{id}/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/users@{id}/put.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/users@{id}/put.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/websites/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/websites/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/websites/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/websites/post.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/websites@{id}/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/websites@{id}/delete.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/websites@{id}/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/websites@{id}/get.php -------------------------------------------------------------------------------- /openapi/code_samples/PHP/websites@{id}/put.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/PHP/websites@{id}/put.php -------------------------------------------------------------------------------- /openapi/code_samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/code_samples/README.md -------------------------------------------------------------------------------- /openapi/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/README.md -------------------------------------------------------------------------------- /openapi/components/headers/Location.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/headers/Location.yaml -------------------------------------------------------------------------------- /openapi/components/headers/Pagination-Limit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/headers/Pagination-Limit.yaml -------------------------------------------------------------------------------- /openapi/components/headers/Pagination-Offset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/headers/Pagination-Offset.yaml -------------------------------------------------------------------------------- /openapi/components/headers/Pagination-Total.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/headers/Pagination-Total.yaml -------------------------------------------------------------------------------- /openapi/components/headers/X-RateLimit-Limit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/headers/X-RateLimit-Limit.yaml -------------------------------------------------------------------------------- /openapi/components/parameters/applicationId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/parameters/applicationId.yaml -------------------------------------------------------------------------------- /openapi/components/parameters/collectionSort.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/parameters/collectionSort.yaml -------------------------------------------------------------------------------- /openapi/components/parameters/credentialType.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/parameters/credentialType.yaml -------------------------------------------------------------------------------- /openapi/components/parameters/customerId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/parameters/customerId.yaml -------------------------------------------------------------------------------- /openapi/components/parameters/hash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/parameters/hash.yaml -------------------------------------------------------------------------------- /openapi/components/parameters/imageSize.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/parameters/imageSize.yaml -------------------------------------------------------------------------------- /openapi/components/parameters/kycDocumentId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/parameters/kycDocumentId.yaml -------------------------------------------------------------------------------- /openapi/components/parameters/orderExpand.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/parameters/orderExpand.yaml -------------------------------------------------------------------------------- /openapi/components/parameters/organizationId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/parameters/organizationId.yaml -------------------------------------------------------------------------------- /openapi/components/parameters/resourceId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/parameters/resourceId.yaml -------------------------------------------------------------------------------- /openapi/components/parameters/rulesVersion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/parameters/rulesVersion.yaml -------------------------------------------------------------------------------- /openapi/components/parameters/tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/parameters/tag.yaml -------------------------------------------------------------------------------- /openapi/components/parameters/token.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/parameters/token.yaml -------------------------------------------------------------------------------- /openapi/components/requestBodies/ApiKey.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/requestBodies/ApiKey.yaml -------------------------------------------------------------------------------- /openapi/components/requestBodies/Attachment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/requestBodies/Attachment.yaml -------------------------------------------------------------------------------- /openapi/components/requestBodies/BankAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/requestBodies/BankAccount.yaml -------------------------------------------------------------------------------- /openapi/components/requestBodies/Blocklist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/requestBodies/Blocklist.yaml -------------------------------------------------------------------------------- /openapi/components/requestBodies/Coupon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/requestBodies/Coupon.yaml -------------------------------------------------------------------------------- /openapi/components/requestBodies/Customer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/requestBodies/Customer.yaml -------------------------------------------------------------------------------- /openapi/components/requestBodies/DataExport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/requestBodies/DataExport.yaml -------------------------------------------------------------------------------- /openapi/components/requestBodies/Dispute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/requestBodies/Dispute.yaml -------------------------------------------------------------------------------- /openapi/components/requestBodies/GridSegment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/requestBodies/GridSegment.yaml -------------------------------------------------------------------------------- /openapi/components/requestBodies/Invoice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/requestBodies/Invoice.yaml -------------------------------------------------------------------------------- /openapi/components/requestBodies/PatchFee.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/requestBodies/PatchFee.yaml -------------------------------------------------------------------------------- /openapi/components/requestBodies/PatchQuote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/requestBodies/PatchQuote.yaml -------------------------------------------------------------------------------- /openapi/components/requestBodies/PostCashier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/requestBodies/PostCashier.yaml -------------------------------------------------------------------------------- /openapi/components/requestBodies/Product.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/requestBodies/Product.yaml -------------------------------------------------------------------------------- /openapi/components/requestBodies/RuleSet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/requestBodies/RuleSet.yaml -------------------------------------------------------------------------------- /openapi/components/requestBodies/Tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/requestBodies/Tag.yaml -------------------------------------------------------------------------------- /openapi/components/requestBodies/UpdateTag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/requestBodies/UpdateTag.yaml -------------------------------------------------------------------------------- /openapi/components/requestBodies/User.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/requestBodies/User.yaml -------------------------------------------------------------------------------- /openapi/components/requestBodies/Website.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/requestBodies/Website.yaml -------------------------------------------------------------------------------- /openapi/components/responses/Conflict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/responses/Conflict.yaml -------------------------------------------------------------------------------- /openapi/components/responses/Customer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/responses/Customer.yaml -------------------------------------------------------------------------------- /openapi/components/responses/Forbidden.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/responses/Forbidden.yaml -------------------------------------------------------------------------------- /openapi/components/responses/Found.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/responses/Found.yaml -------------------------------------------------------------------------------- /openapi/components/responses/NoContent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/responses/NoContent.yaml -------------------------------------------------------------------------------- /openapi/components/responses/NotFound.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/responses/NotFound.yaml -------------------------------------------------------------------------------- /openapi/components/responses/SeeOther.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/responses/SeeOther.yaml -------------------------------------------------------------------------------- /openapi/components/responses/TooManyRequests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/responses/TooManyRequests.yaml -------------------------------------------------------------------------------- /openapi/components/responses/Unauthorized.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/responses/Unauthorized.yaml -------------------------------------------------------------------------------- /openapi/components/responses/ValidationError.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/responses/ValidationError.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/AML.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/AML.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/AchPlaidFeature.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/AchPlaidFeature.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Acl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Acl.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/AclPermissions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/AclPermissions.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/AcquirerName.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/AcquirerName.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/AllowedIps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/AllowedIps.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Allowlist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Allowlist.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/AmlCheck.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/AmlCheck.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/AmlCheckReview.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/AmlCheckReview.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/AmlConfidence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/AmlConfidence.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/AmlPriority.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/AmlPriority.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/AmlSettings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/AmlSettings.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/ApiKey.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/ApiKey.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/ApiKeyScope.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/ApiKeyScope.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/ApiLogSummary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/ApiLogSummary.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/ApiTracking.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/ApiTracking.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/ApplePayFeature.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/ApplePayFeature.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Application.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/ArrayCustomField.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/ArrayCustomField.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Attachment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Attachment.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/AvalaraCredential.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/AvalaraCredential.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/BBANInstrument.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/BBANInstrument.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/BBANType.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/BBANType.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/BankAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/BankAccount.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/BankAccountToken.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/BankAccountToken.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/BillingPortal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/BillingPortal.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Bind.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Bind.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Bips.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Bips.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Blocklist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Blocklist.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/BroadcastMessage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/BroadcastMessage.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/BuyFeeTransaction.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/BuyFeeTransaction.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/CashInstrument.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/CashInstrument.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Cashier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Cashier.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/ChangeQuote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/ChangeQuote.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/ChargeTransaction.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/ChargeTransaction.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/CheckInstrument.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/CheckInstrument.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/CheckoutForm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/CheckoutForm.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/CheckoutFormId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/CheckoutFormId.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/CheckoutFormPlan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/CheckoutFormPlan.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Company.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Company.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/CompositeToken.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/CompositeToken.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/ContactEmails.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/ContactEmails.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/ContactObject.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/ContactObject.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/CountriesMetadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/CountriesMetadata.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Country.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Country.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Coupon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Coupon.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/CouponExpiration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/CouponExpiration.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/CouponRedemption.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/CouponRedemption.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/CouponRestriction.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/CouponRestriction.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/CreatedTime.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/CreatedTime.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/CreationQuote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/CreationQuote.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/CreditFileMatches.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/CreditFileMatches.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/CreditMemo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/CreditMemo.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/CreditMemoTaxItem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/CreditMemoTaxItem.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/CurrencyCode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/CurrencyCode.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/CustomDomain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/CustomDomain.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/CustomField.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/CustomField.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Customer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Customer.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/CustomerId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/CustomerId.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/CustomerJWT.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/CustomerJWT.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/CustomerTimeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/CustomerTimeline.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/DashboardResponse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/DashboardResponse.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/DataExport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/DataExport.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/DateCustomField.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/DateCustomField.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/DccMarkup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/DccMarkup.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/DepositRequest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/DepositRequest.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/DepositStrategy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/DepositStrategy.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/DigitalWallets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/DigitalWallets.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Discount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Discount.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/DiscountContext.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/DiscountContext.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/DiscountFixed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/DiscountFixed.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/DiscountPercent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/DiscountPercent.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Dispute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Dispute.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Edd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Edd.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/EddScore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/EddScore.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/EddScoreDetails.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/EddScoreDetails.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/EddSearchResult.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/EddSearchResult.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/EddTimeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/EddTimeline.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/EmailMessage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/EmailMessage.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/EmailNotification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/EmailNotification.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Error.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Error.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/EventType.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/EventType.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Fee.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Fee.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/FeeFormula.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/FeeFormula.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/File.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/File.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/FixedFeeFormula.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/FixedFeeFormula.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/FlexiblePlan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/FlexiblePlan.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/ForgotPassword.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/ForgotPassword.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/FundsMatches.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/FundsMatches.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/FutureRenewals.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/FutureRenewals.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/GatewayAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/GatewayAccount.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/GatewayName.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/GatewayName.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/GlobalEventType.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/GlobalEventType.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/GlobalWebhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/GlobalWebhook.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/GooglePayFeature.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/GooglePayFeature.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/GoogleSpreadsheet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/GoogleSpreadsheet.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/GridSegment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/GridSegment.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/HistogramData.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/HistogramData.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/HttpHeaders.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/HttpHeaders.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/IBANInstrument.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/IBANInstrument.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/IBANType.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/IBANType.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Integration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Integration.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/InvalidError.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/InvalidError.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Invoice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Invoice.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/InvoiceIssue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/InvoiceIssue.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/InvoiceItem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/InvoiceItem.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/InvoiceReissue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/InvoiceReissue.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/InvoiceTimeShift.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/InvoiceTimeShift.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/InvoiceTimeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/InvoiceTimeline.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/JournalAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/JournalAccount.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/JournalEntry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/JournalEntry.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/JournalRecord.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/JournalRecord.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/KhelocardCard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/KhelocardCard.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/KlarnaFeature.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/KlarnaFeature.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/KlarnaToken.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/KlarnaToken.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/KycAddressMatches.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/KycAddressMatches.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/KycDocument.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/KycDocument.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/KycDocumentCheck.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/KycDocumentCheck.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/KycDocumentTypes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/KycDocumentTypes.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/KycRequest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/KycRequest.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/KycSettings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/KycSettings.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/LastPaymentTime.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/LastPaymentTime.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/LeadSource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/LeadSource.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/LeadSourceData.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/LeadSourceData.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/ListTimelineTable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/ListTimelineTable.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/MailgunCredential.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/MailgunCredential.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/ManualShipping.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/ManualShipping.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/ManualTax.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/ManualTax.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Membership.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Membership.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Money.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Money.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/MoneyAmount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/MoneyAmount.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/NumberCustomField.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/NumberCustomField.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/OAuth2Credential.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/OAuth2Credential.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/OneTimeOrder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/OneTimeOrder.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/OneTimeSale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/OneTimeSale.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/OneTimeSaleItem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/OneTimeSaleItem.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/OneTimeSalePlan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/OneTimeSalePlan.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Order.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Order.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/OrderCancellation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/OrderCancellation.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/OrderChange.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/OrderChange.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/OrderPause.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/OrderPause.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/OrderPreview.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/OrderPreview.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/OrderReactivation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/OrderReactivation.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/OrderTimeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/OrderTimeline.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Organization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Organization.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/OrganizationId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/OrganizationId.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/OriginalPlan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/OriginalPlan.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/PayPalAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/PayPalAccount.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/PayPalToken.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/PayPalToken.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/PaymentCard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/PaymentCard.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/PaymentCardBrand.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/PaymentCardBrand.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/PaymentCardToken.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/PaymentCardToken.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/PaymentMethod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/PaymentMethod.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/PayoutRequest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/PayoutRequest.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/PeriodAnchor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/PeriodAnchor.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/PlaidCredential.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/PlaidCredential.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Plan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Plan.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/PlanSetup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/PlanSetup.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/PlanTrial.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/PlanTrial.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Product.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Product.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Profile.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/ProfileMfa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/ProfileMfa.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/PurchaseMatches.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/PurchaseMatches.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Quote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Quote.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/QuoteItem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/QuoteItem.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/QuoteTimeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/QuoteTimeline.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/ReadyToPay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/ReadyToPay.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/ReadyToPayItems.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/ReadyToPayItems.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/ReadyToPayout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/ReadyToPayout.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/RebillyShipping.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/RebillyShipping.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/RecurringOrder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/RecurringOrder.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/RenewalSales.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/RenewalSales.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/ReportDisputes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/ReportDisputes.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/ReportJournal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/ReportJournal.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/ReportTax.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/ReportTax.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/ResourceId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/ResourceId.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/RiskMetadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/RiskMetadata.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/RiskScoreRules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/RiskScoreRules.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Role.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Rule.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/RuleAction.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/RuleAction.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/RuleActionGuessPaymentCardExpiration.yaml: -------------------------------------------------------------------------------- 1 | allOf: 2 | - $ref: ./RuleAction.yaml 3 | -------------------------------------------------------------------------------- /openapi/components/schemas/RuleSet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/RuleSet.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/RuleSetDraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/RuleSetDraft.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/RuleSetVersion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/RuleSetVersion.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/SESCredential.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/SESCredential.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Search.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Search.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/SelfLink.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/SelfLink.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/ServerTimestamp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/ServerTimestamp.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Session.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Session.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Shipping.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Shipping.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/ShippingOption.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/ShippingOption.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/ShippingRate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/ShippingRate.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/SmtpCredential.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/SmtpCredential.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Status.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Status.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/StorefrontOrder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/StorefrontOrder.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/StorefrontPlan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/StorefrontPlan.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/StorefrontQuote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/StorefrontQuote.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Subscription.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/SystemEvent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/SystemEvent.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Tag.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/TagUntagRule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/TagUntagRule.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/TaxItem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/TaxItem.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/TaxNumber.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/TaxNumber.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/TaxTracking.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/TaxTracking.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Taxes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Taxes.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/TimeIso8601.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/TimeIso8601.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/TimePluralUnit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/TimePluralUnit.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/TimeUnit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/TimeUnit.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/TimelineAction.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/TimelineAction.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/TimelineTable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/TimelineTable.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Transaction.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Transaction.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/TransactionId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/TransactionId.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/TrialOnlyPlan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/TrialOnlyPlan.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/UpcomingInvoice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/UpcomingInvoice.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/UpdatedTime.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/UpdatedTime.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Usage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Usage.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/UsageLimits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/UsageLimits.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/UsageStatus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/UsageStatus.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/UseAsBackup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/UseAsBackup.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/User.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/User.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/UserApplication.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/UserApplication.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/ValueList.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/ValueList.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/WebhookTracking.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/WebhookTracking.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/Website.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/Website.yaml -------------------------------------------------------------------------------- /openapi/components/schemas/WebsiteId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/components/schemas/WebsiteId.yaml -------------------------------------------------------------------------------- /openapi/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/description.md -------------------------------------------------------------------------------- /openapi/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/openapi.yaml -------------------------------------------------------------------------------- /openapi/paths/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/README.md -------------------------------------------------------------------------------- /openapi/paths/allowlists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/allowlists.yaml -------------------------------------------------------------------------------- /openapi/paths/allowlists@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/allowlists@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/aml-checks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/aml-checks.yaml -------------------------------------------------------------------------------- /openapi/paths/aml-checks@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/aml-checks@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/aml-checks@{id}@review.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/aml-checks@{id}@review.yaml -------------------------------------------------------------------------------- /openapi/paths/aml-checks@{id}@start-review.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/aml-checks@{id}@start-review.yaml -------------------------------------------------------------------------------- /openapi/paths/aml-checks@{id}@stop-review.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/aml-checks@{id}@stop-review.yaml -------------------------------------------------------------------------------- /openapi/paths/aml-settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/aml-settings.yaml -------------------------------------------------------------------------------- /openapi/paths/api-keys.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/api-keys.yaml -------------------------------------------------------------------------------- /openapi/paths/api-keys@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/api-keys@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/applications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/applications.yaml -------------------------------------------------------------------------------- /openapi/paths/applications@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/applications@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/applications@{id}@instances.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/applications@{id}@instances.yaml -------------------------------------------------------------------------------- /openapi/paths/attachments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/attachments.yaml -------------------------------------------------------------------------------- /openapi/paths/attachments@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/attachments@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/authentication-options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/authentication-options.yaml -------------------------------------------------------------------------------- /openapi/paths/authentication-tokens.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/authentication-tokens.yaml -------------------------------------------------------------------------------- /openapi/paths/balance-transactions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/balance-transactions.yaml -------------------------------------------------------------------------------- /openapi/paths/balance-transactions@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/balance-transactions@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/billing-portals.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/billing-portals.yaml -------------------------------------------------------------------------------- /openapi/paths/billing-portals@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/billing-portals@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/blocklists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/blocklists.yaml -------------------------------------------------------------------------------- /openapi/paths/blocklists@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/blocklists@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/broadcast-messages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/broadcast-messages.yaml -------------------------------------------------------------------------------- /openapi/paths/broadcast-messages@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/broadcast-messages@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/cashiers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/cashiers.yaml -------------------------------------------------------------------------------- /openapi/paths/cashiers@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/cashiers@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/checkout-forms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/checkout-forms.yaml -------------------------------------------------------------------------------- /openapi/paths/checkout-forms@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/checkout-forms@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/coupons-redemptions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/coupons-redemptions.yaml -------------------------------------------------------------------------------- /openapi/paths/coupons-redemptions@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/coupons-redemptions@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/coupons.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/coupons.yaml -------------------------------------------------------------------------------- /openapi/paths/coupons@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/coupons@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/coupons@{id}@expiration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/coupons@{id}@expiration.yaml -------------------------------------------------------------------------------- /openapi/paths/credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/credentials.yaml -------------------------------------------------------------------------------- /openapi/paths/credentials@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/credentials@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/credit-memos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/credit-memos.yaml -------------------------------------------------------------------------------- /openapi/paths/credit-memos@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/credit-memos@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/credit-memos@{id}@timeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/credit-memos@{id}@timeline.yaml -------------------------------------------------------------------------------- /openapi/paths/credit-memos@{id}@void.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/credit-memos@{id}@void.yaml -------------------------------------------------------------------------------- /openapi/paths/custom-domains.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/custom-domains.yaml -------------------------------------------------------------------------------- /openapi/paths/custom-domains@{domain}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/custom-domains@{domain}.yaml -------------------------------------------------------------------------------- /openapi/paths/custom-fields@{resource}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/custom-fields@{resource}.yaml -------------------------------------------------------------------------------- /openapi/paths/customers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/customers.yaml -------------------------------------------------------------------------------- /openapi/paths/customers@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/customers@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/customers@{id}@edd-score.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/customers@{id}@edd-score.yaml -------------------------------------------------------------------------------- /openapi/paths/customers@{id}@edd-timeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/customers@{id}@edd-timeline.yaml -------------------------------------------------------------------------------- /openapi/paths/customers@{id}@lead-source.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/customers@{id}@lead-source.yaml -------------------------------------------------------------------------------- /openapi/paths/customers@{id}@timeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/customers@{id}@timeline.yaml -------------------------------------------------------------------------------- /openapi/paths/data-exports.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/data-exports.yaml -------------------------------------------------------------------------------- /openapi/paths/data-exports@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/data-exports@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/deposit-custom-property-sets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/deposit-custom-property-sets.yaml -------------------------------------------------------------------------------- /openapi/paths/deposit-requests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/deposit-requests.yaml -------------------------------------------------------------------------------- /openapi/paths/deposit-requests@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/deposit-requests@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/deposit-strategies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/deposit-strategies.yaml -------------------------------------------------------------------------------- /openapi/paths/deposit-strategies@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/deposit-strategies@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/digital-wallets@validation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/digital-wallets@validation.yaml -------------------------------------------------------------------------------- /openapi/paths/disputes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/disputes.yaml -------------------------------------------------------------------------------- /openapi/paths/disputes@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/disputes@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/email-delivery-settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/email-delivery-settings.yaml -------------------------------------------------------------------------------- /openapi/paths/email-delivery-settings@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/email-delivery-settings@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/email-messages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/email-messages.yaml -------------------------------------------------------------------------------- /openapi/paths/email-messages@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/email-messages@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/email-notifications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/email-notifications.yaml -------------------------------------------------------------------------------- /openapi/paths/events.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/events.yaml -------------------------------------------------------------------------------- /openapi/paths/events@{eventType}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/events@{eventType}.yaml -------------------------------------------------------------------------------- /openapi/paths/events@{eventType}@rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/events@{eventType}@rules.yaml -------------------------------------------------------------------------------- /openapi/paths/events@{eventType}@timeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/events@{eventType}@timeline.yaml -------------------------------------------------------------------------------- /openapi/paths/external-identifiers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/external-identifiers.yaml -------------------------------------------------------------------------------- /openapi/paths/external-services-settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/external-services-settings.yaml -------------------------------------------------------------------------------- /openapi/paths/fees.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/fees.yaml -------------------------------------------------------------------------------- /openapi/paths/fees@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/fees@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/files.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/files.yaml -------------------------------------------------------------------------------- /openapi/paths/files@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/files@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/files@{id}@download.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/files@{id}@download.yaml -------------------------------------------------------------------------------- /openapi/paths/forgot-password.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/forgot-password.yaml -------------------------------------------------------------------------------- /openapi/paths/gateway-accounts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/gateway-accounts.yaml -------------------------------------------------------------------------------- /openapi/paths/gateway-accounts@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/gateway-accounts@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/gateway-accounts@{id}@close.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/gateway-accounts@{id}@close.yaml -------------------------------------------------------------------------------- /openapi/paths/gateway-accounts@{id}@enable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/gateway-accounts@{id}@enable.yaml -------------------------------------------------------------------------------- /openapi/paths/gateway-accounts@{id}@limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/gateway-accounts@{id}@limits.yaml -------------------------------------------------------------------------------- /openapi/paths/grid-segments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/grid-segments.yaml -------------------------------------------------------------------------------- /openapi/paths/grid-segments@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/grid-segments@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/histograms@transactions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/histograms@transactions.yaml -------------------------------------------------------------------------------- /openapi/paths/integrations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/integrations.yaml -------------------------------------------------------------------------------- /openapi/paths/integrations@{label}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/integrations@{label}.yaml -------------------------------------------------------------------------------- /openapi/paths/invoices.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/invoices.yaml -------------------------------------------------------------------------------- /openapi/paths/invoices@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/invoices@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/invoices@{id}@abandon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/invoices@{id}@abandon.yaml -------------------------------------------------------------------------------- /openapi/paths/invoices@{id}@issue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/invoices@{id}@issue.yaml -------------------------------------------------------------------------------- /openapi/paths/invoices@{id}@items.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/invoices@{id}@items.yaml -------------------------------------------------------------------------------- /openapi/paths/invoices@{id}@items@{itemId}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/invoices@{id}@items@{itemId}.yaml -------------------------------------------------------------------------------- /openapi/paths/invoices@{id}@recalculate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/invoices@{id}@recalculate.yaml -------------------------------------------------------------------------------- /openapi/paths/invoices@{id}@reissue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/invoices@{id}@reissue.yaml -------------------------------------------------------------------------------- /openapi/paths/invoices@{id}@timeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/invoices@{id}@timeline.yaml -------------------------------------------------------------------------------- /openapi/paths/invoices@{id}@transaction.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/invoices@{id}@transaction.yaml -------------------------------------------------------------------------------- /openapi/paths/invoices@{id}@void.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/invoices@{id}@void.yaml -------------------------------------------------------------------------------- /openapi/paths/journal-accounts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/journal-accounts.yaml -------------------------------------------------------------------------------- /openapi/paths/journal-accounts@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/journal-accounts@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/journal-entries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/journal-entries.yaml -------------------------------------------------------------------------------- /openapi/paths/journal-entries@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/journal-entries@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/journal-records.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/journal-records.yaml -------------------------------------------------------------------------------- /openapi/paths/journal-records@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/journal-records@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/kyc-documents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/kyc-documents.yaml -------------------------------------------------------------------------------- /openapi/paths/kyc-documents@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/kyc-documents@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/kyc-documents@{id}@matches.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/kyc-documents@{id}@matches.yaml -------------------------------------------------------------------------------- /openapi/paths/kyc-documents@{id}@rejection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/kyc-documents@{id}@rejection.yaml -------------------------------------------------------------------------------- /openapi/paths/kyc-documents@{id}@review.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/kyc-documents@{id}@review.yaml -------------------------------------------------------------------------------- /openapi/paths/kyc-requests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/kyc-requests.yaml -------------------------------------------------------------------------------- /openapi/paths/kyc-requests@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/kyc-requests@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/kyc-settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/kyc-settings.yaml -------------------------------------------------------------------------------- /openapi/paths/lists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/lists.yaml -------------------------------------------------------------------------------- /openapi/paths/lists@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/lists@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/lists@{id}@{version}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/lists@{id}@{version}.yaml -------------------------------------------------------------------------------- /openapi/paths/memberships.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/memberships.yaml -------------------------------------------------------------------------------- /openapi/paths/order-cancellations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/order-cancellations.yaml -------------------------------------------------------------------------------- /openapi/paths/order-cancellations@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/order-cancellations@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/order-pauses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/order-pauses.yaml -------------------------------------------------------------------------------- /openapi/paths/order-pauses@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/order-pauses@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/order-reactivations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/order-reactivations.yaml -------------------------------------------------------------------------------- /openapi/paths/order-reactivations@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/order-reactivations@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/orders.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/orders.yaml -------------------------------------------------------------------------------- /openapi/paths/orders@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/orders@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/orders@{id}@change-items.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/orders@{id}@change-items.yaml -------------------------------------------------------------------------------- /openapi/paths/orders@{id}@interim-invoice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/orders@{id}@interim-invoice.yaml -------------------------------------------------------------------------------- /openapi/paths/orders@{id}@items@{itemId}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/orders@{id}@items@{itemId}.yaml -------------------------------------------------------------------------------- /openapi/paths/orders@{id}@upcoming-invoice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/orders@{id}@upcoming-invoice.yaml -------------------------------------------------------------------------------- /openapi/paths/orders@{id}@void.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/orders@{id}@void.yaml -------------------------------------------------------------------------------- /openapi/paths/organization-exports.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/organization-exports.yaml -------------------------------------------------------------------------------- /openapi/paths/organization-exports@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/organization-exports@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/organizations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/organizations.yaml -------------------------------------------------------------------------------- /openapi/paths/organizations@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/organizations@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/password-tokens.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/password-tokens.yaml -------------------------------------------------------------------------------- /openapi/paths/password-tokens@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/password-tokens@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/payment-cards-bank-names.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/payment-cards-bank-names.yaml -------------------------------------------------------------------------------- /openapi/paths/payment-gateways-metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/payment-gateways-metadata.yaml -------------------------------------------------------------------------------- /openapi/paths/payment-instruments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/payment-instruments.yaml -------------------------------------------------------------------------------- /openapi/paths/payment-instruments@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/payment-instruments@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/payment-methods.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/payment-methods.yaml -------------------------------------------------------------------------------- /openapi/paths/payment-methods@{apiName}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/payment-methods@{apiName}.yaml -------------------------------------------------------------------------------- /openapi/paths/payout-requests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/payout-requests.yaml -------------------------------------------------------------------------------- /openapi/paths/payout-requests@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/payout-requests@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/payout-requests@{id}@cancel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/payout-requests@{id}@cancel.yaml -------------------------------------------------------------------------------- /openapi/paths/payouts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/payouts.yaml -------------------------------------------------------------------------------- /openapi/paths/permissions-emulation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/permissions-emulation.yaml -------------------------------------------------------------------------------- /openapi/paths/plans.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/plans.yaml -------------------------------------------------------------------------------- /openapi/paths/plans@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/plans@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/previews@orders.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/previews@orders.yaml -------------------------------------------------------------------------------- /openapi/paths/previews@webhooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/previews@webhooks.yaml -------------------------------------------------------------------------------- /openapi/paths/products.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/products.yaml -------------------------------------------------------------------------------- /openapi/paths/products@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/products@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/profile.yaml -------------------------------------------------------------------------------- /openapi/paths/profile@mfa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/profile@mfa.yaml -------------------------------------------------------------------------------- /openapi/paths/quotes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/quotes.yaml -------------------------------------------------------------------------------- /openapi/paths/quotes@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/quotes@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/quotes@{id}@accept.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/quotes@{id}@accept.yaml -------------------------------------------------------------------------------- /openapi/paths/quotes@{id}@cancel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/quotes@{id}@cancel.yaml -------------------------------------------------------------------------------- /openapi/paths/quotes@{id}@issue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/quotes@{id}@issue.yaml -------------------------------------------------------------------------------- /openapi/paths/quotes@{id}@recall.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/quotes@{id}@recall.yaml -------------------------------------------------------------------------------- /openapi/paths/quotes@{id}@reject.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/quotes@{id}@reject.yaml -------------------------------------------------------------------------------- /openapi/paths/quotes@{id}@timeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/quotes@{id}@timeline.yaml -------------------------------------------------------------------------------- /openapi/paths/ready-to-pay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/ready-to-pay.yaml -------------------------------------------------------------------------------- /openapi/paths/reports@api-log-summary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/reports@api-log-summary.yaml -------------------------------------------------------------------------------- /openapi/paths/reports@dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/reports@dashboard.yaml -------------------------------------------------------------------------------- /openapi/paths/reports@dcc-markup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/reports@dcc-markup.yaml -------------------------------------------------------------------------------- /openapi/paths/reports@deferred-revenue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/reports@deferred-revenue.yaml -------------------------------------------------------------------------------- /openapi/paths/reports@disputes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/reports@disputes.yaml -------------------------------------------------------------------------------- /openapi/paths/reports@events-triggered.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/reports@events-triggered.yaml -------------------------------------------------------------------------------- /openapi/paths/reports@future-renewals.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/reports@future-renewals.yaml -------------------------------------------------------------------------------- /openapi/paths/reports@journal-summary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/reports@journal-summary.yaml -------------------------------------------------------------------------------- /openapi/paths/reports@journal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/reports@journal.yaml -------------------------------------------------------------------------------- /openapi/paths/reports@kyc-request-summary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/reports@kyc-request-summary.yaml -------------------------------------------------------------------------------- /openapi/paths/reports@renewal-sales.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/reports@renewal-sales.yaml -------------------------------------------------------------------------------- /openapi/paths/reports@retention-percentage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/reports@retention-percentage.yaml -------------------------------------------------------------------------------- /openapi/paths/reports@retention-value.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/reports@retention-value.yaml -------------------------------------------------------------------------------- /openapi/paths/reports@revenue-waterfall.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/reports@revenue-waterfall.yaml -------------------------------------------------------------------------------- /openapi/paths/reports@subscription-renewal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/reports@subscription-renewal.yaml -------------------------------------------------------------------------------- /openapi/paths/reports@tax.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/reports@tax.yaml -------------------------------------------------------------------------------- /openapi/paths/reports@transactions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/reports@transactions.yaml -------------------------------------------------------------------------------- /openapi/paths/risk-score-rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/risk-score-rules.yaml -------------------------------------------------------------------------------- /openapi/paths/risk-score-rules@blocklists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/risk-score-rules@blocklists.yaml -------------------------------------------------------------------------------- /openapi/paths/roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/roles.yaml -------------------------------------------------------------------------------- /openapi/paths/roles@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/roles@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/search.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/search.yaml -------------------------------------------------------------------------------- /openapi/paths/service-credentials@{type}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/service-credentials@{type}.yaml -------------------------------------------------------------------------------- /openapi/paths/shipping-rates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/shipping-rates.yaml -------------------------------------------------------------------------------- /openapi/paths/shipping-rates@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/shipping-rates@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/status.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/status.yaml -------------------------------------------------------------------------------- /openapi/paths/storefront/account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/storefront/account.yaml -------------------------------------------------------------------------------- /openapi/paths/storefront/account@password.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/storefront/account@password.yaml -------------------------------------------------------------------------------- /openapi/paths/storefront/cashiers@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/storefront/cashiers@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/storefront/deposit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/storefront/deposit.yaml -------------------------------------------------------------------------------- /openapi/paths/storefront/invoices.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/storefront/invoices.yaml -------------------------------------------------------------------------------- /openapi/paths/storefront/invoices@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/storefront/invoices@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/storefront/kyc-documents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/storefront/kyc-documents.yaml -------------------------------------------------------------------------------- /openapi/paths/storefront/kyc-requests@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/storefront/kyc-requests@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/storefront/login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/storefront/login.yaml -------------------------------------------------------------------------------- /openapi/paths/storefront/logout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/storefront/logout.yaml -------------------------------------------------------------------------------- /openapi/paths/storefront/orders.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/storefront/orders.yaml -------------------------------------------------------------------------------- /openapi/paths/storefront/orders@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/storefront/orders@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/storefront/orders@{id}@pause.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/storefront/orders@{id}@pause.yaml -------------------------------------------------------------------------------- /openapi/paths/storefront/payment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/storefront/payment.yaml -------------------------------------------------------------------------------- /openapi/paths/storefront/payout-requests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/storefront/payout-requests.yaml -------------------------------------------------------------------------------- /openapi/paths/storefront/plans.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/storefront/plans.yaml -------------------------------------------------------------------------------- /openapi/paths/storefront/plans@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/storefront/plans@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/storefront/preview-purchase.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/storefront/preview-purchase.yaml -------------------------------------------------------------------------------- /openapi/paths/storefront/products.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/storefront/products.yaml -------------------------------------------------------------------------------- /openapi/paths/storefront/products@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/storefront/products@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/storefront/purchase.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/storefront/purchase.yaml -------------------------------------------------------------------------------- /openapi/paths/storefront/quotes@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/storefront/quotes@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/storefront/ready-to-pay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/storefront/ready-to-pay.yaml -------------------------------------------------------------------------------- /openapi/paths/storefront/ready-to-payout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/storefront/ready-to-payout.yaml -------------------------------------------------------------------------------- /openapi/paths/storefront/register.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/storefront/register.yaml -------------------------------------------------------------------------------- /openapi/paths/storefront/subscriptions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/storefront/subscriptions.yaml -------------------------------------------------------------------------------- /openapi/paths/storefront/transactions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/storefront/transactions.yaml -------------------------------------------------------------------------------- /openapi/paths/storefront/transactions@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/storefront/transactions@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/storefront/websites@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/storefront/websites@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/subscription-cancellations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/subscription-cancellations.yaml -------------------------------------------------------------------------------- /openapi/paths/subscription-pauses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/subscription-pauses.yaml -------------------------------------------------------------------------------- /openapi/paths/subscription-pauses@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/subscription-pauses@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/subscription-reactivations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/subscription-reactivations.yaml -------------------------------------------------------------------------------- /openapi/paths/subscriptions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/subscriptions.yaml -------------------------------------------------------------------------------- /openapi/paths/subscriptions@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/subscriptions@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/subscriptions@{id}@timeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/subscriptions@{id}@timeline.yaml -------------------------------------------------------------------------------- /openapi/paths/subscriptions@{id}@void.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/subscriptions@{id}@void.yaml -------------------------------------------------------------------------------- /openapi/paths/tags-rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/tags-rules.yaml -------------------------------------------------------------------------------- /openapi/paths/tags-rules@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/tags-rules@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/tags.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/tags.yaml -------------------------------------------------------------------------------- /openapi/paths/tags@{tag}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/tags@{tag}.yaml -------------------------------------------------------------------------------- /openapi/paths/tags@{tag}@aml-checks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/tags@{tag}@aml-checks.yaml -------------------------------------------------------------------------------- /openapi/paths/tags@{tag}@customers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/tags@{tag}@customers.yaml -------------------------------------------------------------------------------- /openapi/paths/tags@{tag}@kyc-documents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/tags@{tag}@kyc-documents.yaml -------------------------------------------------------------------------------- /openapi/paths/tokens.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/tokens.yaml -------------------------------------------------------------------------------- /openapi/paths/tokens@{token}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/tokens@{token}.yaml -------------------------------------------------------------------------------- /openapi/paths/tracking@api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/tracking@api.yaml -------------------------------------------------------------------------------- /openapi/paths/tracking@api@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/tracking@api@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/tracking@lists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/tracking@lists.yaml -------------------------------------------------------------------------------- /openapi/paths/tracking@taxes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/tracking@taxes.yaml -------------------------------------------------------------------------------- /openapi/paths/tracking@taxes@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/tracking@taxes@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/tracking@webhooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/tracking@webhooks.yaml -------------------------------------------------------------------------------- /openapi/paths/tracking@webhooks@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/tracking@webhooks@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/transactions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/transactions.yaml -------------------------------------------------------------------------------- /openapi/paths/transactions@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/transactions@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/transactions@{id}@query.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/transactions@{id}@query.yaml -------------------------------------------------------------------------------- /openapi/paths/transactions@{id}@refund.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/transactions@{id}@refund.yaml -------------------------------------------------------------------------------- /openapi/paths/transactions@{id}@timeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/transactions@{id}@timeline.yaml -------------------------------------------------------------------------------- /openapi/paths/transactions@{id}@update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/transactions@{id}@update.yaml -------------------------------------------------------------------------------- /openapi/paths/usages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/usages.yaml -------------------------------------------------------------------------------- /openapi/paths/usages@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/usages@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/users.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/users.yaml -------------------------------------------------------------------------------- /openapi/paths/users@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/users@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/users@{id}@mfa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/users@{id}@mfa.yaml -------------------------------------------------------------------------------- /openapi/paths/webhooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/webhooks.yaml -------------------------------------------------------------------------------- /openapi/paths/webhooks@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/webhooks@{id}.yaml -------------------------------------------------------------------------------- /openapi/paths/websites.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/websites.yaml -------------------------------------------------------------------------------- /openapi/paths/websites@{id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/paths/websites@{id}.yaml -------------------------------------------------------------------------------- /openapi/webhooks/aml-list-possibly-matched.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/aml-list-possibly-matched.yaml -------------------------------------------------------------------------------- /openapi/webhooks/coupon-applied.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/coupon-applied.yaml -------------------------------------------------------------------------------- /openapi/webhooks/coupon-expired.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/coupon-expired.yaml -------------------------------------------------------------------------------- /openapi/webhooks/coupon-issued.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/coupon-issued.yaml -------------------------------------------------------------------------------- /openapi/webhooks/coupon-modified.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/coupon-modified.yaml -------------------------------------------------------------------------------- /openapi/webhooks/coupon-redeemed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/coupon-redeemed.yaml -------------------------------------------------------------------------------- /openapi/webhooks/credit-memo-applied.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/credit-memo-applied.yaml -------------------------------------------------------------------------------- /openapi/webhooks/credit-memo-created.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/credit-memo-created.yaml -------------------------------------------------------------------------------- /openapi/webhooks/credit-memo-modified.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/credit-memo-modified.yaml -------------------------------------------------------------------------------- /openapi/webhooks/credit-memo-voided.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/credit-memo-voided.yaml -------------------------------------------------------------------------------- /openapi/webhooks/customer-created.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/customer-created.yaml -------------------------------------------------------------------------------- /openapi/webhooks/customer-merged.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/customer-merged.yaml -------------------------------------------------------------------------------- /openapi/webhooks/customer-returned.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/customer-returned.yaml -------------------------------------------------------------------------------- /openapi/webhooks/customer-updated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/customer-updated.yaml -------------------------------------------------------------------------------- /openapi/webhooks/data-export-completed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/data-export-completed.yaml -------------------------------------------------------------------------------- /openapi/webhooks/dispute-created.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/dispute-created.yaml -------------------------------------------------------------------------------- /openapi/webhooks/dispute-modified.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/dispute-modified.yaml -------------------------------------------------------------------------------- /openapi/webhooks/experian-check-performed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/experian-check-performed.yaml -------------------------------------------------------------------------------- /openapi/webhooks/gateway-account-requested.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/gateway-account-requested.yaml -------------------------------------------------------------------------------- /openapi/webhooks/hard-usage-limit-reached.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/hard-usage-limit-reached.yaml -------------------------------------------------------------------------------- /openapi/webhooks/invoice-abandoned.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/invoice-abandoned.yaml -------------------------------------------------------------------------------- /openapi/webhooks/invoice-created.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/invoice-created.yaml -------------------------------------------------------------------------------- /openapi/webhooks/invoice-issued.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/invoice-issued.yaml -------------------------------------------------------------------------------- /openapi/webhooks/invoice-modified.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/invoice-modified.yaml -------------------------------------------------------------------------------- /openapi/webhooks/invoice-paid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/invoice-paid.yaml -------------------------------------------------------------------------------- /openapi/webhooks/invoice-partially-paid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/invoice-partially-paid.yaml -------------------------------------------------------------------------------- /openapi/webhooks/invoice-past-due-reminder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/invoice-past-due-reminder.yaml -------------------------------------------------------------------------------- /openapi/webhooks/invoice-past-due.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/invoice-past-due.yaml -------------------------------------------------------------------------------- /openapi/webhooks/invoice-refunded.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/invoice-refunded.yaml -------------------------------------------------------------------------------- /openapi/webhooks/invoice-reissued.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/invoice-reissued.yaml -------------------------------------------------------------------------------- /openapi/webhooks/invoice-voided.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/invoice-voided.yaml -------------------------------------------------------------------------------- /openapi/webhooks/kyc-document-accepted.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/kyc-document-accepted.yaml -------------------------------------------------------------------------------- /openapi/webhooks/kyc-document-archived.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/kyc-document-archived.yaml -------------------------------------------------------------------------------- /openapi/webhooks/kyc-document-created.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/kyc-document-created.yaml -------------------------------------------------------------------------------- /openapi/webhooks/kyc-document-modified.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/kyc-document-modified.yaml -------------------------------------------------------------------------------- /openapi/webhooks/kyc-document-rejected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/kyc-document-rejected.yaml -------------------------------------------------------------------------------- /openapi/webhooks/kyc-document-reviewed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/kyc-document-reviewed.yaml -------------------------------------------------------------------------------- /openapi/webhooks/kyc-request-attempted.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/kyc-request-attempted.yaml -------------------------------------------------------------------------------- /openapi/webhooks/kyc-request-failed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/kyc-request-failed.yaml -------------------------------------------------------------------------------- /openapi/webhooks/kyc-request-fulfilled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/kyc-request-fulfilled.yaml -------------------------------------------------------------------------------- /openapi/webhooks/lead-source-changed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/lead-source-changed.yaml -------------------------------------------------------------------------------- /openapi/webhooks/offsite-payment-completed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/offsite-payment-completed.yaml -------------------------------------------------------------------------------- /openapi/webhooks/order-abandon-reminder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/order-abandon-reminder.yaml -------------------------------------------------------------------------------- /openapi/webhooks/order-abandoned.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/order-abandoned.yaml -------------------------------------------------------------------------------- /openapi/webhooks/order-completed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/order-completed.yaml -------------------------------------------------------------------------------- /openapi/webhooks/order-delinquency-reached.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/order-delinquency-reached.yaml -------------------------------------------------------------------------------- /openapi/webhooks/payment-card-created.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/payment-card-created.yaml -------------------------------------------------------------------------------- /openapi/webhooks/payment-card-expired.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/payment-card-expired.yaml -------------------------------------------------------------------------------- /openapi/webhooks/payout-request-canceled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/payout-request-canceled.yaml -------------------------------------------------------------------------------- /openapi/webhooks/payout-request-created.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/payout-request-created.yaml -------------------------------------------------------------------------------- /openapi/webhooks/payout-request-modified.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/payout-request-modified.yaml -------------------------------------------------------------------------------- /openapi/webhooks/quote-accepted.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/quote-accepted.yaml -------------------------------------------------------------------------------- /openapi/webhooks/quote-canceled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/quote-canceled.yaml -------------------------------------------------------------------------------- /openapi/webhooks/quote-created.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/quote-created.yaml -------------------------------------------------------------------------------- /openapi/webhooks/quote-expired.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/quote-expired.yaml -------------------------------------------------------------------------------- /openapi/webhooks/quote-issued.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/quote-issued.yaml -------------------------------------------------------------------------------- /openapi/webhooks/quote-recalled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/quote-recalled.yaml -------------------------------------------------------------------------------- /openapi/webhooks/quote-rejected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/quote-rejected.yaml -------------------------------------------------------------------------------- /openapi/webhooks/quote-updated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/quote-updated.yaml -------------------------------------------------------------------------------- /openapi/webhooks/ready-to-pay-requested.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/ready-to-pay-requested.yaml -------------------------------------------------------------------------------- /openapi/webhooks/renewal-invoice-issued.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/renewal-invoice-issued.yaml -------------------------------------------------------------------------------- /openapi/webhooks/risk-score-changed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/risk-score-changed.yaml -------------------------------------------------------------------------------- /openapi/webhooks/soft-usage-limit-reached.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/soft-usage-limit-reached.yaml -------------------------------------------------------------------------------- /openapi/webhooks/subscription-activated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/subscription-activated.yaml -------------------------------------------------------------------------------- /openapi/webhooks/subscription-canceled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/subscription-canceled.yaml -------------------------------------------------------------------------------- /openapi/webhooks/subscription-churned.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/subscription-churned.yaml -------------------------------------------------------------------------------- /openapi/webhooks/subscription-created.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/subscription-created.yaml -------------------------------------------------------------------------------- /openapi/webhooks/subscription-downgraded.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/subscription-downgraded.yaml -------------------------------------------------------------------------------- /openapi/webhooks/subscription-modified.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/subscription-modified.yaml -------------------------------------------------------------------------------- /openapi/webhooks/subscription-paused.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/subscription-paused.yaml -------------------------------------------------------------------------------- /openapi/webhooks/subscription-reactivated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/subscription-reactivated.yaml -------------------------------------------------------------------------------- /openapi/webhooks/subscription-renewed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/subscription-renewed.yaml -------------------------------------------------------------------------------- /openapi/webhooks/subscription-resumed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/subscription-resumed.yaml -------------------------------------------------------------------------------- /openapi/webhooks/subscription-trial-ended.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/subscription-trial-ended.yaml -------------------------------------------------------------------------------- /openapi/webhooks/subscription-upgraded.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/subscription-upgraded.yaml -------------------------------------------------------------------------------- /openapi/webhooks/transaction-declined.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/transaction-declined.yaml -------------------------------------------------------------------------------- /openapi/webhooks/transaction-processed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/transaction-processed.yaml -------------------------------------------------------------------------------- /openapi/webhooks/transaction-reconciled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/transaction-reconciled.yaml -------------------------------------------------------------------------------- /openapi/webhooks/trial-usage-limit-reached.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/openapi/webhooks/trial-usage-limit-reached.yaml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/package.json -------------------------------------------------------------------------------- /plugins/custom-rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/plugins/custom-rules.js -------------------------------------------------------------------------------- /plugins/decorators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/plugins/decorators.js -------------------------------------------------------------------------------- /plugins/decorators/backport-to-30.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/plugins/decorators/backport-to-30.js -------------------------------------------------------------------------------- /plugins/decorators/change-title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/plugins/decorators/change-title.js -------------------------------------------------------------------------------- /plugins/decorators/include-deprecated-fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/plugins/decorators/include-deprecated-fields.js -------------------------------------------------------------------------------- /plugins/decorators/remove-php-sample-prefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/plugins/decorators/remove-php-sample-prefix.js -------------------------------------------------------------------------------- /plugins/decorators/remove-tag-groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/plugins/decorators/remove-tag-groups.js -------------------------------------------------------------------------------- /plugins/decorators/remove-unused-tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/plugins/decorators/remove-unused-tags.js -------------------------------------------------------------------------------- /plugins/products-bundler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/plugins/products-bundler/README.md -------------------------------------------------------------------------------- /plugins/products-bundler/bundler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/plugins/products-bundler/bundler.js -------------------------------------------------------------------------------- /plugins/products-bundler/mapping/Combined.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/plugins/products-bundler/mapping/Combined.yaml -------------------------------------------------------------------------------- /plugins/products-bundler/mapping/Core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/plugins/products-bundler/mapping/Core.yaml -------------------------------------------------------------------------------- /plugins/products-bundler/mapping/Reports.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/plugins/products-bundler/mapping/Reports.yaml -------------------------------------------------------------------------------- /plugins/products-bundler/mapping/Users.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/plugins/products-bundler/mapping/Users.yaml -------------------------------------------------------------------------------- /plugins/rules/no-unused-tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/plugins/rules/no-unused-tags.js -------------------------------------------------------------------------------- /plugins/rules/sibling-ref.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/plugins/rules/sibling-ref.js -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/redocly.yaml -------------------------------------------------------------------------------- /replay-rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/replay-rules.yaml -------------------------------------------------------------------------------- /run-respect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/run-respect.js -------------------------------------------------------------------------------- /specification-extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/specification-extensions.md -------------------------------------------------------------------------------- /tests/health-check.arazzo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/tests/health-check.arazzo.yaml -------------------------------------------------------------------------------- /tests/smoke-tests.arazzo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/tests/smoke-tests.arazzo.yaml -------------------------------------------------------------------------------- /tests/synapse-squad/arazzo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/tests/synapse-squad/arazzo.yaml -------------------------------------------------------------------------------- /web/apple-touch-icon-163dpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/web/apple-touch-icon-163dpi.png -------------------------------------------------------------------------------- /web/apple-touch-icon-326dpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/web/apple-touch-icon-326dpi.png -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/images/app-store-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/web/images/app-store-example.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/web/index.html -------------------------------------------------------------------------------- /web/rb_apiLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/api-definitions/HEAD/web/rb_apiLogo.svg --------------------------------------------------------------------------------