Create a Discovery Job

post

/discovery/request/create

Creates a new job to discover devices.

Request

There are no request parameters for this operation.

Supported Media Types
Request Body - application/json ()
Root Schema : schema
Type: object
The payload for a discovery request.
Show Source
Nested Schema : Data
Type: object
The discovery request data.
Show Source
Nested Schema : Configuration
Type: object
The ICMP, SNMP and REST Configuration for discovery.
Show Source
Nested Schema : IPList
Type: array
List of IP Addresses.
Show Source
Example:
[
    "203.0.113.0",
    "203.0.113.1"
]
Nested Schema : IPranges
Type: array
List of IP Ranges. Supports CIDR ranges.
Show Source
Example:
[
    "192.0.2.0/24",
    "198.51.100.0-198.51.100.5"
]
Nested Schema : Level
Type: array
Type of polling enabled for discovery. Possible values are 1 for ping, 2 for SNMP, and 3 for REST.
Show Source
Example:
[
    1,
    2,
    3
]
Nested Schema : ICMPConfiguration
Type: array
The list of ICMP configurations.
Show Source
Nested Schema : RESTConfiguration
Type: array
The list of REST configurations.
Show Source
Nested Schema : SNMPConfiguration
Type: array
The list of SNMP configurations.
Show Source
Nested Schema : ICMPConfiguration
Type: object
The ICMP payload configuration.
Show Source
  • Minimum Value: 0
    Maximum Value: 2147483647
    The number of milliseconds between two successful pings.
    Example: 5
  • Minimum Value: 0
    Maximum Value: 2147483647
    The number of ping requests to send.
    Example: 5
  • Allowed Values: [ 0, 1 ]
    The ICMP mode. Possible values are 0 for synchronous and 1 for asynchronous.
    Example: 1
  • Minimum Value: 0
    Maximum Value: 2147483647
    The number of milliseconds to wait for the ping message corresponding to a given ping message.
    Example: 10
Nested Schema : RESTConfiguration
Type: object
REST configurations for Juniper MIST and VMWare connections.
Show Source
Nested Schema : SNMPConfiguration
Type: object
The SNMP payload configuration.
Show Source
Nested Schema : CustomSNMPAccessProfiles
Type: array
The list of custom SNMP access profiles.
Show Source
Nested Schema : CustomSNMPAccessProfile
Type: object
A custom SNMP access profile.
Show Source
Nested Schema : CustomSNMPAccessProfileAuth
Type: object
Custom SNMP access profile authentication information.
Show Source
Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : DiscoveryCreateResponse
Type: object
Show Source

400 Response

Bad request

401 Response

Unauthorized operation

500 Response

Internal server error
Back to Top