## Get a log `GET https://getkollek.com/api/administration/logs/{log}` Retrieve a single log entry of your user by its ID. ### Path parameters - `log` (integer, required): The ID of the log entry. **Returns:** A log object, or 404 when the log belongs to another user. ### Example request ```bash curl https://getkollek.com/api/administration/logs/2 \ -H "Authorization: Bearer $API_KEY" \ -H "Accept: application/json" ``` ### Example response `Status: 200` ```json { "data": { "type": "log", "id": "2", "attributes": { "user_name": "Monica Geller", "action": "collection_creation", "parameters": { "name": "My Comics" }, "description": "Created the collection My Comics", "created_at": 1752537600, "updated_at": 1752537600 }, "links": { "self": "https://getkollek.com/api/administration/logs/2" } } } ```