EfiPay 1.0.1
dotnet add package EfiPay --version 1.0.1
NuGet\Install-Package EfiPay -Version 1.0.1
<PackageReference Include="EfiPay" Version="1.0.1" />
paket add EfiPay --version 1.0.1
#r "nuget: EfiPay, 1.0.1"
// Install EfiPay as a Cake Addin #addin nuget:?package=EfiPay&version=1.0.1 // Install EfiPay as a Cake Tool #tool nuget:?package=EfiPay&version=1.0.1
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.1
From .NET Cli:
> dotnet add package EfiPay --version 1.0.1
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.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net5.0
- Newtonsoft.Json (>= 13.0.2)
- RestSharp (>= 108.0.3)
- System.IO (>= 4.3.0)
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.1 | 2 | 7/14/2023 |