You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is an endpoint for the deployment status (/director/config/deployment-status) that returns a checksum for the latest activity deployed, but the endpoints for querying activity logs are not exposed as part of the API. This limits the ability to retrieve detailed information about what was deployed, what resources were updated, deleted, or created, and when those changes occurred.
The /director/config/activities endpoint and the /director/config/activity?id=xxx endpoint are available through the web interface but return a 404 error when queried through the API.
Current Behaviour
/director/config/activities returns a 404 error for API requests: { "error": "Not found" }
/director/config/activity?id=xxx also returns a 404 error for API requests: { "error": "Not found" }
Expected Behaviour
/director/config/activities:
Should return a 200 status code.
Should provide a list of all activities in the log.
Should include filtering options based on:
change_time
author
object_name
object_type
/director/config/activity?id=xxx:
Should return a 200 status code.
Should provide details of the activity with the specified ID xxx, including all of its associated fields.
Your Environment
Director version: 1.11.1
The text was updated successfully, but these errors were encountered:
There is an endpoint for the deployment status (
/director/config/deployment-status
) that returns a checksum for the latest activity deployed, but the endpoints for querying activity logs are not exposed as part of the API. This limits the ability to retrieve detailed information about what was deployed, what resources were updated, deleted, or created, and when those changes occurred.The
/director/config/activities
endpoint and the/director/config/activity?id=xxx
endpoint are available through the web interface but return a 404 error when queried through the API.Current Behaviour
/director/config/activities
returns a 404 error for API requests:{ "error": "Not found" }
/director/config/activity?id=xxx
also returns a 404 error for API requests:{ "error": "Not found" }
Expected Behaviour
/director/config/activities
:/director/config/activity?id=xxx
:Your Environment
The text was updated successfully, but these errors were encountered: