Skip to main content
Planview Customer Success Center

How do I get configuration logs using Hub's public API?

Last Updated: July 16, 2025  |  Applicable Hub Versions: All

Answer

You can access configuration history logs through our public API using Swagger UI, Postman, or similar API tools.

Authentication

Before making API calls, you need to obtain a bearer token:

  1. Send a request to:
    • https://{hostname}.tasktop.net/auth/realms/Tasktop/protocol/openid-connect/token
      
  2. Extract the access_token from the response
  3. Include this token in subsequent requests as a bearer token

Note: Tokens expire after 5 minutes.

Request Parameters

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

API Documentation

Full API documentation is available in Swagger UI at:

https://{hostname}.tasktop.net/#/apidocumentation

Screenshot 2025-06-20 at 10.56.20 AM (1).png

Response

The API returns a paginated list of configuration logs within the specified time range.