Skip to content

SDK em .NET integrada às APIs Efí Pay preparada para emissão de cobranças Pix com QR Code e Pix Copia e Cola, boletos, carnês, cartão de crédito, assinatura, link de pagamento, marketplance, iniciação de pagamento Pix via Open Finance, pagamento de boletos, dentre outras funcionalidades.

License

Notifications You must be signed in to change notification settings

efipay/sdk-dotnet-apis-efi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

sdk-dotnet-apis-efi

A .NET Core library for integration of your application with the payment services provided by Efí.

Installation

From Visual Studio package manager:

PM> Install-Package EfiPay -Version 1.0.3

From .NET Cli:

> dotnet add package EfiPay --version 1.0.3

Tested with

.NET 5.0

Basic usage

using Efipay;
...
dynamic efi = new Efipay("client_id", "client_secret", true, "production.p12");
            
var body = new 
{
    calendario = new {
        expiracao = 3600
    },
    devedor = new {
        cpf = "12345678909",
        nome = "Francisco da Silva"
    },
    valor = new {
        original = "1.45"
    },
    chave = "71cdf9ba-c695-4e3c-b010-abb521a3f1be",
    solicitacaoPagador = "Informe o número ou identificador do pedido."
};

var response = efi.PixCreateImmediateCharge(null, body);
Console.WriteLine(response);

Examples

You can run the examples contained in the project Examples by uncommenting the lines in Program.cs file.

Just remember to set the correct credentials inside Examples/credentials.json before running.

Additional documentation

The full documentation with all available endpoints is in https://dev.gerencianet.com.br/docs.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/efipay/sdk-dotnet-apis-efi. This project is intended to be a safe, welcoming space for collaboration.

License

The library is available as open source under the terms of the MIT License.

About

SDK em .NET integrada às APIs Efí Pay preparada para emissão de cobranças Pix com QR Code e Pix Copia e Cola, boletos, carnês, cartão de crédito, assinatura, link de pagamento, marketplance, iniciação de pagamento Pix via Open Finance, pagamento de boletos, dentre outras funcionalidades.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages