This API call returns a summary of the specified POP, including details regarding previous and scheduled discovery and deployment timestamps.
For more details about Administration API Authentication, check out the Authentication APIs documentation
Provide your bearer token in the Authorization header when making requests to protected resources.
Example: Authorization: Bearer 123
The Environment ID can be found under the Details Tab in the Environment Settings.
POP ID. You can find the POP ID using the GET List of POPs API or through the UI under your POP settings in the Integration Workspace.
Success
MANAGE POP with scheduled discovery and deployment
{
"data": {
"lastSuccessfulDiscovery": "2024-06-14T08:15:00Z",
"lastSuccessfulDeployment": "2024-06-14T08:22:00Z",
"nextScheduledDiscovery": "2024-06-15T08:15:00Z",
"nextScheduledDeployment": "2024-06-15T08:15:00Z"
}
}LEARN POP — no scheduled deployment timestamps
{
"data": {
"lastSuccessfulDiscovery": "2024-06-14T08:15:00Z",
"nextScheduledDiscovery": "2024-06-15T08:15:00Z"
}
}POP with a recent workflow failure
{
"data": {
"lastSuccessfulDiscovery": "2024-06-14T08:15:00Z",
"lastSuccessfulDeployment": "2024-06-14T08:22:00Z",
"nextScheduledDiscovery": "2024-06-15T08:15:00Z",
"nextScheduledDeployment": "2024-06-15T08:15:00Z",
"lastFailureTime": "2024-06-13T16:40:00Z",
"lastFailureMessage": "activity error (type: DeployPolicies, scheduledEventID: 12): connection timeout"
}
}Timestamps for POP data
Timestamp for the last successful Discovery in UTC.
Timestamp for the last successful Deployment in UTC.
Time set for the next scheduled Discovery in UTC.
Time set for the next scheduled Deployment in UTC.
Timestamp for the last failure time in UTC.
The failure message returned for the last failed discovery or deployment operation.
Bad Request
Unauthorized
Not Found
Internal Server Error