For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
HUMAN DashboardHUMAN WebsiteRequest a Demo
Product GuidesEnforcer GuidesMobile SDKAPI ReferenceCustomer support
Product GuidesEnforcer GuidesMobile SDKAPI ReferenceCustomer support
  • User guides
    • About the Applications API
    • Getting started
    • Authentication
    • Quick reference
  • Account Defender API
  • Bot Defender API
  • Credential Intelligence API
  • Code Defender API
    • Code Examples
  • Enforce API
  • PCI DSS API
      • GETGet header audits
      • GETGet script audits
LogoLogo
Login
Login
HUMAN DashboardHUMAN WebsiteRequest a Demo
PCI DSS APIAudits

Get script audits

GET
https://api-gw.perimeterx.com/v1/pci/audits/scripts
GET
/v1/pci/audits/scripts
$curl -G https://api-gw.perimeterx.com/v1/pci/audits/scripts \
> -H "Authorization: Bearer <token>" \
> -d appId=PXabc123 \
> -d appId=PXdef456 \
> -d tld=domain1.com \
> -d tld=domain2.com \
> -d from=1674313200000
1{
2 "paging": {
3 "previous": "",
4 "current": "https://localhost:80/v1/pci/audits/scripts?appId=PXabcd1234&from=1&tld=humansecurity.com&take=31&skip=0",
5 "next": "",
6 "count": 31
7 },
8 "data": [
9 {
10 "event_key": "226b2511975a885acf8b74a01255fff2",
11 "event_time": "2021-09-15 15:40:01 +0000 UTC",
12 "app_id": "PXabcd1234",
13 "host_domain": "humansecurity.com",
14 "script": "humansecurity.com/js/oldscript.js",
15 "script_key": "aaa111bbb222ccc333ddd444",
16 "status": "unreviewed",
17 "change": "New script",
18 "updated_by": "HUMAN Security",
19 "vendor_name": "string",
20 "vendor_url": "string"
21 }
22 ]
23}
Returns a list of PCI DSS payment page script audits for the given Application ID and host domain.
Was this page helpful?
Previous
Built with

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Query parameters

appIdlist of stringsRequired
An array of Application IDs to filter the relevant incidents by. At least one ID is required.
tldlist of stringsRequired
An array of host domains to filter the relevant incidents by. At least one domain is required.
fromintegerOptional
A timestamp, in milliseconds, indicating from what point in time to filter the results by. Defaults to the past year.

Response

Success
pagingobject
datalist of objects

Errors

401
Unauthorized Error
422
Unprocessable Entity Error
500
Internal Server Error