You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While writing tests for the endpoint notificationRules I've tried to filter using the checkID parameter defined in common/paths/notificationRules.yml but it seems to have no affect. Even illegal ID Values (e.g. ?checkID=12345678 should throw an error that ID must have a length of 16 bytes) are passed without issue.
Is this the remains of an idea that was later implemented differently and should be removed, or is this something awaiting implementation?
common/paths/notificationRules.yml
get:
operationId: GetNotificationRulestags:
- NotificationRulessummary: List all notification rulesparameters:
- $ref: "../parameters/TraceSpan.yml"
- $ref: "../parameters/Offset.yml"
- $ref: "../parameters/Limit.yml"
- in: queryname: orgIDrequired: truedescription: Only show notification rules that belong to a specific organization ID.schema:
type: string
- in: queryname: checkIDdescription: Only show notifications that belong to the specific check ID.schema:
type: string
- in: queryname: tagdescription: Only return notification rules that "would match" statuses which contain the tag key value pairs provided.schema:
type: stringpattern: ^[a-zA-Z0-9_]+:[a-zA-Z0-9_]+$example: env:prodresponses:
"200":
description: A list of notification rulescontent:
application/json:
schema:
$ref: "../schemas/NotificationRules.yml"default:
description: Unexpected errorcontent:
application/json:
schema:
$ref: "../schemas/Error.yml"post:
operationId: CreateNotificationRuletags:
- NotificationRules
...
The text was updated successfully, but these errors were encountered:
While writing tests for the endpoint
notificationRules
I've tried to filter using thecheckID
parameter defined incommon/paths/notificationRules.yml
but it seems to have no affect. Even illegal ID Values (e.g.?checkID=12345678
should throw an error that ID must have a length of 16 bytes) are passed without issue.Is this the remains of an idea that was later implemented differently and should be removed, or is this something awaiting implementation?
common/paths/notificationRules.yml
The text was updated successfully, but these errors were encountered: