Skip to main content

Netskope Help

Get a Steering Configuration List

This endpoint returns all the Steering Configuration names and the Steering Config IDs associated to them. Use this API to get the Steering Config name or Steering Config ID so you can get values about your steering configuration(s) to use in the Get Steering Configuration Information endpoint.

Request Endpoint
https://<tenant-name>.goskope.com/api/v1/steeringconfiglist
Example Request with Response
curl -X GET https://<tenant-name>.goskope.com/api/v1/steeringconfiglist?token=<token>

{
  status: "success",
  msg: "",
  data: [
    {
      config_id: 0,
      config_name: "Default tenant config"
    },
    {
      config_id: 2,
      config_name: "cloud based"
    },
    {
      config_id: 3,
      config_name: "web based"
    },
    {
      config_id: 4,
      config_name: "location based steering"
    }
  ]
}