Pular para o conteúdo principal
GET
/
v1
/
exceptions
/
{exceptionId}
/
history
Get exception history
curl --request GET \
  --url https://matcher.sandbox.lerian.net/v1/exceptions/{exceptionId}/history \
  --header 'Authorization: Bearer <token>'
{
  "hasMore": true,
  "items": [
    {
      "action": "FORCE_MATCH",
      "actorId": "user@example.com",
      "changes": "<unknown>",
      "createdAt": "2025-01-15T10:30:00.000Z",
      "id": "019c96a0-0b4e-7079-8be0-ab6bdccf975f"
    }
  ],
  "limit": 20,
  "nextCursor": "eyJpZCI6IjEyMyJ9",
  "prevCursor": "eyJpZCI6IjEyMiJ9"
}

Autorizações

Authorization
string
header
obrigatório

Bearer token authentication (format: "Bearer {token}")

Cabeçalhos

X-Request-Id
string

A unique identifier for tracing the request across services.

Parâmetros de caminho

exceptionId
string
obrigatório

Exception ID

Parâmetros de consulta

cursor
string

The cursor value for retrieving the next page of results.

limit
integer
padrão:20

Number of items per page

Intervalo obrigatório: 1 <= x <= 200

Resposta

Indicates that the request was successful and the response contains the expected data.

Audit history

hasMore
boolean
Exemplo:

true

items
object[]

List of history entries

limit
integer
Intervalo obrigatório: 1 <= x <= 200
Exemplo:

20

nextCursor
string
Exemplo:

"eyJpZCI6IjEyMyJ9"

prevCursor
string
Exemplo:

"eyJpZCI6IjEyMiJ9"