Request Content Release Notes
GET/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.
Request
Query Parameters
Possible values: [content
]
The type of the release notes (ex. Content).
⚠️ Use without quotes
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'
Responses
- 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
- Array [
- Array [
- Array [
- ]
- Array [
- ]
- Array [
- Array [
- ]
- Array [
- ]
- ]
- ]
- ]
- Array [
- ]
The total number of entries found.
data object[]
The data of the response.
The release version of the update.
The content version of the update.
The type of the release notes.
json_data object[]
The release notes information.
General notices and reminders.
The APP-ID updates in the release notes.
The decoder updates in the release notes.
data_correlation object[]
The Data Correlation Object updates in the release notes.
List of new entries.
List of modified entries.
List of deleted entries.
file_type object[]
The File-Format updates in the release notes.
List of new entries.
List of modified entries.
List of disabled entries.
The Anti-Spyware updates in the release notes.
vulnerability object[]
The Vulnerability Protection updates in the release notes.
new object[]
List of new entries.
The severity of the threat.
The unique id of the signature.
The name of the signature.
The CVE (Common Vulnerabilities and Exposures) of the threat.
The vulnerability identifier issued by vendor on advisories.
The default action when the signature is triggered.
Additional information about the updated signature.
The PAN-OS minimum version.
The PAN-OS maximum version.
modified object[]
The severity of the threat.
The unique id of the signature.
The name of the signature.
The CVE (Common Vulnerabilities and Exposures) of the threat.
The vulnerability identifier issued by vendor on advisories.
The default action when the signature is triggered.
Additional information about the updated signature.
The PAN-OS minimum version.
The PAN-OS maximum version.
List of disabled entries.
link object[]
The pagination information of the results.
The URL of previous page with results.
The URL of next page with results.
Generic response message.
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
Generic response message.
The response status.
{
"message": "Error message.",
"success": false
}
Server related error response
- application/json
- Schema
- Example (from schema)
Schema
Generic response message.
The response status.
{
"message": "Error message.",
"success": false
}