Download OpenAPI specification:Download
This is the spec that defines the API provided by the SNMP Service.
[- {- "id": 0,
- "type": "string",
- "host": "string",
- "v2community": "string",
- "v3user": "string",
- "v3authprotocol": "string",
- "v3authpassword": "string",
- "v3privprotocol": "string",
- "v3privpassword": "string"
 }
]Delete the specified trap subscriber from the snmp service.
| host  required  | string Host (IP or Hostname) of the trapsubscriber entry to be deleted. | 
{- "message": "Subscriber is not found.",
- "code": 101
}Register trap subscriber with the snmp service.
Register a new trap subscriber for snmp messages.
| id  required  | integer | 
| type  required  | string | 
| host  required  | string | 
| v2community | string | 
| v3user | string | 
| v3authprotocol | string | 
| v3authpassword | string | 
| v3privprotocol | string | 
| v3privpassword | string | 
{- "id": 0,
- "type": "string",
- "host": "string",
- "v2community": "string",
- "v3user": "string",
- "v3authprotocol": "string",
- "v3authpassword": "string",
- "v3privprotocol": "string",
- "v3privpassword": "string"
}{- "id": 0,
- "type": "string",
- "host": "string",
- "v2community": "string",
- "v3user": "string",
- "v3authprotocol": "string",
- "v3authpassword": "string",
- "v3privprotocol": "string",
- "v3privpassword": "string"
}Get the detailed output of the given execution ID
| id  required  | string Detailed output of the given execution ID | 
{- "start_time": "2000-01-23T04:56:07.000Z",
- "end_time": "2000-01-23T04:56:07.000Z",
- "id": "id",
- "parameters": "host=10.0.0.2",
- "logs": "logs",
- "command": "subscriber add",
- "status": "Failed, Succeeded"
}Get the list of all the previous executions
| limit  required  | integer  Default:  10 Limit the number of executions that will be sent in the response. Default is 10 | 
| status | string  Default:  "all" Filter the executions based on the status(failed/succeeded/all) | 
{- "items": [- {- "start_time": "2000-01-23T04:56:07.000Z",
- "end_time": "2000-01-23T04:56:07.000Z",
- "id": "id",
- "command": "subscriber add",
- "status": "Successful"
 },
- {- "start_time": "2000-01-23T04:56:07.000Z",
- "end_time": "2000-01-23T04:56:07.000Z",
- "id": "id",
- "command": "subscriber add",
- "status": "Successful"
 }
 ]
}