How do I get configuration logs using Hub's public API?
Last Updated: July 16, 2025 | Applicable Hub Versions: All
Last Updated: July 16, 2025 | Applicable Hub Versions: All
You can access configuration history logs through our public API using Swagger UI, Postman, or similar API tools.
Before making API calls, you need to obtain a bearer token:
https://{hostname}.tasktop.net/auth/realms/Tasktop/protocol/openid-connect/token
        access_token from the responseNote: Tokens expire after 5 minutes.
| Parameter | Description | Default | Required? | 
|---|---|---|---|
| startTime | Start time for log retrieval (epoch milliseconds) | - | Yes | 
| endTime | End time for log retrieval (epoch milliseconds) | Current time | No | 
| offset | Starting index for pagination | 0 | No | 
| limit | Maximum number of logs per response | 100 | No | 
Full API documentation is available in Swagger UI at:
https://{hostname}.tasktop.net/#/apidocumentation
.png?revision=1)
The API returns a paginated list of configuration logs within the specified time range.

