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
Scenario: List Bits AI investigations returns "OK" response with pagination
50
+
Given operation "ListInvestigations" enabled
51
+
And new "ListInvestigations" request
52
+
When the request with pagination is sent
53
+
Then the response status is 200 OK
54
+
55
+
@generated@skip@team:DataDog/bits-ai
56
+
Scenario: Trigger a Bits AI investigation returns "Bad Request" response
57
+
Given operation "TriggerInvestigation" enabled
58
+
And new "TriggerInvestigation" request
59
+
And body with value {"data": {"attributes": {"trigger": {"monitor_alert_trigger": {"event_id": "1234567890123456789", "event_ts": 1700000000000, "monitor_id": 12345678}, "type": "monitor_alert_trigger"}}, "type": "trigger_investigation_request"}}
60
+
When the request is sent
61
+
Then the response status is 400 Bad Request
62
+
63
+
@generated@skip@team:DataDog/bits-ai
64
+
Scenario: Trigger a Bits AI investigation returns "OK" response
65
+
Given operation "TriggerInvestigation" enabled
66
+
And new "TriggerInvestigation" request
67
+
And body with value {"data": {"attributes": {"trigger": {"monitor_alert_trigger": {"event_id": "1234567890123456789", "event_ts": 1700000000000, "monitor_id": 12345678}, "type": "monitor_alert_trigger"}}, "type": "trigger_investigation_request"}}
0 commit comments