added
PCI ASV: List Attestation Disputes
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 disputes for a specified PCI attestation. You can specify the attestation you want to retrieve the disputes 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/details/{attestation_uuid}/disputes | List attestation disputes | Returns a list of disputes 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 list disputes for an attestation with a UUID of b1c7498a-5ed4-45c5-b58d-90d2b90befea
in descending order by created_at
, you could use the following cURL request:
curl --request GET \
--url 'https://cloud.tenable.com/pci-asv/attestations/details/b1c7498a-5ed4-45c5-b58d-90d2b90befea/disputes?sort=created_at%3Adesc' \
--header 'X-ApiKeys: accessKey=<YOURKEY>;secretKey=<YOURKEY>' \
--header 'accept: application/json'