Error Logging

Get error logs

GET /errors

This is useful for tracking errors over time and understanding any patterns or critical issues.

Query Parameters

Name
Type
Description

start

timestamp

start time (>=)

end

timestamp

end time (<=)

limit

string (optional)

Page size (default 1000)

next_token

string (optional)

Pagination token to get next set of results.

Response

{
  "status": "success",
  "errors": [
    {
      "timestamp": timestamp,
      "message": string,
      "body": string
    }, 
    {
    ...
    }
  ],
  "next_token": string,
  "limit": number,
  "is_all": boolean //"true" or "false"
}

Last updated

Was this helpful?