Management API
Overview
The Management REST API provides endpoints to manage monitored addresses. This API allows users to create, retrieve, update, and delete monitored addresses. It is secured using a Management API key, which can be found under Settings > API keys in Panorama.
Authentication
All endpoints require a valid Management API key in the X-Api-Key header.
Endpoints
1. Create Monitored Address
Creates a new monitored address.
URL: /api/v2/management/monitor
Method: POST
Headers: X-Api-Key: <Management API key (string)>
Request Body:
Supported chains: CUBE3 Detect Products
Response:
• 200 OK: Returns the created monitored address.
Example request:
2. Get All Monitored Addresses
Retrieves a paginated list of all monitored addresses.
URL: /api/v2/management/monitor
Method: GET
Headers: X-Api-Key: <Management API key (string)>
Query Parameters:
• page
(optional): Page number (default is 0)
• size
(optional): Page size (default is 25)
• address
(optional): Filter by address
• name
(optional): Filter by name
Response:
• 200 OK: Returns a paginated list of monitored addresses.
Example Request:
3. Update Monitored Address
Updates an existing monitored address.
URL: /api/v2/management/monitor/{id}
Method: PUT
Path Parameter: id
ID of the monitored address to delete (string)
Headers: X-Api-Key: <Management API key (string)>
Request Body:
Response:
• 200 OK: Returns the updated monitored address.
Example Request:
4. Delete Monitored Address
Deletes an existing monitored address.
URL: /api/v2/management/monitor/{id}
Method: DELETE
Headers: X-Api-Key: <Management API key (string)>
Path Parameter: id
ID of the monitored address to delete (string)
Response:
• 200 OK: Indicates the monitored address was successfully deleted.
Example Request:
Last updated