Bulk get assets

POST /epm/bulk_assets
application/json; Elastic-Api-Version=2023-10-31

Body

  • assetIds array[object] Required

    list of items necessary to fetch assets

    Hide assetIds attributes Show assetIds attributes object

Responses

  • 200 application/json; Elastic-Api-Version=2023-10-31

    OK

    Hide response attribute Show response attribute object Deprecated
    • items array[object] Required
      Hide items attributes Show items attributes object
  • 400 application/json; Elastic-Api-Version=2023-10-31

    Generic Error

    Hide response attributes Show response attributes object
POST /epm/bulk_assets
curl \
 -X POST https://localhost:5601/epm/bulk_assets \
 -H "Content-Type: application/json; Elastic-Api-Version=2023-10-31"
Request examples
{
  "assetIds": [
    {
      "id": "string",
      "type": "string"
    }
  ]
}
Response examples (200)
{
  "items": [
    {
      "appLink": "string",
      "attributes": {
        "description": "string",
        "title": "string"
      },
      "id": "string",
      "type": "dashboard",
      "updatedAt": "string"
    }
  ]
}
Response examples (400)
{
  "error": "string",
  "message": "string",
  "statusCode": 42.0
}