Skip to main content
GET
/
waap
/
v1
/
advanced-rules
/
descriptor
Retrieve an advanced rules descriptor
curl --request GET \
  --url https://api.gcore.com/waap/v1/advanced-rules/descriptor \
  --header 'Authorization: <api-key>'
{
  "version": "<string>",
  "objects": [
    {
      "name": "<string>",
      "type": "<string>",
      "description": "<string>",
      "attrs": [
        {
          "name": "<string>",
          "type": "<string>",
          "hint": "<string>",
          "description": "<string>",
          "args": [
            {
              "name": "<string>",
              "type": "<string>",
              "description": "<string>"
            }
          ]
        }
      ]
    }
  ]
}

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

Response

Successful Response

A response from a request to retrieve an advanced rules descriptor

version
string
required

The descriptor's version

objects
AdvancedRuleDescriptor · object[] | null