: Add End-Customer Information for a Registered VM-Series Firewall (API)
Focus
Focus

Add End-Customer Information for a Registered VM-Series Firewall (API)

Table of Contents

Add End-Customer Information for a Registered VM-Series Firewall (API)

An API request must use the HTTP POST method, and you must include HTTP requests headers that include the API key and specify the content type as JSON. API responses are in JSON format.
  1. Use the ReportEndUserInfo API to add end-user information for a VM-Series Firewall that is registered to a CSSP.
    URL
    :
    https://api.paloaltonetworks.com/api/license/ReportEndUserInfo
    Headers:
    • Content-Type: application/json
    • apiKey: API Key
    Parameters
    :
    • SerialNumbers
      :
      Required
      , provide at least one valid firewall serial number
    • CustomerReferenceId
      :
      Required
    • CompanyName
      :
      Required
      , end-user company name
    • DnBNumber
      : Data Universal Numbering System (D-U-N-S) number
    • PhoneNumber
      : End-user phone number
    • EndUserContactEmail
      :
      Required
      , end-user email address
    • Address
      :
      Required
      , end-user address
    • Country
      :
      Required
      , ISO 2-letter country code
    • City
      :
      Required
      , end-user city name
    • Region/State
      :
      Required
      ; for the United States and Canada, you must enter an ISO 2-letter subdivision code; for all other countries, any alpha string is valid
    • PostalCode
      :
      Required
      , end-user postal code
    • Industry
      : End-user industry type, such as networking or consultancy
    • WebSite
      : End-user website URL
    • CreatedBy
      : System or person submitting this information
    Sample request to add end-user information for a registered VM-Series firewall using Curl:
    curl -X POST "http://api.paloaltonetworks.com/api/license/ReportEndUserInfo" \-H "Content-Type: application/json" \-H "apikey: your_key_here" \--data-raw '{ "SerialNumbers": ["0001A101234"], "CustomerAccountId": 12345, "CompanyName": "ExampleInc", "DnBNumber": "123456789", "Address": "123 Main St", "City": "Sunnydale", "Region": "CA", "State": "CA", "Country": "US", "PostalCode": "12345", "Industry": "Medical", "PhoneNumber": "4081234567", "WebSite": "example.com", "EndUserContactEmail": "admin@example.com", "CreatedBy": "Jane Doe"}'
    Sample API response
    :
    "{"Message": "End User Information Updated Successfully"}"
    If you receive an error, see Licensing API Error Codes.

Recommended For You