Get Error Analysis
GET
/api/v1/audit-logs/errors
const url = 'https://api.qeychain.xyz/api/v1/audit-logs/errors';const options = {method: 'GET', headers: {'X-API-Key': '<X-API-Key>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.qeychain.xyz/api/v1/audit-logs/errors \ --header 'X-API-Key: <X-API-Key>'Get error analysis for debugging and incident investigation.
Groups errors by:
- Error code
- Path
- Client
Use Cases:
- Incident investigation
- Error trending
- Client support
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Examplegenerated
exampleValidation Error
Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example" } ]}