Get stream attachments
Technical Preview
Spaces method and path for this operation:
get /s/{space_id}/api/streams/{streamName}/attachments
Refer to Spaces for more information.
Fetches all attachments linked to a stream that are visible to the current user in the current space. Optionally filter by attachment type.
[Required authorization] Route required privileges: read_stream.
GET
/api/streams/{streamName}/attachments
curl \
--request GET 'https://<KIBANA_URL>/api/streams/{streamName}/attachments' \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/json" \
--data '{"value":{}}'
Request example
{
"value": {}
}
Response examples (200)
{
"attachments": [
{
"id": "dashboard-123",
"tags": [
"monitoring",
"production"
],
"type": "dashboard",
"title": "My Dashboard"
}
]
}