thirdpartyreportpdf.do
The thirdpartyreportpdf.do
call downloads a PDF file of the scan results for the specified build of a third-party application.
Before using this API, Veracode strongly recommends that you read API usage and access guidelines. Ensure you access the APIs with the domain for your region.
Resource URL
https://analysiscenter.veracode.com/api/4.0/thirdpartyreportpdf.do
Parameters
Name | Type | Description |
---|---|---|
build_id Required | Integer | Application or sandbox build ID. |
HTTPie example
Examples use the HTTPie command-line tool.
http --auth-type=veracode_hmac -o thirdpartyreport.pdf "https://analysiscenter.veracode.com/api/4.0/thirdpartyreportpdf.do" "build_id==<build id>"
HTTPie results
The thirdpartyreportpdf.do
call returns the thirdpartyreport_<app_name>_<build_id>
PDF format of the scan results of a third-party application.
Java wrapper example
java -jar vosp-api-wrapper-java{version}.jar -vid <Veracode API ID> -vkey <Veracode API Key> -action thirdpartyreport -buildid <build id> -format pdf -outputfilepath c:\javawrappers\thirdpartyreport.pdf
C# wrapper example
VeracodeC#API -vid <Veracode API ID> -vkey <Veracode API Key> -action thirdpartyreport -buildid <build id> -format pdf -outputfilepath c:\csharpwrappers\thirdreport.pdf
API wrapper results
To get the same result as thirdpartyreportpdf.do
using an API wrapper, you use the following parameters:
-action thirdpartyreport
-format pdf
The thirdpartyreportpdf.do
call returns the scan results of a third-party application as a PDF with filename thirdpartyreport_<app_name>_<build_id>.pdf
.