{"id":13483935,"url":"https://github.com/conekta/conekta-ruby","last_synced_at":"2025-08-20T07:30:44.086Z","repository":{"id":12590163,"uuid":"15260948","full_name":"conekta/conekta-ruby","owner":"conekta","description":"Ruby Bindings for Conekta","archived":false,"fork":false,"pushed_at":"2024-10-14T16:10:15.000Z","size":1570,"stargazers_count":32,"open_issues_count":1,"forks_count":28,"subscribers_count":19,"default_branch":"master","last_synced_at":"2024-12-11T10:37:09.412Z","etag":null,"topics":["conekta","conekta-sdk"],"latest_commit_sha":null,"homepage":"https://www.conekta.com","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/conekta.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS.md","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2013-12-17T17:18:42.000Z","updated_at":"2024-11-17T12:44:53.000Z","dependencies_parsed_at":"2024-01-08T17:13:33.596Z","dependency_job_id":"55dec3dd-ea43-4e0b-8aa1-2f237f314081","html_url":"https://github.com/conekta/conekta-ruby","commit_stats":null,"previous_names":[],"tags_count":28,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/conekta%2Fconekta-ruby","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/conekta%2Fconekta-ruby/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/conekta%2Fconekta-ruby/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/conekta%2Fconekta-ruby/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/conekta","download_url":"https://codeload.github.com/conekta/conekta-ruby/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":230400616,"owners_count":18219831,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["conekta","conekta-sdk"],"created_at":"2024-07-31T17:01:17.052Z","updated_at":"2025-08-20T07:30:44.049Z","avatar_url":"https://github.com/conekta.png","language":"Ruby","readme":"# conekta\n\nConekta - the Ruby gem for the Conekta API\n\nConekta sdk\n\nThis SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:\n\n- API version: 2.2.0\n- Package version: 7.0.2\n- Build date: 2025-08-11T14:08:22.258333756Z[Etc/UTC]\n- Generator version: 7.5.0\n- Build package: org.openapitools.codegen.languages.RubyClientCodegen\nFor more information, please visit [https://github.com/conekta/openapi/issues](https://github.com/conekta/openapi/issues)\n\n## Installation\n\n### Build a gem\n\nTo build the Ruby code into a gem:\n\n```shell\ngem build conekta.gemspec\n```\n\nThen either install the gem locally:\n\n```shell\ngem install ./conekta-7.0.2.gem\n```\n\n(for development, run `gem install --dev ./conekta-7.0.2.gem` to install the development dependencies)\n\nor publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).\n\nFinally add this to the Gemfile:\n\n    gem 'conekta', '~\u003e 7.0.2'\n\n### Install from Git\n\nIf the Ruby gem is hosted at a git repository: https://github.com/conekta/conekta-ruby, then add the following in the Gemfile:\n\n    gem 'conekta', :git =\u003e 'https://github.com/conekta/conekta-ruby.git'\n\n### Include the Ruby code directly\n\nInclude the Ruby code directly using `-I` as follows:\n\n```shell\nruby -Ilib script.rb\n```\n\n## Getting Started\n\nPlease follow the [installation](#installation) procedure and then run the following code:\n\n```ruby\n# Load the gem\nrequire 'conekta'\n\n# Setup authorization\nConekta.configure do |config|\n  # Configure Bearer authorization: bearerAuth\n  config.access_token = 'YOUR_BEARER_TOKEN'\n  # Configure a proc to get access tokens in lieu of the static access_token configuration\n  config.access_token_getter = -\u003e { 'YOUR TOKEN GETTER PROC' } \n  # Configure faraday connection\n  config.configure_faraday_connection { |connection| 'YOUR CONNECTION CONFIG PROC' }\nend\n\napi_instance = Conekta::AntifraudApi.new\ncreate_risk_rules_data = Conekta::CreateRiskRulesData.new({description: 'this client email was verified at 20/09/22 by internal process', field: 'email | phone | card_token', value: 'email@example.com | 818081808180 | src_2qUCNd5AyQqfPMBuV'}) # CreateRiskRulesData | requested field for blacklist rule\nopts = {\n  accept_language: 'es' # String | Use for knowing which language to use\n}\n\nbegin\n  #Create blacklisted rule\n  result = api_instance.create_rule_blacklist(create_risk_rules_data, opts)\n  p result\nrescue Conekta::ApiError =\u003e e\n  puts \"Exception when calling AntifraudApi-\u003ecreate_rule_blacklist: #{e}\"\nend\n\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *https://api.conekta.io*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*Conekta::AntifraudApi* | [**create_rule_blacklist**](docs/AntifraudApi.md#create_rule_blacklist) | **POST** /antifraud/blacklists | Create blacklisted rule\n*Conekta::AntifraudApi* | [**create_rule_whitelist**](docs/AntifraudApi.md#create_rule_whitelist) | **POST** /antifraud/whitelists | Create whitelisted rule\n*Conekta::AntifraudApi* | [**delete_rule_blacklist**](docs/AntifraudApi.md#delete_rule_blacklist) | **DELETE** /antifraud/blacklists/{id} | Delete blacklisted rule\n*Conekta::AntifraudApi* | [**delete_rule_whitelist**](docs/AntifraudApi.md#delete_rule_whitelist) | **DELETE** /antifraud/whitelists/{id} | Delete whitelisted rule\n*Conekta::AntifraudApi* | [**get_rule_blacklist**](docs/AntifraudApi.md#get_rule_blacklist) | **GET** /antifraud/blacklists | Get list of blacklisted rules\n*Conekta::AntifraudApi* | [**get_rule_whitelist**](docs/AntifraudApi.md#get_rule_whitelist) | **GET** /antifraud/whitelists | Get a list of whitelisted rules\n*Conekta::ApiKeysApi* | [**create_api_key**](docs/ApiKeysApi.md#create_api_key) | **POST** /api_keys | Create Api Key\n*Conekta::ApiKeysApi* | [**delete_api_key**](docs/ApiKeysApi.md#delete_api_key) | **DELETE** /api_keys/{id} | Delete Api Key\n*Conekta::ApiKeysApi* | [**get_api_key**](docs/ApiKeysApi.md#get_api_key) | **GET** /api_keys/{id} | Get Api Key\n*Conekta::ApiKeysApi* | [**get_api_keys**](docs/ApiKeysApi.md#get_api_keys) | **GET** /api_keys | Get list of Api Keys\n*Conekta::ApiKeysApi* | [**update_api_key**](docs/ApiKeysApi.md#update_api_key) | **PUT** /api_keys/{id} | Update Api Key\n*Conekta::BalancesApi* | [**get_balance**](docs/BalancesApi.md#get_balance) | **GET** /balance | Get a company's balance\n*Conekta::ChargesApi* | [**get_charges**](docs/ChargesApi.md#get_charges) | **GET** /charges | Get A List of Charges\n*Conekta::ChargesApi* | [**orders_create_charge**](docs/ChargesApi.md#orders_create_charge) | **POST** /orders/{id}/charges | Create charge\n*Conekta::ChargesApi* | [**orders_create_charges**](docs/ChargesApi.md#orders_create_charges) | **POST** /orders/{id}/add_charges | Create charges\n*Conekta::ChargesApi* | [**update_charge**](docs/ChargesApi.md#update_charge) | **PUT** /charges/{id} | Update a charge\n*Conekta::CompaniesApi* | [**create_company**](docs/CompaniesApi.md#create_company) | **POST** /companies | Create Company\n*Conekta::CompaniesApi* | [**get_companies**](docs/CompaniesApi.md#get_companies) | **GET** /companies | Get List of Companies\n*Conekta::CompaniesApi* | [**get_company**](docs/CompaniesApi.md#get_company) | **GET** /companies/{id} | Get Company\n*Conekta::CompaniesApi* | [**get_company_documents**](docs/CompaniesApi.md#get_company_documents) | **GET** /companies/{company_id}/documents | Get Company Documents\n*Conekta::CompaniesApi* | [**update_company_document**](docs/CompaniesApi.md#update_company_document) | **PATCH** /companies/{company_id}/document | Update Company Document\n*Conekta::CompaniesApi* | [**upload_company_document**](docs/CompaniesApi.md#upload_company_document) | **POST** /companies/{company_id}/document | Upload Company Document\n*Conekta::CustomersApi* | [**create_customer**](docs/CustomersApi.md#create_customer) | **POST** /customers | Create customer\n*Conekta::CustomersApi* | [**create_customer_fiscal_entities**](docs/CustomersApi.md#create_customer_fiscal_entities) | **POST** /customers/{id}/fiscal_entities | Create Fiscal Entity\n*Conekta::CustomersApi* | [**delete_customer_by_id**](docs/CustomersApi.md#delete_customer_by_id) | **DELETE** /customers/{id} | Delete Customer\n*Conekta::CustomersApi* | [**get_customer_by_id**](docs/CustomersApi.md#get_customer_by_id) | **GET** /customers/{id} | Get Customer\n*Conekta::CustomersApi* | [**get_customers**](docs/CustomersApi.md#get_customers) | **GET** /customers | Get a list of customers\n*Conekta::CustomersApi* | [**update_customer**](docs/CustomersApi.md#update_customer) | **PUT** /customers/{id} | Update customer\n*Conekta::CustomersApi* | [**update_customer_fiscal_entities**](docs/CustomersApi.md#update_customer_fiscal_entities) | **PUT** /customers/{id}/fiscal_entities/{fiscal_entities_id} | Update  Fiscal Entity\n*Conekta::DiscountsApi* | [**orders_create_discount_line**](docs/DiscountsApi.md#orders_create_discount_line) | **POST** /orders/{id}/discount_lines | Create Discount\n*Conekta::DiscountsApi* | [**orders_delete_discount_lines**](docs/DiscountsApi.md#orders_delete_discount_lines) | **DELETE** /orders/{id}/discount_lines/{discount_lines_id} | Delete Discount\n*Conekta::DiscountsApi* | [**orders_get_discount_line**](docs/DiscountsApi.md#orders_get_discount_line) | **GET** /orders/{id}/discount_lines/{discount_lines_id} | Get Discount\n*Conekta::DiscountsApi* | [**orders_get_discount_lines**](docs/DiscountsApi.md#orders_get_discount_lines) | **GET** /orders/{id}/discount_lines | Get a List of Discount\n*Conekta::DiscountsApi* | [**orders_update_discount_lines**](docs/DiscountsApi.md#orders_update_discount_lines) | **PUT** /orders/{id}/discount_lines/{discount_lines_id} | Update Discount\n*Conekta::EventsApi* | [**get_event**](docs/EventsApi.md#get_event) | **GET** /events/{id} | Get Event\n*Conekta::EventsApi* | [**get_events**](docs/EventsApi.md#get_events) | **GET** /events | Get list of Events\n*Conekta::EventsApi* | [**resend_event**](docs/EventsApi.md#resend_event) | **POST** /events/{event_id}/resend | Resend Event\n*Conekta::LogsApi* | [**get_log_by_id**](docs/LogsApi.md#get_log_by_id) | **GET** /logs/{id} | Get Log\n*Conekta::LogsApi* | [**get_logs**](docs/LogsApi.md#get_logs) | **GET** /logs | Get List Of Logs\n*Conekta::OrdersApi* | [**cancel_order**](docs/OrdersApi.md#cancel_order) | **POST** /orders/{id}/cancel | Cancel Order\n*Conekta::OrdersApi* | [**create_order**](docs/OrdersApi.md#create_order) | **POST** /orders | Create order\n*Conekta::OrdersApi* | [**get_order_by_id**](docs/OrdersApi.md#get_order_by_id) | **GET** /orders/{id} | Get Order\n*Conekta::OrdersApi* | [**get_orders**](docs/OrdersApi.md#get_orders) | **GET** /orders | Get a list of Orders\n*Conekta::OrdersApi* | [**order_cancel_refund**](docs/OrdersApi.md#order_cancel_refund) | **DELETE** /orders/{id}/refunds/{refund_id} | Cancel Refund\n*Conekta::OrdersApi* | [**order_refund**](docs/OrdersApi.md#order_refund) | **POST** /orders/{id}/refunds | Refund Order\n*Conekta::OrdersApi* | [**orders_create_capture**](docs/OrdersApi.md#orders_create_capture) | **POST** /orders/{id}/capture | Capture Order\n*Conekta::OrdersApi* | [**update_order**](docs/OrdersApi.md#update_order) | **PUT** /orders/{id} | Update Order\n*Conekta::PaymentLinkApi* | [**cancel_checkout**](docs/PaymentLinkApi.md#cancel_checkout) | **PUT** /checkouts/{id}/cancel | Cancel Payment Link\n*Conekta::PaymentLinkApi* | [**create_checkout**](docs/PaymentLinkApi.md#create_checkout) | **POST** /checkouts | Create Unique Payment Link\n*Conekta::PaymentLinkApi* | [**email_checkout**](docs/PaymentLinkApi.md#email_checkout) | **POST** /checkouts/{id}/email | Send an email\n*Conekta::PaymentLinkApi* | [**get_checkout**](docs/PaymentLinkApi.md#get_checkout) | **GET** /checkouts/{id} | Get a payment link by ID\n*Conekta::PaymentLinkApi* | [**get_checkouts**](docs/PaymentLinkApi.md#get_checkouts) | **GET** /checkouts | Get a list of payment links\n*Conekta::PaymentLinkApi* | [**sms_checkout**](docs/PaymentLinkApi.md#sms_checkout) | **POST** /checkouts/{id}/sms | Send an sms\n*Conekta::PaymentMethodsApi* | [**create_customer_payment_methods**](docs/PaymentMethodsApi.md#create_customer_payment_methods) | **POST** /customers/{id}/payment_sources | Create Payment Method\n*Conekta::PaymentMethodsApi* | [**delete_customer_payment_methods**](docs/PaymentMethodsApi.md#delete_customer_payment_methods) | **DELETE** /customers/{id}/payment_sources/{payment_method_id} | Delete Payment Method\n*Conekta::PaymentMethodsApi* | [**get_customer_payment_methods**](docs/PaymentMethodsApi.md#get_customer_payment_methods) | **GET** /customers/{id}/payment_sources | Get Payment Methods\n*Conekta::PaymentMethodsApi* | [**update_customer_payment_methods**](docs/PaymentMethodsApi.md#update_customer_payment_methods) | **PUT** /customers/{id}/payment_sources/{payment_method_id} | Update Payment Method\n*Conekta::PayoutOrdersApi* | [**cancel_payout_order_by_id**](docs/PayoutOrdersApi.md#cancel_payout_order_by_id) | **PUT** /payout_orders/{id}/cancel | Cancel Payout Order\n*Conekta::PayoutOrdersApi* | [**create_payout_order**](docs/PayoutOrdersApi.md#create_payout_order) | **POST** /payout_orders | Create payout order\n*Conekta::PayoutOrdersApi* | [**get_payout_order_by_id**](docs/PayoutOrdersApi.md#get_payout_order_by_id) | **GET** /payout_orders/{id} | Get Payout Order\n*Conekta::PayoutOrdersApi* | [**get_payout_orders**](docs/PayoutOrdersApi.md#get_payout_orders) | **GET** /payout_orders | Get a list of Payout Orders\n*Conekta::PlansApi* | [**create_plan**](docs/PlansApi.md#create_plan) | **POST** /plans | Create Plan\n*Conekta::PlansApi* | [**delete_plan**](docs/PlansApi.md#delete_plan) | **DELETE** /plans/{id} | Delete Plan\n*Conekta::PlansApi* | [**get_plan**](docs/PlansApi.md#get_plan) | **GET** /plans/{id} | Get Plan\n*Conekta::PlansApi* | [**get_plans**](docs/PlansApi.md#get_plans) | **GET** /plans | Get A List of Plans\n*Conekta::PlansApi* | [**update_plan**](docs/PlansApi.md#update_plan) | **PUT** /plans/{id} | Update Plan\n*Conekta::ProductsApi* | [**orders_create_product**](docs/ProductsApi.md#orders_create_product) | **POST** /orders/{id}/line_items | Create Product\n*Conekta::ProductsApi* | [**orders_delete_product**](docs/ProductsApi.md#orders_delete_product) | **DELETE** /orders/{id}/line_items/{line_item_id} | Delete Product\n*Conekta::ProductsApi* | [**orders_update_product**](docs/ProductsApi.md#orders_update_product) | **PUT** /orders/{id}/line_items/{line_item_id} | Update Product\n*Conekta::ShippingContactsApi* | [**create_customer_shipping_contacts**](docs/ShippingContactsApi.md#create_customer_shipping_contacts) | **POST** /customers/{id}/shipping_contacts | Create a shipping contacts\n*Conekta::ShippingContactsApi* | [**delete_customer_shipping_contacts**](docs/ShippingContactsApi.md#delete_customer_shipping_contacts) | **DELETE** /customers/{id}/shipping_contacts/{shipping_contacts_id} | Delete shipping contacts\n*Conekta::ShippingContactsApi* | [**update_customer_shipping_contacts**](docs/ShippingContactsApi.md#update_customer_shipping_contacts) | **PUT** /customers/{id}/shipping_contacts/{shipping_contacts_id} | Update shipping contacts\n*Conekta::ShippingsApi* | [**orders_create_shipping**](docs/ShippingsApi.md#orders_create_shipping) | **POST** /orders/{id}/shipping_lines | Create Shipping\n*Conekta::ShippingsApi* | [**orders_delete_shipping**](docs/ShippingsApi.md#orders_delete_shipping) | **DELETE** /orders/{id}/shipping_lines/{shipping_id} | Delete Shipping\n*Conekta::ShippingsApi* | [**orders_update_shipping**](docs/ShippingsApi.md#orders_update_shipping) | **PUT** /orders/{id}/shipping_lines/{shipping_id} | Update Shipping\n*Conekta::SubscriptionsApi* | [**cancel_subscription**](docs/SubscriptionsApi.md#cancel_subscription) | **POST** /customers/{id}/subscription/cancel | Cancel Subscription [Deprecated]\n*Conekta::SubscriptionsApi* | [**create_subscription**](docs/SubscriptionsApi.md#create_subscription) | **POST** /customers/{id}/subscription | Create Subscription [Deprecated]\n*Conekta::SubscriptionsApi* | [**get_subscription**](docs/SubscriptionsApi.md#get_subscription) | **GET** /customers/{id}/subscription | Get Subscription [Deprecated]\n*Conekta::SubscriptionsApi* | [**get_subscription_events**](docs/SubscriptionsApi.md#get_subscription_events) | **GET** /customers/{id}/subscription/events | Get Subscription Events [Deprecated]\n*Conekta::SubscriptionsApi* | [**pause_subscription**](docs/SubscriptionsApi.md#pause_subscription) | **POST** /customers/{id}/subscription/pause | Pause Subscription [Deprecated]\n*Conekta::SubscriptionsApi* | [**resume_subscription**](docs/SubscriptionsApi.md#resume_subscription) | **POST** /customers/{id}/subscription/resume | Resume Subscription [Deprecated]\n*Conekta::SubscriptionsApi* | [**subscription_cancel**](docs/SubscriptionsApi.md#subscription_cancel) | **POST** /customers/{customer_id}/subscriptions/{id}/cancel | Cancel Subscription\n*Conekta::SubscriptionsApi* | [**subscription_create**](docs/SubscriptionsApi.md#subscription_create) | **POST** /customers/{customer_id}/subscriptions | Create Subscription\n*Conekta::SubscriptionsApi* | [**subscription_events**](docs/SubscriptionsApi.md#subscription_events) | **GET** /customers/{customer_id}/subscriptions/{id}/events | Get Subscription Events\n*Conekta::SubscriptionsApi* | [**subscription_list**](docs/SubscriptionsApi.md#subscription_list) | **GET** /customers/{customer_id}/subscriptions | List Subscriptions\n*Conekta::SubscriptionsApi* | [**subscription_pause**](docs/SubscriptionsApi.md#subscription_pause) | **POST** /customers/{customer_id}/subscriptions/{id}/pause | Pause Subscription\n*Conekta::SubscriptionsApi* | [**subscription_resume**](docs/SubscriptionsApi.md#subscription_resume) | **POST** /customers/{customer_id}/subscriptions/{id}/resume | Resume Subscription\n*Conekta::SubscriptionsApi* | [**subscription_update**](docs/SubscriptionsApi.md#subscription_update) | **PUT** /customers/{customer_id}/subscriptions/{id} | Update Subscription\n*Conekta::SubscriptionsApi* | [**subscriptions_get**](docs/SubscriptionsApi.md#subscriptions_get) | **GET** /customers/{customer_id}/subscriptions/{id} | Get Subscription\n*Conekta::SubscriptionsApi* | [**subscriptions_retry**](docs/SubscriptionsApi.md#subscriptions_retry) | **POST** /customers/{customer_id}/subscriptions/{id}/retry | Retry Failed Payment\n*Conekta::SubscriptionsApi* | [**update_subscription**](docs/SubscriptionsApi.md#update_subscription) | **PUT** /customers/{id}/subscription | Update Subscription [Deprecated]\n*Conekta::TaxesApi* | [**orders_create_taxes**](docs/TaxesApi.md#orders_create_taxes) | **POST** /orders/{id}/tax_lines | Create Tax\n*Conekta::TaxesApi* | [**orders_delete_taxes**](docs/TaxesApi.md#orders_delete_taxes) | **DELETE** /orders/{id}/tax_lines/{tax_id} | Delete Tax\n*Conekta::TaxesApi* | [**orders_update_taxes**](docs/TaxesApi.md#orders_update_taxes) | **PUT** /orders/{id}/tax_lines/{tax_id} | Update Tax\n*Conekta::TokensApi* | [**create_token**](docs/TokensApi.md#create_token) | **POST** /tokens | Create Token\n*Conekta::TransactionsApi* | [**get_transaction**](docs/TransactionsApi.md#get_transaction) | **GET** /transactions/{id} | Get transaction\n*Conekta::TransactionsApi* | [**get_transactions**](docs/TransactionsApi.md#get_transactions) | **GET** /transactions | Get List transactions\n*Conekta::TransfersApi* | [**get_transfer**](docs/TransfersApi.md#get_transfer) | **GET** /transfers/{id} | Get Transfer\n*Conekta::TransfersApi* | [**get_transfers**](docs/TransfersApi.md#get_transfers) | **GET** /transfers | Get a list of transfers\n*Conekta::WebhookKeysApi* | [**create_webhook_key**](docs/WebhookKeysApi.md#create_webhook_key) | **POST** /webhook_keys | Create Webhook Key\n*Conekta::WebhookKeysApi* | [**delete_webhook_key**](docs/WebhookKeysApi.md#delete_webhook_key) | **DELETE** /webhook_keys/{id} | Delete Webhook key\n*Conekta::WebhookKeysApi* | [**get_webhook_key**](docs/WebhookKeysApi.md#get_webhook_key) | **GET** /webhook_keys/{id} | Get Webhook Key\n*Conekta::WebhookKeysApi* | [**get_webhook_keys**](docs/WebhookKeysApi.md#get_webhook_keys) | **GET** /webhook_keys | Get List of Webhook Keys\n*Conekta::WebhookKeysApi* | [**update_webhook_key**](docs/WebhookKeysApi.md#update_webhook_key) | **PUT** /webhook_keys/{id} | Update Webhook Key\n*Conekta::WebhooksApi* | [**create_webhook**](docs/WebhooksApi.md#create_webhook) | **POST** /webhooks | Create Webhook\n*Conekta::WebhooksApi* | [**delete_webhook**](docs/WebhooksApi.md#delete_webhook) | **DELETE** /webhooks/{id} | Delete Webhook\n*Conekta::WebhooksApi* | [**get_webhook**](docs/WebhooksApi.md#get_webhook) | **GET** /webhooks/{id} | Get Webhook\n*Conekta::WebhooksApi* | [**get_webhooks**](docs/WebhooksApi.md#get_webhooks) | **GET** /webhooks | Get List of Webhooks\n*Conekta::WebhooksApi* | [**test_webhook**](docs/WebhooksApi.md#test_webhook) | **POST** /webhooks/{id}/test | Test Webhook\n*Conekta::WebhooksApi* | [**update_webhook**](docs/WebhooksApi.md#update_webhook) | **PUT** /webhooks/{id} | Update Webhook\n\n\n## Documentation for Models\n\n - [Conekta::ApiKeyCreateResponse](docs/ApiKeyCreateResponse.md)\n - [Conekta::ApiKeyRequest](docs/ApiKeyRequest.md)\n - [Conekta::ApiKeyResponse](docs/ApiKeyResponse.md)\n - [Conekta::ApiKeyResponseOnDelete](docs/ApiKeyResponseOnDelete.md)\n - [Conekta::ApiKeyUpdateRequest](docs/ApiKeyUpdateRequest.md)\n - [Conekta::BalanceCommonField](docs/BalanceCommonField.md)\n - [Conekta::BalanceResponse](docs/BalanceResponse.md)\n - [Conekta::BlacklistRuleResponse](docs/BlacklistRuleResponse.md)\n - [Conekta::ChargeOrderResponse](docs/ChargeOrderResponse.md)\n - [Conekta::ChargeOrderResponsePaymentMethod](docs/ChargeOrderResponsePaymentMethod.md)\n - [Conekta::ChargeRequest](docs/ChargeRequest.md)\n - [Conekta::ChargeRequestPaymentMethod](docs/ChargeRequestPaymentMethod.md)\n - [Conekta::ChargeResponse](docs/ChargeResponse.md)\n - [Conekta::ChargeResponseChannel](docs/ChargeResponseChannel.md)\n - [Conekta::ChargeResponsePaymentMethod](docs/ChargeResponsePaymentMethod.md)\n - [Conekta::ChargeResponseRefunds](docs/ChargeResponseRefunds.md)\n - [Conekta::ChargeResponseRefundsData](docs/ChargeResponseRefundsData.md)\n - [Conekta::ChargeUpdateRequest](docs/ChargeUpdateRequest.md)\n - [Conekta::ChargesDataResponse](docs/ChargesDataResponse.md)\n - [Conekta::ChargesOrderResponse](docs/ChargesOrderResponse.md)\n - [Conekta::ChargesOrderResponseAllOfData](docs/ChargesOrderResponseAllOfData.md)\n - [Conekta::Checkout](docs/Checkout.md)\n - [Conekta::CheckoutOrderTemplate](docs/CheckoutOrderTemplate.md)\n - [Conekta::CheckoutOrderTemplateCustomerInfo](docs/CheckoutOrderTemplateCustomerInfo.md)\n - [Conekta::CheckoutRequest](docs/CheckoutRequest.md)\n - [Conekta::CheckoutResponse](docs/CheckoutResponse.md)\n - [Conekta::CheckoutsResponse](docs/CheckoutsResponse.md)\n - [Conekta::CompanyDocumentRequest](docs/CompanyDocumentRequest.md)\n - [Conekta::CompanyDocumentResponse](docs/CompanyDocumentResponse.md)\n - [Conekta::CompanyResponse](docs/CompanyResponse.md)\n - [Conekta::CompanyResponseDocumentsInner](docs/CompanyResponseDocumentsInner.md)\n - [Conekta::CreateCompanyRequest](docs/CreateCompanyRequest.md)\n - [Conekta::CreateCompanyRequestBankAccountInfo](docs/CreateCompanyRequestBankAccountInfo.md)\n - [Conekta::CreateCompanyRequestComercialInfo](docs/CreateCompanyRequestComercialInfo.md)\n - [Conekta::CreateCompanyRequestFiscalInfo](docs/CreateCompanyRequestFiscalInfo.md)\n - [Conekta::CreateCustomerFiscalEntitiesResponse](docs/CreateCustomerFiscalEntitiesResponse.md)\n - [Conekta::CreateCustomerPaymentMethodsRequest](docs/CreateCustomerPaymentMethodsRequest.md)\n - [Conekta::CreateCustomerPaymentMethodsResponse](docs/CreateCustomerPaymentMethodsResponse.md)\n - [Conekta::CreateRiskRulesData](docs/CreateRiskRulesData.md)\n - [Conekta::Customer](docs/Customer.md)\n - [Conekta::CustomerAddress](docs/CustomerAddress.md)\n - [Conekta::CustomerAntifraudInfo](docs/CustomerAntifraudInfo.md)\n - [Conekta::CustomerAntifraudInfoResponse](docs/CustomerAntifraudInfoResponse.md)\n - [Conekta::CustomerFiscalEntitiesDataResponse](docs/CustomerFiscalEntitiesDataResponse.md)\n - [Conekta::CustomerFiscalEntitiesRequest](docs/CustomerFiscalEntitiesRequest.md)\n - [Conekta::CustomerFiscalEntitiesResponse](docs/CustomerFiscalEntitiesResponse.md)\n - [Conekta::CustomerInfo](docs/CustomerInfo.md)\n - [Conekta::CustomerInfoJustCustomerId](docs/CustomerInfoJustCustomerId.md)\n - [Conekta::CustomerInfoJustCustomerIdResponse](docs/CustomerInfoJustCustomerIdResponse.md)\n - [Conekta::CustomerPaymentMethodRequest](docs/CustomerPaymentMethodRequest.md)\n - [Conekta::CustomerPaymentMethodsData](docs/CustomerPaymentMethodsData.md)\n - [Conekta::CustomerPaymentMethodsRequest](docs/CustomerPaymentMethodsRequest.md)\n - [Conekta::CustomerPaymentMethodsResponse](docs/CustomerPaymentMethodsResponse.md)\n - [Conekta::CustomerResponse](docs/CustomerResponse.md)\n - [Conekta::CustomerResponseShippingContacts](docs/CustomerResponseShippingContacts.md)\n - [Conekta::CustomerShippingContacts](docs/CustomerShippingContacts.md)\n - [Conekta::CustomerShippingContactsAddress](docs/CustomerShippingContactsAddress.md)\n - [Conekta::CustomerShippingContactsDataResponse](docs/CustomerShippingContactsDataResponse.md)\n - [Conekta::CustomerShippingContactsResponse](docs/CustomerShippingContactsResponse.md)\n - [Conekta::CustomerShippingContactsResponseAddress](docs/CustomerShippingContactsResponseAddress.md)\n - [Conekta::CustomerUpdateFiscalEntitiesRequest](docs/CustomerUpdateFiscalEntitiesRequest.md)\n - [Conekta::CustomerUpdateShippingContacts](docs/CustomerUpdateShippingContacts.md)\n - [Conekta::CustomersResponse](docs/CustomersResponse.md)\n - [Conekta::DeleteApiKeysResponse](docs/DeleteApiKeysResponse.md)\n - [Conekta::DeletedBlacklistRuleResponse](docs/DeletedBlacklistRuleResponse.md)\n - [Conekta::DeletedWhitelistRuleResponse](docs/DeletedWhitelistRuleResponse.md)\n - [Conekta::Details](docs/Details.md)\n - [Conekta::DetailsError](docs/DetailsError.md)\n - [Conekta::DiscountLinesDataResponse](docs/DiscountLinesDataResponse.md)\n - [Conekta::DiscountLinesResponse](docs/DiscountLinesResponse.md)\n - [Conekta::EmailCheckoutRequest](docs/EmailCheckoutRequest.md)\n - [Conekta::Error](docs/Error.md)\n - [Conekta::EventResponse](docs/EventResponse.md)\n - [Conekta::EventTypes](docs/EventTypes.md)\n - [Conekta::EventsResendResponse](docs/EventsResendResponse.md)\n - [Conekta::FiscalEntityAddress](docs/FiscalEntityAddress.md)\n - [Conekta::GetApiKeysResponse](docs/GetApiKeysResponse.md)\n - [Conekta::GetChargesResponse](docs/GetChargesResponse.md)\n - [Conekta::GetCompaniesResponse](docs/GetCompaniesResponse.md)\n - [Conekta::GetCustomerPaymentMethodDataResponse](docs/GetCustomerPaymentMethodDataResponse.md)\n - [Conekta::GetEventsResponse](docs/GetEventsResponse.md)\n - [Conekta::GetOrderDiscountLinesResponse](docs/GetOrderDiscountLinesResponse.md)\n - [Conekta::GetOrdersResponse](docs/GetOrdersResponse.md)\n - [Conekta::GetPaymentMethodResponse](docs/GetPaymentMethodResponse.md)\n - [Conekta::GetPlansResponse](docs/GetPlansResponse.md)\n - [Conekta::GetTransactionsResponse](docs/GetTransactionsResponse.md)\n - [Conekta::GetTransfersResponse](docs/GetTransfersResponse.md)\n - [Conekta::GetWebhookKeysResponse](docs/GetWebhookKeysResponse.md)\n - [Conekta::GetWebhooksResponse](docs/GetWebhooksResponse.md)\n - [Conekta::LogResponse](docs/LogResponse.md)\n - [Conekta::LogsResponse](docs/LogsResponse.md)\n - [Conekta::LogsResponseData](docs/LogsResponseData.md)\n - [Conekta::OrderCaptureRequest](docs/OrderCaptureRequest.md)\n - [Conekta::OrderChannelResponse](docs/OrderChannelResponse.md)\n - [Conekta::OrderChargesResponse](docs/OrderChargesResponse.md)\n - [Conekta::OrderCustomerInfoResponse](docs/OrderCustomerInfoResponse.md)\n - [Conekta::OrderDiscountLinesRequest](docs/OrderDiscountLinesRequest.md)\n - [Conekta::OrderDiscountLinesResponse](docs/OrderDiscountLinesResponse.md)\n - [Conekta::OrderFiscalEntityAddressResponse](docs/OrderFiscalEntityAddressResponse.md)\n - [Conekta::OrderFiscalEntityRequest](docs/OrderFiscalEntityRequest.md)\n - [Conekta::OrderFiscalEntityResponse](docs/OrderFiscalEntityResponse.md)\n - [Conekta::OrderNextActionResponse](docs/OrderNextActionResponse.md)\n - [Conekta::OrderNextActionResponseRedirectToUrl](docs/OrderNextActionResponseRedirectToUrl.md)\n - [Conekta::OrderRefundRequest](docs/OrderRefundRequest.md)\n - [Conekta::OrderRequest](docs/OrderRequest.md)\n - [Conekta::OrderRequestCustomerInfo](docs/OrderRequestCustomerInfo.md)\n - [Conekta::OrderResponse](docs/OrderResponse.md)\n - [Conekta::OrderResponseCheckout](docs/OrderResponseCheckout.md)\n - [Conekta::OrderResponseCustomerInfo](docs/OrderResponseCustomerInfo.md)\n - [Conekta::OrderResponseProducts](docs/OrderResponseProducts.md)\n - [Conekta::OrderResponseShippingContact](docs/OrderResponseShippingContact.md)\n - [Conekta::OrderTaxRequest](docs/OrderTaxRequest.md)\n - [Conekta::OrderUpdateFiscalEntityRequest](docs/OrderUpdateFiscalEntityRequest.md)\n - [Conekta::OrderUpdateRequest](docs/OrderUpdateRequest.md)\n - [Conekta::OrderUpdateRequestCustomerInfo](docs/OrderUpdateRequestCustomerInfo.md)\n - [Conekta::OrdersResponse](docs/OrdersResponse.md)\n - [Conekta::Page](docs/Page.md)\n - [Conekta::Pagination](docs/Pagination.md)\n - [Conekta::PaymentMethod](docs/PaymentMethod.md)\n - [Conekta::PaymentMethodBankTransfer](docs/PaymentMethodBankTransfer.md)\n - [Conekta::PaymentMethodBnplPayment](docs/PaymentMethodBnplPayment.md)\n - [Conekta::PaymentMethodBnplRequest](docs/PaymentMethodBnplRequest.md)\n - [Conekta::PaymentMethodCard](docs/PaymentMethodCard.md)\n - [Conekta::PaymentMethodCardRequest](docs/PaymentMethodCardRequest.md)\n - [Conekta::PaymentMethodCardResponse](docs/PaymentMethodCardResponse.md)\n - [Conekta::PaymentMethodCash](docs/PaymentMethodCash.md)\n - [Conekta::PaymentMethodCashRequest](docs/PaymentMethodCashRequest.md)\n - [Conekta::PaymentMethodCashResponse](docs/PaymentMethodCashResponse.md)\n - [Conekta::PaymentMethodCashResponseAllOfAgreements](docs/PaymentMethodCashResponseAllOfAgreements.md)\n - [Conekta::PaymentMethodGeneralRequest](docs/PaymentMethodGeneralRequest.md)\n - [Conekta::PaymentMethodResponse](docs/PaymentMethodResponse.md)\n - [Conekta::PaymentMethodSpeiRecurrent](docs/PaymentMethodSpeiRecurrent.md)\n - [Conekta::PaymentMethodSpeiRequest](docs/PaymentMethodSpeiRequest.md)\n - [Conekta::PaymentMethodTokenRequest](docs/PaymentMethodTokenRequest.md)\n - [Conekta::Payout](docs/Payout.md)\n - [Conekta::PayoutMethod](docs/PayoutMethod.md)\n - [Conekta::PayoutOrder](docs/PayoutOrder.md)\n - [Conekta::PayoutOrderPayoutsItem](docs/PayoutOrderPayoutsItem.md)\n - [Conekta::PayoutOrderResponse](docs/PayoutOrderResponse.md)\n - [Conekta::PayoutOrderResponseCustomerInfo](docs/PayoutOrderResponseCustomerInfo.md)\n - [Conekta::PayoutOrdersResponse](docs/PayoutOrdersResponse.md)\n - [Conekta::PlanRequest](docs/PlanRequest.md)\n - [Conekta::PlanResponse](docs/PlanResponse.md)\n - [Conekta::PlanUpdateRequest](docs/PlanUpdateRequest.md)\n - [Conekta::Product](docs/Product.md)\n - [Conekta::ProductDataResponse](docs/ProductDataResponse.md)\n - [Conekta::ProductOrderResponse](docs/ProductOrderResponse.md)\n - [Conekta::ResendRequest](docs/ResendRequest.md)\n - [Conekta::RiskRulesData](docs/RiskRulesData.md)\n - [Conekta::RiskRulesList](docs/RiskRulesList.md)\n - [Conekta::ShippingOrderResponse](docs/ShippingOrderResponse.md)\n - [Conekta::ShippingRequest](docs/ShippingRequest.md)\n - [Conekta::SmsCheckoutRequest](docs/SmsCheckoutRequest.md)\n - [Conekta::SubscriptionEventsResponse](docs/SubscriptionEventsResponse.md)\n - [Conekta::SubscriptionRequest](docs/SubscriptionRequest.md)\n - [Conekta::SubscriptionResponse](docs/SubscriptionResponse.md)\n - [Conekta::SubscriptionUpdateRequest](docs/SubscriptionUpdateRequest.md)\n - [Conekta::Token](docs/Token.md)\n - [Conekta::TokenCard](docs/TokenCard.md)\n - [Conekta::TokenCheckout](docs/TokenCheckout.md)\n - [Conekta::TokenResponse](docs/TokenResponse.md)\n - [Conekta::TokenResponseCheckout](docs/TokenResponseCheckout.md)\n - [Conekta::TransactionResponse](docs/TransactionResponse.md)\n - [Conekta::TransferDestinationResponse](docs/TransferDestinationResponse.md)\n - [Conekta::TransferMethodResponse](docs/TransferMethodResponse.md)\n - [Conekta::TransferResponse](docs/TransferResponse.md)\n - [Conekta::TransfersResponse](docs/TransfersResponse.md)\n - [Conekta::UpdateCustomer](docs/UpdateCustomer.md)\n - [Conekta::UpdateCustomerAntifraudInfo](docs/UpdateCustomerAntifraudInfo.md)\n - [Conekta::UpdateCustomerFiscalEntitiesResponse](docs/UpdateCustomerFiscalEntitiesResponse.md)\n - [Conekta::UpdateCustomerPaymentMethodsResponse](docs/UpdateCustomerPaymentMethodsResponse.md)\n - [Conekta::UpdateOrderDiscountLinesRequest](docs/UpdateOrderDiscountLinesRequest.md)\n - [Conekta::UpdateOrderTaxRequest](docs/UpdateOrderTaxRequest.md)\n - [Conekta::UpdateOrderTaxResponse](docs/UpdateOrderTaxResponse.md)\n - [Conekta::UpdatePaymentMethods](docs/UpdatePaymentMethods.md)\n - [Conekta::UpdateProduct](docs/UpdateProduct.md)\n - [Conekta::WebhookKeyCreateResponse](docs/WebhookKeyCreateResponse.md)\n - [Conekta::WebhookKeyDeleteResponse](docs/WebhookKeyDeleteResponse.md)\n - [Conekta::WebhookKeyRequest](docs/WebhookKeyRequest.md)\n - [Conekta::WebhookKeyResponse](docs/WebhookKeyResponse.md)\n - [Conekta::WebhookKeyUpdateRequest](docs/WebhookKeyUpdateRequest.md)\n - [Conekta::WebhookLog](docs/WebhookLog.md)\n - [Conekta::WebhookRequest](docs/WebhookRequest.md)\n - [Conekta::WebhookResponse](docs/WebhookResponse.md)\n - [Conekta::WebhookUpdateRequest](docs/WebhookUpdateRequest.md)\n - [Conekta::WhitelistlistRuleResponse](docs/WhitelistlistRuleResponse.md)\n\n\n## Documentation for Authorization\n\n\nAuthentication schemes defined for the API:\n### bearerAuth\n\n- **Type**: Bearer authentication\n\n","funding_links":[],"categories":["E-Commerce and Payments"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fconekta%2Fconekta-ruby","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fconekta%2Fconekta-ruby","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fconekta%2Fconekta-ruby/lists"}