Skip to main content

Create a Dynamic Analysis of a single URL with the REST API

You can use the Dynamic Analysis API to create an analysis of a single URL.

To complete this task:

  1. Enter values for the scan_config_request and schedule properties in the JSON file.

  2. Send the following request:

    http --auth-type=veracode_hmac POST "https://api.veracode.com/was/configservice/v1/analyses" < input.json

    This is an example of a Dynamic Analysis for one URL that runs immediately for one day:

    {
    "name": "Name-of-Your-Dynamic-Analysis",
    "scans": [
    {
    "scan_config_request": {
    "target_url": {
    "url": "http://www.example.com"
    }
    }
    }
    ],
    "schedule": {
    "duration": {
    "length": 1,
    "unit": "DAY"
    },
    "scheduled": true,
    "now": true
    }
    }