This is the officially supported .NET library for using Conekta's APIs.
The library supports all APIs under the following services:
API | Description | Service Name | Supported version |
---|---|---|---|
Payments API | Our classic integration for online payments. Current supported version | Payments API | v2.1.0 |
For more information, refer to our documentation.
Simply download and restore nuget packages https://www.nuget.org/packages/Conekta.net/ or install it from package manager
PM> Install-Package Conekta.net -Version x.x.x
In order to submit http request to Conekta API you need to initialize the client. The following example makes a order request:
// Create a OrderRequest
using System;
using System.Collections.Generic;
using Conekta.net.Client;
using Conekta.net.Api;
using Conekta.net.Model;
// create the http client
string acceptLanguage = "en";
Configuration configuration = new()
{
AccessToken = "Your merchant XAPI key"
};
var ordersApi = new OrdersApi(configuration);
var customerApi = new CustomersApi(config);
// create customer
var customer = new Customer(
name: "test dot",
phone: "+573143159063",
email: "test@conekta.com"
);
CustomerResponse customerResponse = customerApi.CreateCustomer(customer);
// Create OrderRequest
var lineItems = new List<LineItems>{new (
name: "toshiba",
quantity: 1,
unitPrice: 1555
)};
var charges = new List<ChargeRequest>{new (
amount: 1555,
paymentMethod: new ChargeRequestPaymentMethod("cash")
)};
var customerInfo = new OrderRequestCustomerInfo(new CustomerInfoJustCustomerId(customerResponse.Id));
OrderRequest orderRequest = new OrderRequest(
currency: "MXN",
customerInfo: customerInfo,
lineItems: lineItems,
charges: charges
);
//Make the call to the service. This example code makes a call to /orders
OrderResponse response = ordersApi.CreateOrder(orderRequest, acceptLanguage);
using System.Collections.Generic;
using System.Diagnostics;
using Conekta.net.Api;
using Conekta.net.Client;
using Conekta.net.Model;
namespace Example
{
public class CreatePlanExample
{
public static void Main()
{
Configuration config = new Configuration( AccessToken = "Your merchant XAPI key");
var apiInstance = new PlansApi(config);
var planRequest = new PlanRequest(); // PlanRequest | requested field for plan
var acceptLanguage = "es"; // string | Use for knowing which language to use (optional) (default to es)
try
{
// Create Plan
PlanResponse result = apiInstance.CreatePlan(planRequest, acceptLanguage);
Debug.WriteLine(result);
}
catch (ApiException e)
{
Debug.Print("Exception when calling PlansApi.CreatePlan: " + e.Message);
Debug.Print("Status Code: " + e.ErrorCode);
Debug.Print(e.StackTrace);
}
}
}
}
Navigate to conekta-.net folder and run the following commands.
dotnet build
dotnet test
We encourage you to contribute to this repository, so everyone can benefit from new features, bug fixes, and any other improvements. Have a look at our contributing guidelines to find out how to raise a pull request.
If you have a feature request, or spotted a bug or a technical problem, create an issue here.
For other questions, contact our Support Team.
This repository is available under the MIT license.