View Source Inter.Client (Inter v0.6.0)

Documentation for Inter.Client.

Summary

Functions

Link to this function

cobranca_charge(client, request)

View Source
Link to this function

create_webhook(client, request, type \\ :boleto)

View Source
Link to this function

get_cobranca(client, cod, conta_corrente)

View Source
Link to this function

get_webhook(client, request, type \\ :boleto)

View Source
Link to this function

new(client_id, client_secret, scope, grant_type, cert_file, key_file, url \\ "https://cdpj.partners.bancointer.com.br/")

View Source

Build new client.

Examples

iex> Inter.Client.new("some_client_id", "some_client_secret", "scope", "grant_type", "cert_file", "key_file")
%Inter.Client{
   base_url: "https://cdpj.partners.bancointer.com.br/",
   client_id: "some_client_id",
   client_secret: "some_client_secret",
   scope: "scope",
   grant_type: "grant_type",
   cert_file: "cert_file",
   key_file: "key_file"
 }
Link to this function

pix_charge(client, request)

View Source