Public
Documentation Settings

API Cobranças

Esta Postman Collection API Cobranças foi desenvolvida pela Efí, para auxilio na integração da API Cobranças Efí. Tenha você também uma conta digital conosco.

Link para a documentação técnica: http://sejaefi.com.br/api-pix

Nos visite em: https://www.sejaefi.com.br

Ou em nossa comunidade no Discord: https://discord.gg/ptGHMtczcV

Auth

POST/v1/authorize

https://cobrancas-h.api.efipay.com.br/v1/authorize

Gera access_token à partir das credenciais do cliente.

AUTHORIZATIONBasic Auth
Username

<username>

Password

<password>

HEADERS
Authorization

Basic Q2...

Content-Type

application/json

Bodyraw
{
    "grant_type": "client_credentials"
}

Boleto

POST/v1/charge/one-step

https://cobrancas-h.api.efipay.com.br/v1/charge/one-step
HEADERS
Authorization

{{Authorization}}

Content-Type

application/json

Bodyraw
{
	"items": [{
        "name": "Product 1",
        "value": 500,
        "amount": 1
    }],
    "shippings": [{
        "name": "Default Shipping Cost",
        "value": 100
    }],
    "payment": {
        "banking_billet": {
            "expire_at": "2019-10-16",
            "customer": {
                "name": "Gorbadoc Oldbuck",
                "email": "gorb.oldbuck@gerencianet.com.br",
                "cpf": "14014603059",
                "birth": "1977-01-15",
                "phone_number": "62986070247"
            
            }
        }   
    }
}
Loading