GET
/
waap
/
v1
/
security-insights
/
types
Retrieve a list of insight types
curl --request GET \
  --url https://api.gcore.com/waap/v1/security-insights/types \
  --header 'Authorization: <api-key>'
{
  "limit": 123,
  "offset": 123,
  "count": 123,
  "results": [
    {
      "name": "<string>",
      "description": "<string>",
      "slug": "<string>",
      "labels": [
        "<string>"
      ],
      "insight_template": "<string>",
      "recommendation_template": "<string>",
      "insight_grouping_dimensions": [
        "<string>"
      ],
      "insight_frequency": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

API key for authentication. Make sure to include the word apikey, followed by a single space and then your token. Example: apikey 1234$abcdef

Query Parameters

ordering
enum<string>
default:name

Sort the response by given field.

Available options:
name,
-name,
slug,
-slug,
insight_frequency,
-insight_frequency
limit
integer
default:100

Number of items to return

Required range: 0 <= x <= 100
offset
integer
default:0

Number of items to skip

Required range: 0 <= x <= 100000
name
string | null

Filter by the name of the insight type

slug
string | null

Filter by the slug of the insight type

insight_frequency
integer | null

Filter by the frequency of the insight type

Required range: x > 0

Response

Successful Response

limit
integer
required

Number of items requested in the response

offset
integer
required

Items response offset used

count
integer
required

Number of items contain in the response

results
InsightType · object[]
required

List of items returned in the response following given criteria