WAF Insights does not support automation via our REST API web service. If you are currently using WAF Insights, upgrade your WAF solution to take advantage of our REST API.
Retrieves a list of managed rules. A managed rule identifies a rule set configuration and describes a valid request.
A request to retrieve all managed rules is described below.
HTTP Method | Request URI |
---|---|
GET |
https://api.transactcdn.com/v2/mcc/customers/AccountNumber/waf/v1.0/profile |
Define the following variable when submitting the above request:
VariableA variable represents a value that must be replaced. A variable consists of either a URL segment (e.g., "0001" in /0001/) or a query string value (e.g., "3" in mediaTypes=3). | Description |
---|---|
Required |
|
This endpointIdentifies a request's connection point to our REST API service. only takes advantage of common request headers.
Request body parameters are not required by this endpoint.
The response to the above request includes an HTTP status code, response headers, and a response body.
A status code indicates whether the request was successfully performed.
The response for this endpoint only includes standard HTTP response headers.
The response body for a successful request contains the following response elements for each managed rule:
Name | Data Type | Description |
---|---|---|
created_date |
String |
Indicates the date and time at which the managed rule was created. Syntax: MM/DD/YYYY hh:mm:ss [AM|PM]
|
id |
String |
Indicates the system-defined ID for the managed rule. Pass this ID to the Get Managed Rule (Profile) endpoint to retrieve the properties for this managed rule. |
last_modified_date |
String |
Indicates the date and time at which the managed rule was last modified. Syntax: MM/DD/YYYYhh:mm:ss [AM|PM]
|
name |
String |
Indicates the name of the managed rule. |
ruleset_id |
String |
Indicates the ID for the rule set associated with this managed rule. |
ruleset_version |
String |
Indicates the version of the rule set associated with this managed rule. |
The response body for an unsuccessful request may contain an error element that provides additional information.
A sample JSON request is shown below.
GET https://api.transactcdn.com/v2/mcc/customers/0001/waf/v1.0/profile HTTP/1.1
Authorization: TOK:12345678-1234-1234-1234-1234567890ab
Accept: application/json
Content-Type: application/json
Host: api.transactcdn.com
A sample JSON response is shown below.
HTTP/1.1 200 OK
Cache-Control: private
Content-Type: application/json; charset=utf-8
Date: Thu, 15 Apr 2021 12:00:00 GMT
Content-Length: 221
[{ "ruleset_id": "ECRS", "name": "My Managed Rule", "last_modified_date": "2020-12-17T19:30:17.029762Z", "created_date": "12/17/2020 07:20:42 PM", "ruleset_version": "2020-05-01", "id": "8R3VoYmr" } ]