1. Schemas
  • Introdução à API
  • Tokenização de Cartão de Crédito
  • Transactions
    • Criar Transação
      POST
    • Buscar Transação
      GET
    • Listar Transações
      GET
    • Atualizar Status de Entrega
      PUT
    • Estornar Transação
      DELETE
  • Customers
    • Criar Cliente
      POST
    • Listar Clientes
      GET
    • Buscar Cliente
      GET
    • Atualizar Cliente
      PUT
  • Esquemas
    • Schemas
      • ResponsePixSuccess
      • ResponseCardSuccess
      • CreateTransactionRequest
      • TransactionResponse
      • CreateCustomerRequest
      • UpdateCustomerRequest
      • Customer
      • UpdateDeliveryRequest
  1. Schemas

ResponsePixSuccess

{
    "id": "string",
    "amount": 0,
    "refundedAmount": 0,
    "companyId": "string",
    "installments": 0,
    "paymentMethod": "string",
    "status": "string",
    "postbackUrl": "string",
    "metadata": "string",
    "traceable": true,
    "createdAt": "string",
    "updatedAt": "string",
    "paidAt": null,
    "ip": "string",
    "externalRef": null,
    "customer": {
        "id": "string",
        "name": "string",
        "email": "string",
        "phone": "string",
        "birthdate": null,
        "createdAt": "string",
        "document": {
            "number": "string",
            "type": "string"
        },
        "address": {
            "street": "string",
            "streetNumber": "string",
            "complement": "string",
            "zipCode": "string",
            "neighborhood": "string",
            "city": "string",
            "state": "string",
            "country": "string"
        }
    },
    "card": null,
    "boleto": null,
    "pix": {
        "qrcode": "string",
        "expirationDate": "string",
        "end2EndId": null,
        "receiptUrl": null
    },
    "shipping": {
        "street": "string",
        "streetNumber": "string",
        "complement": "string",
        "zipCode": "string",
        "neighborhood": "string",
        "city": "string",
        "state": "string",
        "country": "string"
    },
    "refusedReason": null,
    "items": [
        {
            "title": "string",
            "quantity": 0
        }
    ],
    "splits": [
        {
            "recipientId": "string",
            "netAmount": 0
        }
    ],
    "fee": {
        "fixedAmount": 0,
        "spreadPercentage": 0,
        "estimatedFee": 0,
        "netAmount": 0
    }
}
Built with