Request Content Release Notes
A GET request to retrieve the release notes information by type and version.
- Notes:
- Any Content release notes before Version 8000 is best effort.
Query Parameters
- type string required
Possible values: [
content
]The type of the release notes (ex. Content).
⚠️ Use without quotes
- version string required
The release version (ex. 8446) or content version (ex. 8446-6886) of the release notes.
curl -v -H 'X-API-KEY: API_KEY' 'https://api.threatvault.paloaltonetworks.com/service/v1/release-notes?type=content&version=8446-6886'
Use latest for latest release version:
curl -v -H 'X-API-KEY: API_KEY' 'https://api.threatvault.paloaltonetworks.com/service/v1/release-notes?type=content&version=latest'
- 200
- 4XX
- 5XX
Request succeeded
Response Headers
X-Day-RateLimit-Limit integer
Example: 2000The maximum number of requests that the user is permitted to make per day.
X-Day-RateLimit-Remaining integer
The number of requests remaining in the current rate limit window (one day).
X-Day-RateLimit-Reset integer
The epoch timestamp at which the current rate limit window (one day) resets.
X-Minute-RateLimit-Limit integer
Example: 200The maximum number of requests that the user is permitted to make per minute.
X-Minute-RateLimit-Remaining integer
The number of requests remaining in the current rate limit window (one minute).
X-Minute-RateLimit-Reset integer
The epoch timestamp at which the current rate limit window (one minute) resets.
- application/json
- Schema
- Example (from schema)
Schema
- count integer
The total number of entries found.
data object[]
The data of the response.
Array [release_version integerThe release version of the update.
content_version stringThe content version of the update.
type stringThe type of the release notes.
json_data object[]
The release notes information.
Array [notes arrayGeneral notices and reminders.
applications arrayThe APP-ID updates in the release notes.
decoders arrayThe decoder updates in the release notes.
data_correlation object[]
The Data Correlation Object updates in the release notes.
Array [new arrayList of new entries.
modified arrayList of modified entries.
deleted arrayList of deleted entries.
]file_type object[]
The File-Format updates in the release notes.
Array [new arrayList of new entries.
modified arrayList of modified entries.
disabled arrayList of disabled entries.
]spyware arrayThe Anti-Spyware updates in the release notes.
vulnerability object[]
The Vulnerability Protection updates in the release notes.
Array [new object[]
List of new entries.
Array [severity stringThe severity of the threat.
pan_id integerThe unique id of the signature.
attack_name stringThe name of the signature.
cve stringThe CVE (Common Vulnerabilities and Exposures) of the threat.
vendor stringThe vulnerability identifier issued by vendor on advisories.
action stringThe default action when the signature is triggered.
change_data stringAdditional information about the updated signature.
min_version stringThe PAN-OS minimum version.
max_version stringThe PAN-OS maximum version.
]modified object[]
Array [severity stringThe severity of the threat.
pan_id integerThe unique id of the signature.
attack_name stringThe name of the signature.
cve stringThe CVE (Common Vulnerabilities and Exposures) of the threat.
vendor stringThe vulnerability identifier issued by vendor on advisories.
action stringThe default action when the signature is triggered.
change_data stringAdditional information about the updated signature.
min_version stringThe PAN-OS minimum version.
max_version stringThe PAN-OS maximum version.
]disabled arrayList of disabled entries.
]]]link object[]
The pagination information of the results.
Array [next stringThe URL of previous page with results.
previous stringThe URL of next page with results.
]- message string
Generic response message.
- success boolean
The response status.
{
"count": 2,
"data": [
{
"release_version": 8446,
"content_version": "8446-6886",
"type": "content",
"json_data": [
{
"notes": [
null
],
"applications": [
null
],
"decoders": [
"improved ..."
],
"data_correlation": [
{
"new": [
null
],
"modified": [
null
],
"deleted": [
null
]
}
],
"file_type": [
{
"new": [
null
],
"modified": [
null
],
"disabled": [
null
]
}
],
"spyware": [
null
],
"vulnerability": [
{
"new": [
{
"severity": "high",
"pan_id": 30515,
"attack_name": "File Loading",
"cve": "",
"vendor": "",
"action": "reset-both",
"change_data": "updated action to ....",
"min_version": "8.1.0",
"max_version": "9.1.0"
}
],
"modified": [
{
"severity": "high",
"pan_id": 30077,
"attack_name": "Vulnerability",
"cve": "CVE-2006-3942, CVE-2006-1314",
"vendor": "MS06-063",
"action": "reset-server",
"change_data": "updated action to ....",
"min_version": "8.1.0",
"max_version": ""
}
],
"disabled": [
null
]
}
]
}
]
}
],
"link": [
{
"next": "string",
"previous": "string"
}
],
"message": "Successful",
"success": true
}
Client related error response
- application/json
- Schema
- Example (from schema)
Schema
- message string
Generic response message.
- success boolean
The response status.
{
"message": "Error message.",
"success": false
}
Server related error response
- application/json
- Schema
- Example (from schema)
Schema
- message string
Generic response message.
- success boolean
The response status.
{
"message": "Error message.",
"success": false
}