Console Logs API
The Console Logs API is a secure REST API that provides console logs.
Retrieves console logs for a specific rule solve identified by its correlationId. The correlationId can be obtained from the X-Correlation-Id response header of the Rule Solver API. Logs are only generated when the solve is run in debug mode (e.g., using the X-Debug: true header).
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
correlationIdstring · uuidRequiredExample:
The unique identifier for a rule solve.
a1b2c3d4-e5f6-7g8h-9i0j-1k2l3m4n5o6pResponses
200
Console logs retrieved successfully.
application/json
401
Unauthorized. Invalid or missing API key.
404
Not Found. No logs found for the given correlationId, or the logs have expired.
get
/{correlationId}Last updated