From d008d321c8a055044dc1bde98cb3a188a088209f Mon Sep 17 00:00:00 2001 From: "ci.datadog-api-spec" Date: Thu, 10 Sep 2026 05:47:16 +0000 Subject: [PATCH] Regenerate client from commit 3b5f1c0 of spec repo --- .generator/schemas/v1/openapi.yaml | 9 +- .generator/schemas/v2/openapi.yaml | 7 +- .../dashboards/GetDashboard_3568243180.java | 27 +++ .../GetDashboardListItems_2618168713.java | 27 +++ .../api/client/v1/model/Dashboard.java | 2 +- .../api/client/v1/model/DatasetListQuery.java | 2 +- .../client/v2/model/DashboardListItem.java | 2 +- .../api/client/v1/api/dashboards.feature | 12 ++ .../com/datadog/api/client/v1/api/given.json | 12 ++ .../api/client/v2/api/dashboard_lists.feature | 15 ++ .../com/datadog/api/client/v2/api/given.json | 16 ++ .../test-runner-data/manifest.json | 14 ++ ...d-with-five-team-tags-and-two-ai-tags.json | 35 ++++ ...s-with-five-team-tags-and-two-ai-tags.json | 35 ++++ .../test-server-data/v1/dashboards.json | 90 ++++++++++ .../test-server-data/v2/dashboard-lists.json | 168 ++++++++++++++++++ 16 files changed, 463 insertions(+), 10 deletions(-) create mode 100644 examples/v1/dashboards/GetDashboard_3568243180.java create mode 100644 examples/v2/dashboard-lists/GetDashboardListItems_2618168713.java create mode 100644 src/test/resources/generated-test/test-runner-data/v1/dashboards/get-a-dashboard-with-five-team-tags-and-two-ai-tags.json create mode 100644 src/test/resources/generated-test/test-runner-data/v2/dashboard-lists/get-dashboard-list-items-with-five-team-tags-and-two-ai-tags.json diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index 8f7dd59808d..f9aec77d192 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -1495,11 +1495,12 @@ components: nullable: true type: array tags: - description: List of team names representing ownership of a dashboard. + description: Tags associated with the dashboard. Supports up to five team tags and two AI tags. items: - description: The name of a Datadog team of the form `team:` + description: A tag of the form `team:` or `ai:`. + pattern: "^(team|ai):.+$" type: string - maxItems: 5 + maxItems: 7 nullable: true type: array template_variable_presets: @@ -1981,7 +1982,7 @@ components: dataset_provider: $ref: '#/components/schemas/PublishedDatasetProvider' filter: - description: Filter applied to the dataset's rows, using events-style search syntax. + description: Filter applied to the rows of the dataset, using events-style search syntax. example: "service:web-store" type: string limit: diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index a903bf6b8f3..0f47d98cb76 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -31334,11 +31334,12 @@ components: readOnly: true type: integer tags: - description: List of team names representing ownership of a dashboard. + description: Tags associated with the dashboard. Supports up to five team tags and two AI tags. items: - description: The name of a Datadog team, formatted as `team:` + description: A tag of the form `team:` or `ai:`. + pattern: "^(team|ai):.+$" type: string - maxItems: 5 + maxItems: 7 nullable: true readOnly: true type: array diff --git a/examples/v1/dashboards/GetDashboard_3568243180.java b/examples/v1/dashboards/GetDashboard_3568243180.java new file mode 100644 index 00000000000..a0acad8c869 --- /dev/null +++ b/examples/v1/dashboards/GetDashboard_3568243180.java @@ -0,0 +1,27 @@ +// Get a dashboard with five team tags and two AI tags + +import com.datadog.api.client.ApiClient; +import com.datadog.api.client.ApiException; +import com.datadog.api.client.v1.api.DashboardsApi; +import com.datadog.api.client.v1.model.Dashboard; + +public class Example { + public static void main(String[] args) { + ApiClient defaultClient = ApiClient.getDefaultApiClient(); + DashboardsApi apiInstance = new DashboardsApi(defaultClient); + + // there is a valid "dashboard_with_team_and_ai_tags" in the system + String DASHBOARD_WITH_TEAM_AND_AI_TAGS_ID = System.getenv("DASHBOARD_WITH_TEAM_AND_AI_TAGS_ID"); + + try { + Dashboard result = apiInstance.getDashboard(DASHBOARD_WITH_TEAM_AND_AI_TAGS_ID); + System.out.println(result); + } catch (ApiException e) { + System.err.println("Exception when calling DashboardsApi#getDashboard"); + System.err.println("Status code: " + e.getCode()); + System.err.println("Reason: " + e.getResponseBody()); + System.err.println("Response headers: " + e.getResponseHeaders()); + e.printStackTrace(); + } + } +} diff --git a/examples/v2/dashboard-lists/GetDashboardListItems_2618168713.java b/examples/v2/dashboard-lists/GetDashboardListItems_2618168713.java new file mode 100644 index 00000000000..7342a8ca55d --- /dev/null +++ b/examples/v2/dashboard-lists/GetDashboardListItems_2618168713.java @@ -0,0 +1,27 @@ +// Get dashboard list items with five team tags and two AI tags + +import com.datadog.api.client.ApiClient; +import com.datadog.api.client.ApiException; +import com.datadog.api.client.v2.api.DashboardListsApi; +import com.datadog.api.client.v2.model.DashboardListItems; + +public class Example { + public static void main(String[] args) { + ApiClient defaultClient = ApiClient.getDefaultApiClient(); + DashboardListsApi apiInstance = new DashboardListsApi(defaultClient); + + // there is a valid "dashboard_list" in the system + Long DASHBOARD_LIST_ID = Long.parseLong(System.getenv("DASHBOARD_LIST_ID")); + + try { + DashboardListItems result = apiInstance.getDashboardListItems(DASHBOARD_LIST_ID); + System.out.println(result); + } catch (ApiException e) { + System.err.println("Exception when calling DashboardListsApi#getDashboardListItems"); + System.err.println("Status code: " + e.getCode()); + System.err.println("Reason: " + e.getResponseBody()); + System.err.println("Response headers: " + e.getResponseHeaders()); + e.printStackTrace(); + } + } +} diff --git a/src/main/java/com/datadog/api/client/v1/model/Dashboard.java b/src/main/java/com/datadog/api/client/v1/model/Dashboard.java index 0e830d7eb2b..acf78bd21dd 100644 --- a/src/main/java/com/datadog/api/client/v1/model/Dashboard.java +++ b/src/main/java/com/datadog/api/client/v1/model/Dashboard.java @@ -471,7 +471,7 @@ public Dashboard addTagsItem(String tagsItem) { } /** - * List of team names representing ownership of a dashboard. + * Tags associated with the dashboard. Supports up to five team tags and two AI tags. * * @return tags */ diff --git a/src/main/java/com/datadog/api/client/v1/model/DatasetListQuery.java b/src/main/java/com/datadog/api/client/v1/model/DatasetListQuery.java index c3acd8531ec..89ea3a44ed2 100644 --- a/src/main/java/com/datadog/api/client/v1/model/DatasetListQuery.java +++ b/src/main/java/com/datadog/api/client/v1/model/DatasetListQuery.java @@ -139,7 +139,7 @@ public DatasetListQuery filter(String filter) { } /** - * Filter applied to the dataset's rows, using events-style search syntax. + * Filter applied to the rows of the dataset, using events-style search syntax. * * @return filter */ diff --git a/src/main/java/com/datadog/api/client/v2/model/DashboardListItem.java b/src/main/java/com/datadog/api/client/v2/model/DashboardListItem.java index b1734ec1553..6a1642cda0b 100644 --- a/src/main/java/com/datadog/api/client/v2/model/DashboardListItem.java +++ b/src/main/java/com/datadog/api/client/v2/model/DashboardListItem.java @@ -264,7 +264,7 @@ public Integer getPopularity() { } /** - * List of team names representing ownership of a dashboard. + * Tags associated with the dashboard. Supports up to five team tags and two AI tags. * * @return tags */ diff --git a/src/test/resources/com/datadog/api/client/v1/api/dashboards.feature b/src/test/resources/com/datadog/api/client/v1/api/dashboards.feature index afe8356d4cd..aa4cacac024 100644 --- a/src/test/resources/com/datadog/api/client/v1/api/dashboards.feature +++ b/src/test/resources/com/datadog/api/client/v1/api/dashboards.feature @@ -1347,6 +1347,18 @@ Feature: Dashboards Then the response status is 200 OK And the response "author_name" is equal to "Frog Account" + @team:DataDog/dashboards-backend + Scenario: Get a dashboard with five team tags and two AI tags + Given there is a valid "dashboard_with_team_and_ai_tags" in the system + And new "GetDashboard" request + And request contains "dashboard_id" parameter from "dashboard_with_team_and_ai_tags.id" + When the request is sent + Then the response status is 200 OK + And the response "tags" has length 7 + And the response "tags" array contains value "team:epsilon" + And the response "tags" array contains value "ai:generated" + And the response "tags" array contains value "ai:edited" + @team:DataDog/reporting-and-sharing Scenario: Get a shared dashboard returns "OK" response Given there is a valid "dashboard" in the system diff --git a/src/test/resources/com/datadog/api/client/v1/api/given.json b/src/test/resources/com/datadog/api/client/v1/api/given.json index 3c1540f6faa..f54c9c5b57d 100644 --- a/src/test/resources/com/datadog/api/client/v1/api/given.json +++ b/src/test/resources/com/datadog/api/client/v1/api/given.json @@ -11,6 +11,18 @@ "tag": "Dashboards", "operationId": "CreateDashboard" }, + { + "parameters": [ + { + "name": "body", + "value": "{\"title\": \"{{ unique }}\", \"layout_type\": \"ordered\", \"widgets\": [], \"tags\": [\"team:alpha\", \"team:beta\", \"team:gamma\", \"team:delta\", \"team:epsilon\", \"ai:generated\", \"ai:edited\"]}" + } + ], + "step": "there is a valid \"dashboard_with_team_and_ai_tags\" in the system", + "key": "dashboard_with_team_and_ai_tags", + "tag": "Dashboards", + "operationId": "CreateDashboard" + }, { "parameters": [ { diff --git a/src/test/resources/com/datadog/api/client/v2/api/dashboard_lists.feature b/src/test/resources/com/datadog/api/client/v2/api/dashboard_lists.feature index 1d36afaadd5..165ff0d9a24 100644 --- a/src/test/resources/com/datadog/api/client/v2/api/dashboard_lists.feature +++ b/src/test/resources/com/datadog/api/client/v2/api/dashboard_lists.feature @@ -110,6 +110,21 @@ Feature: Dashboard Lists When the request is sent Then the response status is 200 OK + @team:DataDog/dashboards-backend + Scenario: Get dashboard list items with five team tags and two AI tags + Given there is a valid "dashboard_list" in the system + And there is a valid "dashboard_with_team_and_ai_tags" in the system + And the "dashboard_list" has the "dashboard_with_team_and_ai_tags" + And new "GetDashboardListItems" request + And request contains "dashboard_list_id" parameter from "dashboard_list.id" + When the request is sent + Then the response status is 200 OK + And the response "dashboards" has length 1 + And the response "dashboards[0].tags" has length 7 + And the response "dashboards[0].tags" array contains value "team:epsilon" + And the response "dashboards[0].tags" array contains value "ai:generated" + And the response "dashboards[0].tags" array contains value "ai:edited" + @generated @skip @team:DataDog/dashboards-backend Scenario: Get items of a Dashboard List returns "Not Found" response Given new "GetDashboardListItems" request diff --git a/src/test/resources/com/datadog/api/client/v2/api/given.json b/src/test/resources/com/datadog/api/client/v2/api/given.json index 89abdd8c369..735bb4ef4ba 100644 --- a/src/test/resources/com/datadog/api/client/v2/api/given.json +++ b/src/test/resources/com/datadog/api/client/v2/api/given.json @@ -329,6 +329,22 @@ "tag": "Dashboard Lists", "operationId": "CreateDashboardListItems" }, + { + "parameters": [ + { + "name": "dashboard_list_id", + "source": "dashboard_list.id" + }, + { + "name": "body", + "value": "{\"dashboards\": [{\"id\": \"{{ dashboard_with_team_and_ai_tags.id }}\", \"type\": \"custom_timeboard\"}]}" + } + ], + "step": "the \"dashboard_list\" has the \"dashboard_with_team_and_ai_tags\"", + "key": "dashboard_list_dashboard_with_team_and_ai_tags", + "tag": "Dashboard Lists", + "operationId": "CreateDashboardListItems" + }, { "parameters": [ { diff --git a/src/test/resources/generated-test/test-runner-data/manifest.json b/src/test/resources/generated-test/test-runner-data/manifest.json index 3baf593f3b5..f492000ce30 100644 --- a/src/test/resources/generated-test/test-runner-data/manifest.json +++ b/src/test/resources/generated-test/test-runner-data/manifest.json @@ -931,6 +931,13 @@ "scenario": "Get a dashboard returns 'author_name'", "version": "v1" }, + { + "feature": "Dashboards", + "feature_file": "../../com/datadog/api/client/v1/api/dashboards.feature", + "file": "v1/dashboards/get-a-dashboard-with-five-team-tags-and-two-ai-tags.json", + "scenario": "Get a dashboard with five team tags and two AI tags", + "version": "v1" + }, { "feature": "Dashboards", "feature_file": "../../com/datadog/api/client/v1/api/dashboards.feature", @@ -4676,6 +4683,13 @@ "scenario": "Delete custom timeboard dashboard from an existing dashboard list returns \"OK\" response", "version": "v2" }, + { + "feature": "Dashboard Lists", + "feature_file": "../../com/datadog/api/client/v2/api/dashboard_lists.feature", + "file": "v2/dashboard-lists/get-dashboard-list-items-with-five-team-tags-and-two-ai-tags.json", + "scenario": "Get dashboard list items with five team tags and two AI tags", + "version": "v2" + }, { "feature": "Dashboard Lists", "feature_file": "../../com/datadog/api/client/v2/api/dashboard_lists.feature", diff --git a/src/test/resources/generated-test/test-runner-data/v1/dashboards/get-a-dashboard-with-five-team-tags-and-two-ai-tags.json b/src/test/resources/generated-test/test-runner-data/v1/dashboards/get-a-dashboard-with-five-team-tags-and-two-ai-tags.json new file mode 100644 index 00000000000..ee94945f827 --- /dev/null +++ b/src/test/resources/generated-test/test-runner-data/v1/dashboards/get-a-dashboard-with-five-team-tags-and-two-ai-tags.json @@ -0,0 +1,35 @@ +{ + "api": "Dashboards", + "expected_status": 200, + "feature": "Dashboards", + "id": "v1/Dashboards/Get a dashboard with five team tags and two AI tags", + "operation_id": "GetDashboard", + "request": { + "body": null, + "content_type": null, + "method": "GET", + "pagination": false, + "parameters": [ + { + "explode": null, + "in": "path", + "name": "dashboard_id", + "required": true, + "schema": { + "format": null, + "ref": null, + "type": "string" + }, + "source": { + "path": "dashboard_with_team_and_ai_tags.id", + "type": "fixture" + }, + "style": null + } + ], + "path": "/api/v1/dashboard/{dashboard_id}" + }, + "scenario": "Get a dashboard with five team tags and two AI tags", + "schema_version": 1, + "version": "v1" +} diff --git a/src/test/resources/generated-test/test-runner-data/v2/dashboard-lists/get-dashboard-list-items-with-five-team-tags-and-two-ai-tags.json b/src/test/resources/generated-test/test-runner-data/v2/dashboard-lists/get-dashboard-list-items-with-five-team-tags-and-two-ai-tags.json new file mode 100644 index 00000000000..8d3ac8ea991 --- /dev/null +++ b/src/test/resources/generated-test/test-runner-data/v2/dashboard-lists/get-dashboard-list-items-with-five-team-tags-and-two-ai-tags.json @@ -0,0 +1,35 @@ +{ + "api": "DashboardLists", + "expected_status": 200, + "feature": "Dashboard Lists", + "id": "v2/Dashboard Lists/Get dashboard list items with five team tags and two AI tags", + "operation_id": "GetDashboardListItems", + "request": { + "body": null, + "content_type": null, + "method": "GET", + "pagination": false, + "parameters": [ + { + "explode": null, + "in": "path", + "name": "dashboard_list_id", + "required": true, + "schema": { + "format": "int64", + "ref": null, + "type": "integer" + }, + "source": { + "path": "dashboard_list.id", + "type": "fixture" + }, + "style": null + } + ], + "path": "/api/v2/dashboard/lists/manual/{dashboard_list_id}/dashboards" + }, + "scenario": "Get dashboard list items with five team tags and two AI tags", + "schema_version": 1, + "version": "v2" +} diff --git a/src/test/resources/generated-test/test-server-data/v1/dashboards.json b/src/test/resources/generated-test/test-server-data/v1/dashboards.json index db1ac171665..b977f3401e9 100644 --- a/src/test/resources/generated-test/test-server-data/v1/dashboards.json +++ b/src/test/resources/generated-test/test-server-data/v1/dashboards.json @@ -11756,6 +11756,96 @@ "scenario": "Get a dashboard returns 'author_name'", "version": "v1" }, + { + "feature": "Dashboards", + "frozen_at": "2026-08-31T02:38:16.989Z", + "interactions": [ + { + "request": { + "body": { + "type": "json", + "value": { + "layout_type": "ordered", + "tags": [ + "team:alpha", + "team:beta", + "team:gamma", + "team:delta", + "team:epsilon", + "ai:generated", + "ai:edited" + ], + "title": "Test-Get_a_dashboard_with_five_team_tags_and_two_AI_tags-1788143896", + "widgets": [] + } + }, + "content_type": "application/json", + "method": "POST", + "path": "/api/v1/dashboard", + "query": [] + }, + "response": { + "body": { + "encoding": "text", + "value": "{\"id\":\"7j6-m9w-ts2\",\"title\":\"Test-Get_a_dashboard_with_five_team_tags_and_two_AI_tags-1788143896\",\"description\":null,\"author_handle\":\"9919ec9b-ebc7-49ee-8dc8-03626e717cca\",\"author_name\":\"CI Account\",\"layout_type\":\"ordered\",\"url\":\"/dashboard/7j6-m9w-ts2/test-getadashboardwithfiveteamtagsandtwoaitags-1788143896\",\"template_variables\":null,\"widgets\":[],\"notify_list\":null,\"created_at\":\"2026-08-31T02:38:17.100817+00:00\",\"modified_at\":\"2026-08-31T02:38:17.100817+00:00\",\"tags\":[\"team:alpha\",\"team:beta\",\"team:gamma\",\"team:delta\",\"team:epsilon\",\"ai:generated\",\"ai:edited\"],\"restricted_roles\":[]}" + }, + "headers": { + "content-type": "application/json" + }, + "reason": "OK", + "status": 200 + } + }, + { + "request": { + "body": { + "type": "empty", + "value": null + }, + "content_type": "", + "method": "GET", + "path": "/api/v1/dashboard/7j6-m9w-ts2", + "query": [] + }, + "response": { + "body": { + "encoding": "text", + "value": "{\"id\":\"7j6-m9w-ts2\",\"title\":\"Test-Get_a_dashboard_with_five_team_tags_and_two_AI_tags-1788143896\",\"description\":null,\"author_handle\":\"9919ec9b-ebc7-49ee-8dc8-03626e717cca\",\"author_name\":\"CI Account\",\"layout_type\":\"ordered\",\"url\":\"/dashboard/7j6-m9w-ts2/test-getadashboardwithfiveteamtagsandtwoaitags-1788143896\",\"template_variables\":null,\"widgets\":[],\"notify_list\":null,\"created_at\":\"2026-08-31T02:38:17.100817+00:00\",\"modified_at\":\"2026-08-31T02:38:17.100817+00:00\",\"tags\":[\"team:alpha\",\"team:beta\",\"team:gamma\",\"team:delta\",\"team:epsilon\",\"ai:generated\",\"ai:edited\"],\"restricted_roles\":[]}" + }, + "headers": { + "content-type": "application/json" + }, + "reason": "OK", + "status": 200 + } + }, + { + "request": { + "body": { + "type": "empty", + "value": null + }, + "content_type": "", + "method": "DELETE", + "path": "/api/v1/dashboard/7j6-m9w-ts2", + "query": [] + }, + "response": { + "body": { + "encoding": "text", + "value": "{\"deleted_dashboard_id\":\"7j6-m9w-ts2\"}" + }, + "headers": { + "content-type": "application/json" + }, + "reason": "OK", + "status": 200 + } + } + ], + "scenario": "Get a dashboard with five team tags and two AI tags", + "version": "v1" + }, { "feature": "Dashboards", "frozen_at": "2024-11-15T19:33:06.595Z", diff --git a/src/test/resources/generated-test/test-server-data/v2/dashboard-lists.json b/src/test/resources/generated-test/test-server-data/v2/dashboard-lists.json index 440088fbfba..fc81b8aa7aa 100644 --- a/src/test/resources/generated-test/test-server-data/v2/dashboard-lists.json +++ b/src/test/resources/generated-test/test-server-data/v2/dashboard-lists.json @@ -737,6 +737,174 @@ "scenario": "Delete custom timeboard dashboard from an existing dashboard list returns \"OK\" response", "version": "v2" }, + { + "feature": "Dashboard Lists", + "frozen_at": "2026-08-31T02:38:18.801Z", + "interactions": [ + { + "request": { + "body": { + "type": "json", + "value": { + "name": "Test-Get_dashboard_list_items_with_five_team_tags_and_two_AI_tags-1788143898" + } + }, + "content_type": "application/json", + "method": "POST", + "path": "/api/v1/dashboard/lists/manual", + "query": [] + }, + "response": { + "body": { + "encoding": "text", + "value": "{\"author\":{\"name\":\"CI Account\",\"handle\":\"9919ec9b-ebc7-49ee-8dc8-03626e717cca\"},\"created\":\"2026-08-31T02:38:19.366670+00:00\",\"dashboards\":null,\"dashboard_count\":0,\"id\":673085,\"is_favorite\":false,\"modified\":\"2026-08-31T02:38:19.366675+00:00\",\"name\":\"Test-Get_dashboard_list_items_with_five_team_tags_and_two_AI_tags-1788143898\",\"type\":\"manual_dashboard_list\"}\n" + }, + "headers": { + "content-type": "application/json" + }, + "reason": "OK", + "status": 200 + } + }, + { + "request": { + "body": { + "type": "json", + "value": { + "layout_type": "ordered", + "tags": [ + "team:alpha", + "team:beta", + "team:gamma", + "team:delta", + "team:epsilon", + "ai:generated", + "ai:edited" + ], + "title": "Test-Get_dashboard_list_items_with_five_team_tags_and_two_AI_tags-1788143898", + "widgets": [] + } + }, + "content_type": "application/json", + "method": "POST", + "path": "/api/v1/dashboard", + "query": [] + }, + "response": { + "body": { + "encoding": "text", + "value": "{\"id\":\"fn2-4ry-3vu\",\"title\":\"Test-Get_dashboard_list_items_with_five_team_tags_and_two_AI_tags-1788143898\",\"description\":null,\"author_handle\":\"9919ec9b-ebc7-49ee-8dc8-03626e717cca\",\"author_name\":\"CI Account\",\"layout_type\":\"ordered\",\"url\":\"/dashboard/fn2-4ry-3vu/test-getdashboardlistitemswithfiveteamtagsandtwoaitags-1788143898\",\"template_variables\":null,\"widgets\":[],\"notify_list\":null,\"created_at\":\"2026-08-31T02:38:19.484838+00:00\",\"modified_at\":\"2026-08-31T02:38:19.484838+00:00\",\"tags\":[\"team:alpha\",\"team:beta\",\"team:gamma\",\"team:delta\",\"team:epsilon\",\"ai:generated\",\"ai:edited\"],\"restricted_roles\":[]}" + }, + "headers": { + "content-type": "application/json" + }, + "reason": "OK", + "status": 200 + } + }, + { + "request": { + "body": { + "type": "json", + "value": { + "dashboards": [ + { + "id": "fn2-4ry-3vu", + "type": "custom_timeboard" + } + ] + } + }, + "content_type": "application/json", + "method": "POST", + "path": "/api/v2/dashboard/lists/manual/673085/dashboards", + "query": [] + }, + "response": { + "body": { + "encoding": "text", + "value": "{\"added_dashboards_to_list\":[{\"type\":\"custom_timeboard\",\"id\":\"fn2-4ry-3vu\"}]}\n" + }, + "headers": { + "content-type": "application/json" + }, + "reason": "OK", + "status": 200 + } + }, + { + "request": { + "body": { + "type": "empty", + "value": null + }, + "content_type": "", + "method": "GET", + "path": "/api/v2/dashboard/lists/manual/673085/dashboards", + "query": [] + }, + "response": { + "body": { + "encoding": "text", + "value": "{\"dashboards\":[{\"author\":{\"name\":\"CI Account\",\"handle\":\"9919ec9b-ebc7-49ee-8dc8-03626e717cca\"},\"created\":\"2026-08-31T02:38:19.484838+00:00\",\"is_favorite\":false,\"is_shared\":false,\"modified\":\"2026-08-31T02:38:19.484838+00:00\",\"title\":\"Test-Get_dashboard_list_items_with_five_team_tags_and_two_AI_tags-1788143898\",\"type\":\"custom_timeboard\",\"id\":\"fn2-4ry-3vu\",\"url\":\"/dashboard/fn2-4ry-3vu/test-getdashboardlistitemswithfiveteamtagsandtwoaitags-1788143898\",\"is_read_only\":false,\"tags\":[\"team:alpha\",\"team:beta\",\"team:gamma\",\"team:delta\",\"team:epsilon\",\"ai:generated\",\"ai:edited\"],\"icon\":null,\"integration_id\":null,\"popularity\":0}],\"total\":1}\n" + }, + "headers": { + "content-type": "application/json" + }, + "reason": "OK", + "status": 200 + } + }, + { + "request": { + "body": { + "type": "empty", + "value": null + }, + "content_type": "", + "method": "DELETE", + "path": "/api/v1/dashboard/fn2-4ry-3vu", + "query": [] + }, + "response": { + "body": { + "encoding": "text", + "value": "{\"deleted_dashboard_id\":\"fn2-4ry-3vu\"}" + }, + "headers": { + "content-type": "application/json" + }, + "reason": "OK", + "status": 200 + } + }, + { + "request": { + "body": { + "type": "empty", + "value": null + }, + "content_type": "", + "method": "DELETE", + "path": "/api/v1/dashboard/lists/manual/673085", + "query": [] + }, + "response": { + "body": { + "encoding": "text", + "value": "{\"deleted_dashboard_list_id\":673085}\n" + }, + "headers": { + "content-type": "application/json" + }, + "reason": "OK", + "status": 200 + } + } + ], + "scenario": "Get dashboard list items with five team tags and two AI tags", + "version": "v2" + }, { "feature": "Dashboard Lists", "frozen_at": "2022-03-21T19:16:49.586Z",