NPM SSL Unrecognized Certificate APIs v1.0
Created Mar 27, 2024 at 07:05 PM

Resource: ignored_cert

This resource deals with an unrecognized ignored certificate

http://{device}/api/npm.unrecognized_certs/1.0/ignored_certs/items/{id}
  • JSON
  • {
      "host_name": string,
      "id": string,
      "ip_addr": string,
      "port": integer
    }
    Property Name Type Description Notes
    ignored_cert <object> This resource deals with an unrecognized ignored certificate
    ignored_cert.host_name <string> The Hostname of the server which sent the certificate Optional;
    ignored_cert.id <string> A unique id for the certificate Optional;
    ignored_cert.ip_addr <string> The IP address of the server which sent the certificate Optional;
    ignored_cert.port <integer> The port of the server which sent the certificate Optional;

    Resource: ignored_certs

    This resource deals with unrecognized ignored certificates

    http://{device}/api/npm.unrecognized_certs/1.0/ignored_certs
  • JSON
  • {
      "items": [ ignored_cert ],
      <prop>: any
    }
    Property Name Type Description Notes
    ignored_certs <object> This resource deals with unrecognized ignored certificates
    ignored_certs.items <array of <ignored_cert>> Optional;
    ignored_certs.items[items] <ignored_cert> This resource deals with an unrecognized ignored certificate
    ignored_certs.<prop> <any> Optional;

    Resource: recent_certs

    This resource deals with unrecognized recent certificates

    http://{device}/api/npm.unrecognized_certs/1.0/recent_certs
  • JSON
  • {
      "items": [
        {
          "appearance_count": integer,
          "details": string,
          "first_seen": integer,
          "host_name": string,
          "id": string,
          "ip_addr": string,
          "last_seen": integer,
          "port": integer
        }
      ],
      <prop>: any
    }
    Property Name Type Description Notes
    recent_certs <object> This resource deals with unrecognized recent certificates
    recent_certs.items <array of <object>> Optional;
    recent_certs.items[items] <object> An unrecognized recent certificate
    recent_certs.items[items].
    appearance_count
    <integer> Number of time this certificate appeared on the wire Optional;
    recent_certs.items[items].details <string> Details about this certificate Optional;
    recent_certs.items[items].first_seen <integer> Time (seconds from epoch) at which this certificate was first seen Optional;
    recent_certs.items[items].host_name <string> The Hostname of the server which sent the certificate Optional;
    recent_certs.items[items].id <string> A unique id for the certificate Optional;
    recent_certs.items[items].ip_addr <string> The IP address of the server which sent the certificate Optional;
    recent_certs.items[items].last_seen <integer> Time (seconds from epoch) at which this certificate was last seen Optional;
    recent_certs.items[items].port <integer> The port of the server which sent the certificate Optional;
    recent_certs.<prop> <any> Optional;

    Type: certs_bulk_deleter

    used for doing bulk deletes

  • JSON
  • {
      "delete_all": boolean,
      "delete_ids": [
        string
      ],
      <prop>: any
    }
    Property Name Type Description Notes
    certs_bulk_deleter <object> used for doing bulk deletes
    certs_bulk_deleter.delete_all <boolean> delete all objects in the given config Optional;
    certs_bulk_deleter.delete_ids <array of <string>> Optional;
    certs_bulk_deleter.delete_ids[items] <string>
    certs_bulk_deleter.<prop> <any> Optional;