Skip to main content
GET
/
med-contest
/
exposes
Listar disputas de MED
curl --request GET \
  --url https://gateway.3xpay.co/med-contest/exposes \
  --header 'api_key: <api-key>' \
  --header 'api_secret: <api-key>'
{
  "medsContest": [
    {
      "id": 50231,
      "transactionId": "01a51b3e-e17d-45eb-b8a2-e2392b6b1b28",
      "order_processor_id": "ORDER-XPTO-99",
      "status": "MED",
      "external_id": "PARTNER-REF-001",
      "created_at": "2026-05-10T13:22:11.000Z",
      "updated_at": "2026-05-11T09:14:02.000Z",
      "user": {
        "name": "Parceiro X"
      },
      "MedContest": {
        "id": 1024,
        "transactionId": 50231,
        "status": "WAITING_CONTENT",
        "content": "https://s3.../comprovante.pdf",
        "description": "Comprovante de pagamento original.",
        "external_med_id": "dispute_8f3a...",
        "processor_name": "woovi",
        "retry_count": 0,
        "last_error": "<string>",
        "created_at": "2026-05-12T10:30:00.000Z",
        "updated_at": "2026-05-12T10:30:00.000Z"
      }
    }
  ],
  "total": 1,
  "totalPages": 1,
  "currentPage": 1,
  "nextPage": null,
  "prevPage": null,
  "pageSize": 20
}

Documentation Index

Fetch the complete documentation index at: https://docs.3xpay.co/llms.txt

Use this file to discover all available pages before exploring further.

Retorna a lista paginada de todas as disputas de MED da conta autenticada. Aceita filtros por status, created_at e updated_at.

Authorizations

api_key
string
header
required
api_secret
string
header
required

Query Parameters

page
string
default:1

Página.

pageSize
string
default:10

Itens por página.

status
enum<string>

Filtra por status do MED.

Available options:
WAITING_CONTENT,
REQUESTED,
DEFENSE_SUBMITTED,
DEFENSE_FAILED,
APPROVED,
REJECTED,
REFUNDED,
CANCELLED
created_at
string<date>

Filtra por data de criação (ISO date).

updated_at
string<date>

Filtra por data de atualização (ISO date).

Response

Lista paginada de disputas

medsContest
object[]
total
integer
Example:

1

totalPages
integer
Example:

1

currentPage
integer
Example:

1

nextPage
integer | null
Example:

null

prevPage
integer | null
Example:

null

pageSize
integer
Example:

20