From 29135d7fc83668ddb7fd4b8acb7d1144c1b762e5 Mon Sep 17 00:00:00 2001 From: Narendranath Gogineni Date: Thu, 5 Mar 2026 18:52:44 +0530 Subject: [PATCH] feat: add status query parameter to filter workspaces by active or archived status --- openapi.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/openapi.yaml b/openapi.yaml index 03f395c6..32d02ddc 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -14782,6 +14782,15 @@ paths: schema: type: string description: "Workspace name filter with strict check" + - name: status + in: query + schema: + type: string + enum: + - active + - archived + example: "active,archived" + description: "Workspace status to filter results, comma separated" responses: "200": description: OK