Tags Payload Files

When the system adds, edits, or deletes asset tags, Tenable Data Stream sends a payload file to your AWS bucket. In the file, updates appear in the updates array and deletes appear with a timestamp in the deletes array.

Note: To maintain compatibility with the Tenable API, Tenable Data Stream also sends an assets payload file with an empty tags object.

The following example shows the format of a tags payload file. For definitions of the properties in this file, see Tags Properties.

Copy
{
  "payload_id": "tags-1727096866393-5",
  "version": 1,
  "type": "TAGS",
  "count_updated": 1,
  "count_deleted": 0,
  "updates": [
    {
      "target": {
        "asset_uuid": "03215919-88c1-4ed9-a59e-7d530940c7f4"
      },
      "tags": [
        {
          "type": "DYNAMIC",
          "category_uuid": "bef73bb5-c35c-4a70-a1fd-3bfcf8b034bb",
          "value_uuid": "5317410c-87b0-4a96-8cca-fc2d3e56c94b",
          "category_name": "Asset Type",
          "tag_name": "sample",
          "created_by": null,
          "created_at": 1727096866286,
          "updated_by": null,
          "updated_at": 1727096866286,
          "description": null,
          "category_description": null,
          "product": "IO"
        }
      ]
    }
  ],
  "deletes": [],
  "first_ts": "1727096866345",
  "last_ts": "1727096866345"
}