Get a single exclusion
Relative path: /api/v3/exclusions/rule/{rule}
Query parameters
Name |
Type |
Description |
|---|---|---|
$idType |
string |
If $idType=uuid {id} in URL is interpreted as UUID |
Parameters in path
Name |
Type |
Required |
Description |
|---|---|---|---|
exclusion |
string |
Yes |
Exclusion ID or UUID |
Responses
Display Schema+Headers instead of an Example or vice-versa
Code |
Description and Example |
Description, Schema and Headers |
|---|---|---|
200 |
OK
{
"EXCLUSION": {
"body": "string",
"enabled": true,
"id": 0,
"name": "string",
"note": "string",
"ruleIds": [
0
],
"ruleUuids": [
"string"
],
"uuid": "string"
}
}
|
OK
{
"$ref": "ExclusionDetailsResponseSchema",
"EXCLUSION": {
"body": {
"type": "string",
"format": "xml"
},
"enabled": {
"type": "boolean"
},
"id": {
"type": "integer"
},
"name": {
"type": "string"
},
"note": {
"type": "string"
},
"ruleIds": [
{
"type": "integer"
}
],
"ruleUuids": [
{
"type": "string",
"format": "uuid"
}
],
"uuid": {
"type": "string",
"format": "uuid"
}
}
}
{
"X-Security-Token": {
"$ref": "X-Security-Token",
"description": "Authentication token",
"schema": {
"$ref": "AuthenticateTokenResponse",
"type": "string",
"example": "eyJhbGciOi[..]ziJSUGusY5kAI"
}
}
}
|
401 |
Credentials or access token missing or invalid
{
"error": "string"
}
|
Credentials or access token missing or invalid
{
"$ref": "UnauthorizedError",
"error": {
"type": "string"
}
}
|