added
PCI ASV: List Attestations
about 1 month ago by Lance Duvall
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:
Endpoint | Name | Description |
---|---|---|
GET /pci-asv/attestations/list | List PCI attestations | Returns 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'