added

PCI ASV: List Attestations

A new endpoint has been added to the Tenable.io PCI ASV API to allow customers to list PCI attestations. The endpoint accepts a query parameter called status_type to filter the results by status. For more information about PCI ASV, see Get Started with PCI ASV Scanning in the Tenable.io User Guide.

The new endpoint is described in the following table:

EndpointNameDescription
GET /pci-asv/attestations/listList PCI attestationsReturns a list of PCI attestations in PCI ASV.

Example

For example, to list attestations that are currently in review in descending order by name, you could use the following cURL request:

curl --request GET \
     --url 'https://cloud.tenable.com/pci-asv/attestations/list?limit=10&sort=name%3Adesc&status_type=IN_REVIEW' \
     --header 'X-ApiKeys: accessKey=<YOURKEY>;secretKey=<YOURKEY>' \
     --header 'accept: application/json'