added
PCI ASV: List Undisputed Failures
over 1 year ago by Lance Duvall
A new endpoint has been added to the Tenable PCI ASV API to allow customers to retrieve a list of undisputed failures for a specified PCI attestation. You can specify the attestation you want to retrieve the undisputed failures for via the attestation_uuid
path parameter. For more information about PCI ASV, see Get Started with PCI ASV Scanning in the Tenable Vulnerability Management User Guide.
The new endpoint is described in the following table:
Endpoint | Name | Description |
---|---|---|
GET /pci-asv/attestations/{attestation_uuid}/failures/undisputed/list | List undisputed failures | Returns a list of undisputed failures of the specified PCI attestation. |
Note
You need to request access to this endpoint through Tenable support even if you have a valid PCI ASV license.
Example
For example, to list assets for an attestation with a UUID of b3c7488a-5ed4-45c5-b58d-90d2b90befa4
in descending order by asset_name
, you could use the following cURL request:
curl --request GET \
--url 'https://cloud.tenable.com/pci-asv/attestations/b3c7488a-5ed4-45c5-b58d-90d2b90befa4/failures/undisputed/list?sort=asset_name%3Adesc' \
--header 'X-ApiKeys: accessKey=<YOURKEY>;secretKey=<YOURKEY>' \
--header 'accept: application/json'