1. Disputes
  • Bem vindo
  • Webhook
    • Webhook de TRANSAÇÃO
    • Webhook de Saque
    • Create
      POST
    • Find
      GET
    • Find All
      GET
    • Delete
      DELETE
  • Transactions
    • Pix
      POST
    • BOLETO
      POST
    • CARTÃO
      POST
    • Find All
      GET
    • Find
      GET
    • Find By Metadata
      GET
  • Withdraw
    • Find All
      GET
    • Cash Out
      POST
    • Find By Metadata
      GET
    • Find
      GET
  • Balance
    • Get Balance
      GET
  • Disputes
    • Find All
      GET
    • Find
      GET
    • Seller appeal
      POST
  • Fees
    • Get seller Fees
      GET
  • Check
    GET
  1. Disputes

Find

GET
/disputes/{id}

Requisição

Parâmetros de Caminho

Parâmetros Header

Respostas

🟢200OK
application/json
Body

🟠404Record Not Found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/disputes/' \
--header 'x-api-key: sk_0ac4c3892f8b2d843cdc54f06ca260e15a7c9d0f4f44f679'
Response Response Example
200 - Success
{
    "status": true,
    "data": {
        "data": [
            {
                "id": "dsp_001",
                "status": "OPEN",
                "amount": 250.00,
                "reason": "Produto com defeito",
                "createdBy": "user_123",
                "createdAt": "2025-07-08T12:00:00Z",
                "resolvedAt": null,
                "resolvedBy": null,
                "appealReason": null
            },
            {
                "id": "dsp_002",
                "status": "UNDER_REVIEW",
                "amount": 120.50,
                "reason": "Entrega atrasada",
                "createdBy": "user_456",
                "createdAt": "2025-07-07T09:45:00Z",
                "resolvedAt": null,
                "resolvedBy": null,
                "appealReason": "Cliente ainda não foi respondido"
            },
            {
                "id": "dsp_003",
                "status": "REJECTED",
                "amount": 75.00,
                "reason": "Produto não corresponde à descrição",
                "createdBy": "user_789",
                "createdAt": "2025-07-06T16:30:00Z",
                "resolvedAt": "2025-07-08T10:00:00Z",
                "resolvedBy": "admin_001",
                "appealReason": null
            },
            {
                "id": "dsp_004",
                "status": "RESOLVED",
                "amount": 310.00,
                "reason": "Item danificado durante o transporte",
                "createdBy": "user_321",
                "createdAt": "2025-07-05T14:20:00Z",
                "resolvedAt": "2025-07-08T11:15:00Z",
                "resolvedBy": "admin_002",
                "appealReason": "Cliente insistiu em nova análise"
            }
        ],
        "count": 0,
        "take": 10,
        "skip": 0
    }
}
Modificado em 2025-10-22 13:17:40
Página anterior
Find All
Próxima página
Seller appeal
Built with