Skip to main content

Deploy/Undeploy a scanner

Outcome

Deploy/Undeploy a scanner

Endpoint

Example Endpoint

  • PUT /broker/update_scanner_strategy
    • Parameters:
      • scanner_id: Required. Scanner id of the scanner that you need to deploy/undeploy (Scanner id can be fetched from get user scanners endpoint)
      • user_email: Required. Email address of the registered user (string)
      • should_delete: Required. True if you want to delete the scanner and False if you want to un-delete it (boolean)
    • Response:
      • 200 OK: A JSON object containing success message
      • 500 Internal Server Error: If an error occurs.

Parameters

Additional required parameter(s)

  • Authorization Header: Required for authentication. Should contain a valid JWT token.
  • Content-Type Header: Should be set to application/json for JSON data.

Example

Curl


curl --location --request PUT 'https://hub2.trylevel2.com/broker/update_scanner_strategy?user_email=abc%40gmail.com&scanner_id=46&should_delete=False' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJkb21haW4iOiJhbnRvc3RyYXRlZ3kudHJ5bGV2ZWwyLmNvbSIsInRva2VuX2V4cGlyeSI6MTc0MzE2OTkyMi43MzIzNzR9.LOTUbmvDgGiMqV_hcWM9BJguJkFABRNZu6vlObKmedo'