Inovpay-API
  1. Vendas Com Split
Inovpay-API
  • Comece Por Aqui
  • Autenticação
    • Gerar Token
      POST
  • Estabelecimentos
    • Criar Estabelecimento
      POST
    • Listar Estabelecimentos
      GET
    • Detalhar Estabelecimento
      GET
    • KYC Estabelecimento
      GET
  • Banking
    • Buscar Saldo
      GET
    • Solicitar Saque
      POST
    • Detalhar Saque
      GET
    • Listar Solicitações de Saque
      GET
  • Vendas
    • Criar Transação Crédito
      POST
    • Criar Transação PIX
      POST
    • Listar Transações
      GET
    • Detalhar Transação
      GET
    • QR Code PIX
      GET
    • Simulate Transações
      POST
  • Vendas Com Split
    • Criar Transação Crédito - Com Split
      POST
    • Criar Transação PIX - Com Split
      POST
    • Detalhar Split
      GET
  • Antifraude
    • Antifraude 3DS
    • Finalizar Transação 3DS
      POST
  • Webhooks
    • Eventos Webhook
  1. Vendas Com Split

Criar Transação Crédito - Com Split

POST
/transaction-split
Esse endpoint cria transações de crédito

Requisição

Authorization
Forneça seu token bearer no cabeçalho
Authorization
ao fazer requisições para recursos protegidos.
Exemplo:
Authorization: Bearer ********************
Parâmetros Header

Parâmetros Bodyapplication/json

Examples

Respostas

🟢201Criado
application/json
Possíveis status:
CREATED = Transação criada
PENDING = Transação em processamento
PAID = Transação confirmada
APPROVED = Transação confirmada
FAILED= Transação Negada
REFUNDED = Transação estornada
DISPUTED= Transação em estado de disputa
CANCELED= Transação foi cancelada em algum momento
CHARGEBACK = Transação com CHARGEBACK aprovada
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/transaction-split' \
--header 'establishment_id: {{establishment_id}}' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "payment_type": "CREDIT",
    "interest": "CLIENT",
    "amount": 11600,
    "installments": 3,
    "client": {
        "first_name": "Joao",
        "last_name": "da Silva",
        "document": "10085135046",
        "phone": "11999999999",
        "email": "email.cliente@gmail.com",
        "address": {
            "street": "Rua do Cliente",
            "number": "80",
            "complement": "Bloca A1",
            "neighborhood": "Bairro",
            "city": "Cidade",
            "state": "SP",
            "zip_code": "04548050"
        }
    },
    "card": {
        "holder_name": "Joao Silva",
        "holder_document": "10085135046",
        "card_number": "5497380067898745",
        "expiration_month": 5,
        "expiration_year": 2030,
        "security_code": "879"
    },
    "split": {
        "title": "Split Title",
        "division": "PERCENTAGE",
        "establishments": [
            {
                "value": 50,
                "id": 155518
            }
        ]
    },
    "session_id": "251ff5d5-365f-4b7f-96f0-1ce42cce8cf3",
    "reference_id": "251ff5d5-365f-4b7f-96f0-1ce42cce8cf3"
}'
Response Response Example
{
    "_id": "6900661e21818731a6a493bd",
    "status": "PENDING",
    "interest": "CLIENT",
    "establishment": {
        "id": 155104,
        "type": "BUSINESS",
        "first_name": "INOVPAY",
        "last_name": "INOVPAY FINTECH LTDA",
        "document": "54348971000156",
        "access_type": "ACQUIRER"
    },
    "marketplace": {
        "id": 40,
        "type": "LICENSED",
        "nickname": "INOVAPAY",
        "active": true,
        "first_name": "INOVPAY",
        "last_name": "INOVPAY FINTECH LTDA",
        "document": "54348971000156"
    },
    "representative": null,
    "amount": 12000,
    "original_amount": 12266,
    "fees": 266,
    "type": "CREDIT",
    "gateway_key": "c22622e5-f536-48e6-a2bf-3bf56cefe6bb",
    "gateway_authorization": "INOVPAY",
    "card": {
        "brand_name": "MASTERCARD",
        "first4_digits": "5497",
        "last4_digits": "8745",
        "expiration_month": "5",
        "expiration_year": "2030",
        "holder_name": "JOAO SILVA",
        "bin": "549738",
        "_id": "6900661e21818731a6a49376"
    },
    "installments": 3,
    "customer": {
        "first_name": "Joao",
        "last_name": "da Silva",
        "document": "10085135046",
        "phone": "11999999999",
        "email": "email.cliente@gmail.com",
        "address": {
            "street": "Rua do Cliente",
            "number": "80",
            "complement": "Bloca A1",
            "neighborhood": "Bairro",
            "city": "Cidade",
            "state": "SP",
            "zip_code": "04548050"
        },
        "_id": "6900661e21818731a6a49377"
    },
    "point_of_sale": {
        "type": "ONLINE",
        "identification_type": "API"
    },
    "acquirer": {
        "name": "PAGSEGURO",
        "acquirer_nsu": 123456789123,
        "gateway_key": "9006FBEA-D03B-46BD-BAB0-1944DB247D33",
        "authorization_number": "123456",
        "mid": "100000000000014",
        "_id": "6900661e21818731a6a493bc"
    },
    "expected_on": [
        {
            "date": "2025-11-27T12:00:00.657Z",
            "amount": 4000,
            "status": "PENDING",
            "installment": 1
        },
        {
            "date": "2025-12-29T12:00:00.657Z",
            "amount": 4000,
            "status": "PENDING",
            "installment": 2
        },
        {
            "date": "2026-01-26T12:00:00.657Z",
            "amount": 4000,
            "status": "PENDING",
            "installment": 3
        }
    ],
    "antifraud": [
        {
            "analyse_status": "APPROVED",
            "analyse_required": "CLEARSALE",
            "_id": "6900661e21818731a6a49393",
            "session": null
        }
    ],
    "created_at": "2025-10-28T06:43:42.665Z",
    "info_additional": []
}
Modificado em 2025-10-28 14:21:35
Página anterior
Simulate Transações
Próxima página
Criar Transação PIX - Com Split
Built with