Skip to main content

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

    type stringrequired

    Possible values: [content]

    The type of the release notes (ex. Content).

    ⚠️ Use without quotes

    version stringrequired

    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

Request succeeded

Response Headers
  • X-Day-RateLimit-Limit integer
    Example: 2000

    The 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: 200

    The 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.

Schema
    count integer

    The total number of entries found.

    data object[]

    The data of the response.

  • Array [
  • release_version integer

    The release version of the update.

    content_version string

    The content version of the update.

    type string

    The type of the release notes.

    json_data object[]

    The release notes information.

  • Array [
  • notes array

    General notices and reminders.

    applications array

    The APP-ID updates in the release notes.

    decoders array

    The decoder updates in the release notes.

    data_correlation object[]

    The Data Correlation Object updates in the release notes.

  • Array [
  • new array

    List of new entries.

    modified array

    List of modified entries.

    deleted array

    List of deleted entries.

  • ]
  • file_type object[]

    The File-Format updates in the release notes.

  • Array [
  • new array

    List of new entries.

    modified array

    List of modified entries.

    disabled array

    List of disabled entries.

  • ]
  • spyware array

    The 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 string

    The severity of the threat.

    pan_id integer

    The unique id of the signature.

    attack_name string

    The name of the signature.

    cve string

    The CVE (Common Vulnerabilities and Exposures) of the threat.

    vendor string

    The vulnerability identifier issued by vendor on advisories.

    action string

    The default action when the signature is triggered.

    change_data string

    Additional information about the updated signature.

    min_version string

    The PAN-OS minimum version.

    max_version string

    The PAN-OS maximum version.

  • ]
  • modified object[]
  • Array [
  • severity string

    The severity of the threat.

    pan_id integer

    The unique id of the signature.

    attack_name string

    The name of the signature.

    cve string

    The CVE (Common Vulnerabilities and Exposures) of the threat.

    vendor string

    The vulnerability identifier issued by vendor on advisories.

    action string

    The default action when the signature is triggered.

    change_data string

    Additional information about the updated signature.

    min_version string

    The PAN-OS minimum version.

    max_version string

    The PAN-OS maximum version.

  • ]
  • disabled array

    List of disabled entries.

  • ]
  • ]
  • ]
  • link object[]

    The pagination information of the results.

  • Array [
  • next string

    The URL of previous page with results.

    previous string

    The URL of next page with results.

  • ]
  • message string

    Generic response message.

    success boolean

    The response status.

Loading...