@@ -33427,6 +33427,86 @@ paths:
33427
33427
operator: OR
33428
33428
permissions:
33429
33429
- synthetics_write
33430
+ /api/v1/synthetics/tests/search:
33431
+ get:
33432
+ description: Search for Synthetic tests and Test Suites.
33433
+ operationId: SearchTests
33434
+ parameters:
33435
+ - description: If true, include the full configuration for each test in the
33436
+ response.
33437
+ in: query
33438
+ name: include_full_config
33439
+ required: false
33440
+ schema:
33441
+ type: boolean
33442
+ - description: If true, returns suites instead of tests.
33443
+ in: query
33444
+ name: search_suites
33445
+ required: false
33446
+ schema:
33447
+ type: boolean
33448
+ - description: If true, return only facets instead of full test details.
33449
+ in: query
33450
+ name: facets_only
33451
+ required: false
33452
+ schema:
33453
+ type: boolean
33454
+ - description: The offset from which to start returning results.
33455
+ in: query
33456
+ name: start
33457
+ required: false
33458
+ schema:
33459
+ default: 0
33460
+ format: int64
33461
+ type: integer
33462
+ - description: The maximum number of results to return.
33463
+ in: query
33464
+ name: count
33465
+ required: false
33466
+ schema:
33467
+ default: 50
33468
+ format: int64
33469
+ type: integer
33470
+ - description: The sort order for the results (e.g., 'name,asc' or 'name,desc').
33471
+ in: query
33472
+ name: sort
33473
+ required: false
33474
+ schema:
33475
+ default: name,asc
33476
+ type: string
33477
+ responses:
33478
+ '200':
33479
+ content:
33480
+ application/json:
33481
+ schema:
33482
+ $ref: '#/components/schemas/SyntheticsListTestsResponse'
33483
+ description: OK - Returns the list of Synthetic tests matching the search.
33484
+ '403':
33485
+ content:
33486
+ application/json:
33487
+ schema:
33488
+ $ref: '#/components/schemas/APIErrorResponse'
33489
+ description: Forbidden
33490
+ '404':
33491
+ content:
33492
+ application/json:
33493
+ schema:
33494
+ $ref: '#/components/schemas/APIErrorResponse'
33495
+ description: Not found
33496
+ '429':
33497
+ $ref: '#/components/responses/TooManyRequestsResponse'
33498
+ security:
33499
+ - apiKeyAuth: []
33500
+ appKeyAuth: []
33501
+ - AuthZ:
33502
+ - synthetics_read
33503
+ summary: Search Synthetic tests
33504
+ tags:
33505
+ - Synthetics
33506
+ x-permission:
33507
+ operator: OR
33508
+ permissions:
33509
+ - synthetics_read
33430
33510
/api/v1/synthetics/tests/trigger:
33431
33511
post:
33432
33512
description: Trigger a set of Synthetic tests.
@@ -37222,13 +37302,21 @@ tags:
37222
37302
name: Slack Integration
37223
37303
- description: Take graph snapshots using the API.
37224
37304
name: Snapshots
37225
- - description: "Datadog Synthetic Monitoring uses simulated user requests and browser
37226
- rendering to help you ensure uptime,\nidentify regional issues, and track your
37227
- application performance. Synthetic tests come in\ntwo different flavors, [API
37228
- tests](https://docs.datadoghq.com/synthetics/api_tests/?tab=httptest)\nand [browser
37229
- tests](https://docs.datadoghq.com/synthetics/browser_tests). You can use Datadog\u2019s
37230
- API to\nmanage both test types programmatically.\n\nFor more information, see
37231
- the [Synthetic Monitoring documentation](https://docs.datadoghq.com/synthetics/)."
37305
+ - description: 'Datadog Synthetic Monitoring uses simulated user requests and browser
37306
+ rendering to help you ensure uptime,
37307
+
37308
+ identify regional issues, and track your application performance. Synthetic tests
37309
+ come in
37310
+
37311
+ two different flavors, [API tests](https://docs.datadoghq.com/synthetics/api_tests/?tab=httptest)
37312
+
37313
+ and [browser tests](https://docs.datadoghq.com/synthetics/browser_tests). You
37314
+ can use Datadog''s API to
37315
+
37316
+ manage both test types programmatically.
37317
+
37318
+
37319
+ For more information, see the [Synthetic Monitoring documentation](https://docs.datadoghq.com/synthetics/).'
37232
37320
name: Synthetics
37233
37321
- description: 'The tag endpoint allows you to assign tags to hosts,
37234
37322
0 commit comments