added
PCI ASV: Get Attestation Details
over 1 year ago by Lance Duvall
A new endpoint has been added to the Tenable PCI ASV API to allow customers to retrieve details for a specified PCI attestation. You can specify the attestation you want to retrieve details for via the attestation_uuid
path parameter. 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/details/{attestation_uuid} | Get attestation details | Returns details for 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 retrieve details for an attestation with a UUID of a1b7498a-5ed4-45c5-b58d-90d2b90befec
, you could use the following cURL request:
curl --request GET \
--url https://cloud.tenable.com/pci-asv/attestations/details/a1b7498a-5ed4-45c5-b58d-90d2b90befec \
--header 'X-ApiKeys: accessKey=<YOURKEY>;secretKey=<YOURKEY>' \
--header 'accept: application/json'