Get log

GET /api/logs/{id}

Get log details by ID.

Path parameters

  • id string Required

    The unique identifier of the log.

Responses

GET /api/logs/{id}
curl \
 -X GET https://[tenant_id].logto.app/api/logs/{id} \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "tenantId": "string",
  "id": "string",
  "key": "string",
  "payload": {
    "key": "string",
    "result": "Success",
    "error": {},
    "ip": "string",
    "userAgent": "string",
    "userId": "string",
    "applicationId": "string",
    "sessionId": "string",
    "params": {}
  },
  "createdAt": 42.0
}