Spaces method and path for this operation:
get /s/{space_id}/api/fleet/remote_synced_integrations/{outputId}/remote_status
Refer to Spaces for more information.
Get the synchronization status of remote integrations for a specific output by its ID.
[Required authorization] Route required privileges: fleet-settings-read AND integrations-read.
GET
/api/fleet/remote_synced_integrations/{outputId}/remote_status
curl \
--request GET 'https://localhost:5601/api/fleet/remote_synced_integrations/{outputId}/remote_status' \
--header "Authorization: $API_KEY"
Response examples (200)
Synchronization status of remote integrations for a specific output
{
"integrations": [
{
"id": "nginx-remote",
"install_status": {
"main": "installed",
"remote": "installed"
},
"package_name": "nginx",
"package_version": "1.20.0",
"sync_status": "COMPLETED",
"updated_at": "2024-01-01T00:00:00.000Z"
}
]
}
Response examples (400)
Example of a generic error response
{
"error": "Bad Request",
"message": "An error message describing what went wrong",
"statusCode": 400
}