diff --git a/.changes/unreleased/optimization-20260507-101040.yaml b/.changes/unreleased/optimization-20260507-101040.yaml
new file mode 100644
index 000000000..4aceb9b2f
--- /dev/null
+++ b/.changes/unreleased/optimization-20260507-101040.yaml
@@ -0,0 +1,6 @@
+kind: optimization
+body: Shows explicit API error message
+time: 2026-05-07T10:10:40.73557+03:00
+custom:
+ Author: v-alexmoraru
+ AuthorLink: https://github.com/v-alexmoraru
diff --git a/src/fabric_cli/core/fab_exceptions.py b/src/fabric_cli/core/fab_exceptions.py
index b3d6cd5e4..1bd1d3cd0 100644
--- a/src/fabric_cli/core/fab_exceptions.py
+++ b/src/fabric_cli/core/fab_exceptions.py
@@ -8,13 +8,17 @@
# Default error constants - avoids circular imports
DEFAULT_ERROR_MESSAGE = "An error occurred while processing the operation"
DEFAULT_ERROR_CODE = "UnknownError"
+NOT_SET = object()
class FabricCLIError(Exception):
- def __init__(self, message=None, status_code=None):
- # Use default values if not provided
+ def __init__(self, message=None, status_code=NOT_SET):
+ # message: values like (None, "") fall back to the default.
+ # status_code: default is applied only when omitted entirely;
+ # an explicit None is preserved (e.g. fallback paths that have no code).
message = message or DEFAULT_ERROR_MESSAGE
- status_code = status_code or DEFAULT_ERROR_CODE
+ if status_code is NOT_SET:
+ status_code = DEFAULT_ERROR_CODE
super().__init__(message)
self.message = message.rstrip(".")
@@ -78,12 +82,23 @@ def __init__(self, response_text):
related_resource (dict): Details about the main related resource, if available.
request_id (str): The ID of the request associated with the error.
"""
- response = self._parse_json_response(response_text)
-
- message = response.get("message")
- error_code = response.get("errorCode")
- self.more_details: list[dict] = response.get("moreDetails", [])
- self.request_id = response.get("requestId")
+ try:
+ response = json.loads(response_text)
+ if not isinstance(response, dict):
+ raise ValueError("Unexpected JSON shape")
+ message = (
+ response.get("message")
+ if response.get("message") is not None
+ else response_text
+ )
+ error_code = response.get("errorCode")
+ self.more_details: list[dict] = response.get("moreDetails", [])
+ self.request_id = response.get("requestId")
+ except (json.JSONDecodeError, TypeError, ValueError):
+ message = response_text
+ error_code = None
+ self.more_details = []
+ self.request_id = None
super().__init__(message, error_code)
@@ -105,7 +120,10 @@ def formatted_message(self, verbose=False):
else f"{base_message}\n{detailed_message}"
)
- return f"{final_message}\n∟ Request Id: {self.request_id}"
+ if self.request_id:
+ final_message += f"\n∟ Request Id: {self.request_id}"
+
+ return final_message
class OnelakeAPIError(FabricCLIError):
diff --git a/src/fabric_cli/utils/fab_ui.py b/src/fabric_cli/utils/fab_ui.py
index a6fbaba71..f5a89e492 100644
--- a/src/fabric_cli/utils/fab_ui.py
+++ b/src/fabric_cli/utils/fab_ui.py
@@ -204,7 +204,8 @@ def print_output_error(
)
return
case "text":
- _print_error_format_text(error.formatted_message(), command)
+ is_debug = fab_state_config.get_config(fab_constant.FAB_DEBUG_ENABLED) == "true"
+ _print_error_format_text(error.formatted_message(verbose=is_debug), command)
return
case _:
raise FabricCLIError(
diff --git a/tests/test_commands/recordings/test_commands/test_cp/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_cp/class_setup.yaml
index 3851a4ab3..612f20a4c 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/class_setup.yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/class_setup.yaml
@@ -11,7 +11,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli/1.5.0 (None; Linux/6.6.87.2-microsoft-standard-WSL2; Python/3.12.11)
+ - ms-fabric-cli/1.6.1 (None; Linux/6.12.76-linuxkit; Python/3.12.11)
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
@@ -26,15 +26,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2308'
+ - '2588'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:40:16 GMT
+ - Wed, 20 May 2026 08:33:44 GMT
Pragma:
- no-cache
RequestId:
- - 7b546c98-4533-4288-81c6-7ca6074cf2f4
+ - 5c301c19-c565-4b04-97c4-df1fcdc930cb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -60,7 +60,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli/1.5.0 (None; Linux/6.6.87.2-microsoft-standard-WSL2; Python/3.12.11)
+ - ms-fabric-cli/1.6.1 (None; Linux/6.12.76-linuxkit; Python/3.12.11)
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
@@ -75,15 +75,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2308'
+ - '2588'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:40:17 GMT
+ - Wed, 20 May 2026 08:33:45 GMT
Pragma:
- no-cache
RequestId:
- - 7af9bc26-9f8c-44ff-8a34-10f53017f117
+ - 5481d892-0423-47f8-bd7c-ec6baa2e818b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -109,7 +109,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli/1.5.0 (None; Linux/6.6.87.2-microsoft-standard-WSL2; Python/3.12.11)
+ - ms-fabric-cli/1.6.1 (None; Linux/6.12.76-linuxkit; Python/3.12.11)
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -125,15 +125,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '425'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:40:20 GMT
+ - Wed, 20 May 2026 08:33:51 GMT
Pragma:
- no-cache
RequestId:
- - d78e7414-567e-42e1-a1b4-0b245ba43d68
+ - 98a7fd3b-7404-4458-b4f1-6c1db41f4761
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -162,12 +162,12 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli/1.5.0 (None; Linux/6.6.87.2-microsoft-standard-WSL2; Python/3.12.11)
+ - ms-fabric-cli/1.6.1 (None; Linux/6.12.76-linuxkit; Python/3.12.11)
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "ace730cf-7c25-4530-9b0a-403d51a84a39", "displayName": "fabriccli_WorkspacePerTestclass_000001",
+ string: '{"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", "displayName": "fabriccli_WorkspacePerTestclass_000001",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
@@ -177,17 +177,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '176'
+ - '177'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:40:28 GMT
+ - Wed, 20 May 2026 08:33:59 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/ace730cf-7c25-4530-9b0a-403d51a84a39
+ - https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1
Pragma:
- no-cache
RequestId:
- - eb7cbfb1-6149-42ee-be23-1d20410cf305
+ - 04c05eb2-a6e9-4baf-95db-72e615086e80
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -213,13 +213,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli/1.5.0 (cp; Linux/6.6.87.2-microsoft-standard-WSL2; Python/3.12.11)
+ - ms-fabric-cli/1.6.1 (cp; Linux/6.12.76-linuxkit; Python/3.12.11)
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "ace730cf-7c25-4530-9b0a-403d51a84a39",
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
"displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
"type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
@@ -230,15 +230,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2341'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:42:41 GMT
+ - Wed, 20 May 2026 09:36:40 GMT
Pragma:
- no-cache
RequestId:
- - 25e6e08e-5af6-458c-ad9e-53d5a72071c8
+ - 89b0c118-0064-4756-b37a-d3fc5cd41e9b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -264,9 +264,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli/1.5.0 (cp; Linux/6.6.87.2-microsoft-standard-WSL2; Python/3.12.11)
+ - ms-fabric-cli/1.6.1 (cp; Linux/6.12.76-linuxkit; Python/3.12.11)
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ace730cf-7c25-4530-9b0a-403d51a84a39/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
string: '{"value": []}'
@@ -282,11 +282,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:42:42 GMT
+ - Wed, 20 May 2026 09:36:41 GMT
Pragma:
- no-cache
RequestId:
- - cd3961eb-0065-455d-8c5f-9e0cf61c6cec
+ - 212a0afb-a5fc-4264-aa11-5fd48b1bdb13
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -314,9 +314,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli/1.5.0 (cp; Linux/6.6.87.2-microsoft-standard-WSL2; Python/3.12.11)
+ - ms-fabric-cli/1.6.1 (cp; Linux/6.12.76-linuxkit; Python/3.12.11)
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/ace730cf-7c25-4530-9b0a-403d51a84a39
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1
response:
body:
string: ''
@@ -332,11 +332,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 23 Apr 2026 12:42:41 GMT
+ - Wed, 20 May 2026 09:36:41 GMT
Pragma:
- no-cache
RequestId:
- - 727c197e-55e7-46a6-80f1-a427d424afc2
+ - 14de4349-b897-47d6-aaaf-9ed19260fe1e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_existing_folder_success.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_existing_folder_success.yaml
index e1bae10ba..5b460377c 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_existing_folder_success.yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_existing_folder_success.yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:59:17 GMT
+ - Wed, 20 May 2026 09:09:22 GMT
Pragma:
- no-cache
RequestId:
- - 45bc2f31-ca01-405c-9fca-13ea28dc600f
+ - 9e190386-a833-4a22-b9c8-1c247c099fc4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,14 +62,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -77,15 +79,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:59:18 GMT
+ - Wed, 20 May 2026 09:09:22 GMT
Pragma:
- no-cache
RequestId:
- - 7d9e0d50-46d4-4a5d-b021-4a907ea11478
+ - 483851f7-9404-4d63-8d22-26722e81346b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -111,7 +113,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -127,15 +129,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '424'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:59:23 GMT
+ - Wed, 20 May 2026 09:09:26 GMT
Pragma:
- no-cache
RequestId:
- - 5bc64e1a-dc87-49d3-ae15-2770287fff9c
+ - d4c50039-b360-4eee-ae6e-05d1683218a5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -160,16 +162,16 @@ interactions:
- keep-alive
Content-Length:
- '89'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -178,17 +180,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '154'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:59:30 GMT
+ - Wed, 20 May 2026 09:09:32 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31
+ - https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1
Pragma:
- no-cache
RequestId:
- - 6bb45377-38ab-4813-9e0a-da82980e158d
+ - 5f62b5a3-a25d-4205-bc4a-261e860371e3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -214,15 +216,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -231,15 +235,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2843'
+ - '2660'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:59:32 GMT
+ - Wed, 20 May 2026 09:09:34 GMT
Pragma:
- no-cache
RequestId:
- - 9293cea6-fa02-4cef-9e88-10459e2ed68c
+ - 5d60aeec-ddb7-4e72-be51-35634a8351ea
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -265,15 +269,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -282,15 +288,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2843'
+ - '2660'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:59:32 GMT
+ - Wed, 20 May 2026 09:09:34 GMT
Pragma:
- no-cache
RequestId:
- - d54a9e07-f591-499c-8a6c-2fa87e0acf4a
+ - e68f264b-aca4-413d-a7f7-0b28ae77b2c7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -316,7 +322,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -332,15 +338,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '425'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:59:38 GMT
+ - Wed, 20 May 2026 09:09:39 GMT
Pragma:
- no-cache
RequestId:
- - a7f2ea7e-8136-4e5c-896f-2068e4f48384
+ - f71db654-c485-4aa6-96ad-6a9b3c095d9f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -365,16 +371,16 @@ interactions:
- keep-alive
Content-Length:
- '89'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -383,17 +389,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '167'
+ - '155'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:59:47 GMT
+ - Wed, 20 May 2026 09:09:45 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d
+ - https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d
Pragma:
- no-cache
RequestId:
- - 03c7055a-08c6-405c-a36d-71aa7118a64e
+ - 4fd5ceb1-0e1b-4424-a494-3c0bbb3a63ea
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -419,16 +425,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -437,15 +446,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:59:47 GMT
+ - Wed, 20 May 2026 09:09:46 GMT
Pragma:
- no-cache
RequestId:
- - 6f2dfcdd-f29e-4d67-ab5f-e11c619b5461
+ - b5f4e688-f798-47dc-81f6-6f572ddfc3ba
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -471,9 +480,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -489,11 +498,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:59:48 GMT
+ - Wed, 20 May 2026 09:09:46 GMT
Pragma:
- no-cache
RequestId:
- - 5d69be79-50b0-4e51-912a-14d14dde28fc
+ - dd99c280-f93a-4063-bf06-f57a55904119
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -519,9 +528,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -537,11 +546,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:59:50 GMT
+ - Wed, 20 May 2026 09:09:48 GMT
Pragma:
- no-cache
RequestId:
- - 9ed88926-a431-4786-ac08-eac1229259bc
+ - 8c329260-18a7-4dd8-9c0e-12c8f0ff0851
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -565,17 +574,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/folders
response:
body:
- string: '{"id": "9f2958f1-445e-40eb-b383-b15d4033e88d", "displayName": "fabcli000003",
- "workspaceId": "07ad6b91-6dbb-4498-be4b-491db8fd6e31"}'
+ string: '{"id": "3f83f176-d651-4140-8d2e-9200635c94e7", "displayName": "fabcli000003",
+ "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -588,13 +597,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:59:51 GMT
+ - Wed, 20 May 2026 09:09:49 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders/9f2958f1-445e-40eb-b383-b15d4033e88d
+ - https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/folders/3f83f176-d651-4140-8d2e-9200635c94e7
Pragma:
- no-cache
RequestId:
- - 26dc4e75-cfd7-4df4-9e59-cb9b9fd85660
+ - 4187ea9c-60a4-49e4-8db3-e0d9f78e8c4f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -620,16 +629,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -638,15 +650,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:59:51 GMT
+ - Wed, 20 May 2026 09:09:49 GMT
Pragma:
- no-cache
RequestId:
- - 7ce155da-ce1e-4d37-854b-08b8d2f04383
+ - b1cba3e7-969f-4955-be66-6c9fd5dc503a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -672,9 +684,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -690,11 +702,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:59:52 GMT
+ - Wed, 20 May 2026 09:09:50 GMT
Pragma:
- no-cache
RequestId:
- - 8f82f525-57b3-4fdc-9407-7a3a3ddc43ac
+ - 1be0b874-acce-434f-8fa5-58019e223c33
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -720,9 +732,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -738,11 +750,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:59:53 GMT
+ - Wed, 20 May 2026 09:09:51 GMT
Pragma:
- no-cache
RequestId:
- - f432d9ce-5298-40f0-8a17-7c45864ad8c2
+ - 99fec00d-aee9-4451-9254-007238275f61
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -766,17 +778,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders
response:
body:
- string: '{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName": "fabcli000004",
- "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}'
+ string: '{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName": "fabcli000004",
+ "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -785,17 +797,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '133'
+ - '131'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:59:54 GMT
+ - Wed, 20 May 2026 09:09:51 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders/484b68e2-05f9-4fb7-8756-526b3d356774
+ - https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders/c44f5fca-9378-493c-afe9-ad54c5fba920
Pragma:
- no-cache
RequestId:
- - 6d6a1723-3d88-4f58-8192-af137235d471
+ - 5fd02475-b2df-4716-9cc4-ae8db49bf551
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -821,16 +833,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -839,15 +854,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:59:55 GMT
+ - Wed, 20 May 2026 09:09:52 GMT
Pragma:
- no-cache
RequestId:
- - fb6a9c7c-f855-4aab-8517-7cad722b63bd
+ - 88bdb9bf-0b27-47e0-a0db-b6a0f21c449f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -873,13 +888,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "9f2958f1-445e-40eb-b383-b15d4033e88d", "displayName":
- "fabcli000003", "workspaceId": "07ad6b91-6dbb-4498-be4b-491db8fd6e31"}]}'
+ string: '{"value": [{"id": "3f83f176-d651-4140-8d2e-9200635c94e7", "displayName":
+ "fabcli000003", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -892,11 +907,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:59:55 GMT
+ - Wed, 20 May 2026 09:09:53 GMT
Pragma:
- no-cache
RequestId:
- - af5d6dac-57a0-4819-916e-6f736b9b3e5d
+ - c78b6972-e14f-45a6-a8cd-1faf59d06a6f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -922,9 +937,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/items
response:
body:
string: '{"value": []}'
@@ -940,11 +955,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:59:56 GMT
+ - Wed, 20 May 2026 09:09:54 GMT
Pragma:
- no-cache
RequestId:
- - 9a61658f-8090-4b46-8978-699758cde06e
+ - 196d799a-b729-413a-8d68-d8b014e41afc
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -970,9 +985,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/items
response:
body:
string: '{"value": []}'
@@ -988,11 +1003,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:59:57 GMT
+ - Wed, 20 May 2026 09:09:54 GMT
Pragma:
- no-cache
RequestId:
- - 994e47a6-3d7a-4029-94c1-b55b6988ac80
+ - d54a5634-04c6-449f-8b0d-a4d043eb5055
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1007,9 +1022,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000005", "type":
- "Notebook", "folderId": "9f2958f1-445e-40eb-b383-b15d4033e88d", "definition":
- {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
+ body: '{"displayName": "fabcli000005", "type": "Notebook", "folderId": "3f83f176-d651-4140-8d2e-9200635c94e7",
+ "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
"payloadType": "InlineBase64"}]}}'
headers:
Accept:
@@ -1020,13 +1034,12 @@ interactions:
- keep-alive
Content-Length:
- '765'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31/notebooks
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/notebooks
response:
body:
string: 'null'
@@ -1042,15 +1055,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:59:59 GMT
+ - Wed, 20 May 2026 09:09:56 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/04b67ce8-5b0e-4a3b-b80c-942535c9229b
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/599bcdc2-b967-44e9-b5f7-c359d7ac617d
Pragma:
- no-cache
RequestId:
- - ed2ffe9d-91ff-4167-a9ee-e12e8286837e
+ - 8265372c-804c-4343-8373-a0ea8e022b43
Retry-After:
- '20'
Strict-Transport-Security:
@@ -1064,7 +1077,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - 04b67ce8-5b0e-4a3b-b80c-942535c9229b
+ - 599bcdc2-b967-44e9-b5f7-c359d7ac617d
status:
code: 202
message: Accepted
@@ -1080,13 +1093,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/04b67ce8-5b0e-4a3b-b80c-942535c9229b
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/599bcdc2-b967-44e9-b5f7-c359d7ac617d
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:59:59.3002828",
- "lastUpdatedTimeUtc": "2026-02-06T08:00:01.0974537", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:09:56.2101992",
+ "lastUpdatedTimeUtc": "2026-05-20T09:09:57.965755", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -1096,17 +1109,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '134'
+ - '129'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:00:22 GMT
+ - Wed, 20 May 2026 09:10:17 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/04b67ce8-5b0e-4a3b-b80c-942535c9229b/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/599bcdc2-b967-44e9-b5f7-c359d7ac617d/result
Pragma:
- no-cache
RequestId:
- - 74c7f1db-74a4-436c-88bf-45f2c2c130bd
+ - c279aec3-f443-4331-a4db-9f21f27d2e0f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1114,7 +1127,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - 04b67ce8-5b0e-4a3b-b80c-942535c9229b
+ - 599bcdc2-b967-44e9-b5f7-c359d7ac617d
status:
code: 200
message: OK
@@ -1130,14 +1143,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/04b67ce8-5b0e-4a3b-b80c-942535c9229b/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/599bcdc2-b967-44e9-b5f7-c359d7ac617d/result
response:
body:
- string: '{"id": "5fec321a-312f-408c-bcf6-b04fbe4d1e9d", "type": "Notebook",
- "displayName": "fabcli000005", "workspaceId":
- "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "folderId": "9f2958f1-445e-40eb-b383-b15d4033e88d"}'
+ string: '{"id": "1a7d1285-36f8-4bca-a940-ecf1ed9345de", "type": "Notebook",
+ "displayName": "fabcli000005", "description": "", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1",
+ "folderId": "3f83f176-d651-4140-8d2e-9200635c94e7"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1148,11 +1161,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 08:00:23 GMT
+ - Wed, 20 May 2026 09:10:18 GMT
Pragma:
- no-cache
RequestId:
- - ec971ce3-9de1-4564-96ea-f67b24ec9971
+ - 1387eb11-ba05-4ee3-b6bb-86ce9b2cc8ef
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -1176,16 +1189,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1194,15 +1210,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:00:24 GMT
+ - Wed, 20 May 2026 09:10:19 GMT
Pragma:
- no-cache
RequestId:
- - d4910b3d-9a07-417b-9f30-52f38f955f98
+ - 4f893189-8746-4758-8f1f-63f1493f90fb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1228,13 +1244,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "9f2958f1-445e-40eb-b383-b15d4033e88d", "displayName":
- "fabcli000003", "workspaceId": "07ad6b91-6dbb-4498-be4b-491db8fd6e31"}]}'
+ string: '{"value": [{"id": "3f83f176-d651-4140-8d2e-9200635c94e7", "displayName":
+ "fabcli000003", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1247,11 +1263,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:00:25 GMT
+ - Wed, 20 May 2026 09:10:20 GMT
Pragma:
- no-cache
RequestId:
- - 96bd8721-a336-4e23-959c-30c6bf17da59
+ - 982d33e0-8d8d-4b08-8edb-f2f589cf071b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1277,16 +1293,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1295,15 +1314,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:00:25 GMT
+ - Wed, 20 May 2026 09:10:20 GMT
Pragma:
- no-cache
RequestId:
- - 133fb794-6ce3-4733-8bfe-1735af09c0cd
+ - 1b05bf1d-9768-4ada-8e0c-db7d8f07b30a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1329,13 +1348,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName":
- "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}'
+ string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName":
+ "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1344,15 +1363,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '145'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:00:25 GMT
+ - Wed, 20 May 2026 09:10:22 GMT
Pragma:
- no-cache
RequestId:
- - ceed46ed-bded-4179-b611-22eb39aa2dd7
+ - 1b127988-5f93-4067-b4c3-f16a1e8b6a2d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1378,16 +1397,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1396,15 +1418,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:00:26 GMT
+ - Wed, 20 May 2026 09:10:22 GMT
Pragma:
- no-cache
RequestId:
- - 6964f19c-68f7-4aa4-acb3-40b06509aeee
+ - e1aba963-c265-4c93-9400-1a021ceb03bd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1430,13 +1452,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName":
- "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}'
+ string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName":
+ "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1445,15 +1467,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '145'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:00:27 GMT
+ - Wed, 20 May 2026 09:10:24 GMT
Pragma:
- no-cache
RequestId:
- - 18e67f5c-1862-4120-969f-61373897163d
+ - 11b9b144-c996-4d5c-a111-df6db0094479
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1479,13 +1501,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName":
- "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}'
+ string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName":
+ "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1494,15 +1516,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '145'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:00:27 GMT
+ - Wed, 20 May 2026 09:10:24 GMT
Pragma:
- no-cache
RequestId:
- - 218cca87-465c-493b-9b5d-229f0d1a9a38
+ - 462f9f97-0f28-42d1-bc4f-54bb95014ffe
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1528,13 +1550,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName":
- "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}'
+ string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName":
+ "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1543,15 +1565,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '145'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:00:28 GMT
+ - Wed, 20 May 2026 09:10:25 GMT
Pragma:
- no-cache
RequestId:
- - 0e6bea5c-1dd4-451e-b87f-3f77776c0095
+ - 5c32c634-0ffe-4b1d-94a9-da47e152bbce
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1566,8 +1588,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000003", "parentFolderId":
- "484b68e2-05f9-4fb7-8756-526b3d356774"}'
+ body: '{"displayName": "fabcli000003", "parentFolderId": "c44f5fca-9378-493c-afe9-ad54c5fba920"}'
headers:
Accept:
- '*/*'
@@ -1576,17 +1597,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '126'
+ - '93'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders
response:
body:
- string: '{"id": "2419af10-a86b-4f18-bf9c-5cb056291f68", "displayName": "fabcli000003",
- "parentFolderId": "484b68e2-05f9-4fb7-8756-526b3d356774", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}'
+ string: '{"id": "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85", "displayName": "fabcli000003",
+ "parentFolderId": "c44f5fca-9378-493c-afe9-ad54c5fba920", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -1595,17 +1616,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '167'
+ - '166'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:00:29 GMT
+ - Wed, 20 May 2026 09:10:26 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders/2419af10-a86b-4f18-bf9c-5cb056291f68
+ - https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders/fcb8f2b8-63f8-4c1e-88cd-d44741aaec85
Pragma:
- no-cache
RequestId:
- - 0ca36194-4082-47e5-a291-1a1458a73820
+ - 8d521570-0186-4a98-946c-b526c225fe3f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1631,14 +1652,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/items
response:
body:
- string: '{"value": [{"id": "5fec321a-312f-408c-bcf6-b04fbe4d1e9d", "type": "Notebook",
- "displayName": "fabcli000005", "workspaceId":
- "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "folderId": "9f2958f1-445e-40eb-b383-b15d4033e88d"}]}'
+ string: '{"value": [{"id": "1a7d1285-36f8-4bca-a940-ecf1ed9345de", "type": "Notebook",
+ "displayName": "fabcli000005", "description": "", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1",
+ "folderId": "3f83f176-d651-4140-8d2e-9200635c94e7"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1647,15 +1668,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '208'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:00:29 GMT
+ - Wed, 20 May 2026 09:10:27 GMT
Pragma:
- no-cache
RequestId:
- - f8757eb7-7f2a-4c1b-92f9-793b538ab316
+ - 89a6cd5b-c33c-455e-a4b8-3366a58963d2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1681,13 +1702,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "9f2958f1-445e-40eb-b383-b15d4033e88d", "displayName":
- "fabcli000003", "workspaceId": "07ad6b91-6dbb-4498-be4b-491db8fd6e31"}]}'
+ string: '{"value": [{"id": "3f83f176-d651-4140-8d2e-9200635c94e7", "displayName":
+ "fabcli000003", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1700,11 +1721,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:00:31 GMT
+ - Wed, 20 May 2026 09:10:27 GMT
Pragma:
- no-cache
RequestId:
- - 99188d68-e629-467d-a0ff-6a5f086d1a19
+ - e70d1d4f-8e00-4bbe-96e2-5fa03180b46a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1730,13 +1751,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "9f2958f1-445e-40eb-b383-b15d4033e88d", "displayName":
- "fabcli000003", "workspaceId": "07ad6b91-6dbb-4498-be4b-491db8fd6e31"}]}'
+ string: '{"value": [{"id": "3f83f176-d651-4140-8d2e-9200635c94e7", "displayName":
+ "fabcli000003", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1749,11 +1770,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:00:31 GMT
+ - Wed, 20 May 2026 09:10:28 GMT
Pragma:
- no-cache
RequestId:
- - cd9689e4-5a32-4d9a-8239-49b4054ccef7
+ - 5c14ed82-20b5-4c9f-908b-3e5c0efe70a5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1779,14 +1800,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/items
response:
body:
- string: '{"value": [{"id": "5fec321a-312f-408c-bcf6-b04fbe4d1e9d", "type": "Notebook",
- "displayName": "fabcli000005", "workspaceId":
- "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "folderId": "9f2958f1-445e-40eb-b383-b15d4033e88d"}]}'
+ string: '{"value": [{"id": "1a7d1285-36f8-4bca-a940-ecf1ed9345de", "type": "Notebook",
+ "displayName": "fabcli000005", "description": "", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1",
+ "folderId": "3f83f176-d651-4140-8d2e-9200635c94e7"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1795,15 +1816,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '208'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:00:32 GMT
+ - Wed, 20 May 2026 09:10:29 GMT
Pragma:
- no-cache
RequestId:
- - c0661e75-6638-451f-bfc7-4dabb51cebf8
+ - 6d7c7aa8-817f-4fe1-85a1-1c49741fedd1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1829,13 +1850,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "9f2958f1-445e-40eb-b383-b15d4033e88d", "displayName":
- "fabcli000003", "workspaceId": "07ad6b91-6dbb-4498-be4b-491db8fd6e31"}]}'
+ string: '{"value": [{"id": "3f83f176-d651-4140-8d2e-9200635c94e7", "displayName":
+ "fabcli000003", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1848,11 +1869,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:00:33 GMT
+ - Wed, 20 May 2026 09:10:30 GMT
Pragma:
- no-cache
RequestId:
- - 18003da9-afa2-440d-b7b3-39474b1368bd
+ - 03cd74d3-99a4-4afe-b3a8-e2c616700ca5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1878,13 +1899,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "9f2958f1-445e-40eb-b383-b15d4033e88d", "displayName":
- "fabcli000003", "workspaceId": "07ad6b91-6dbb-4498-be4b-491db8fd6e31"}]}'
+ string: '{"value": [{"id": "3f83f176-d651-4140-8d2e-9200635c94e7", "displayName":
+ "fabcli000003", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1897,11 +1918,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:00:34 GMT
+ - Wed, 20 May 2026 09:10:31 GMT
Pragma:
- no-cache
RequestId:
- - 1daa6b3c-03fd-41da-bc7a-bbb7e71247c4
+ - ccf5eabe-982d-4a37-bb9d-4ad90a3cc81b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1927,16 +1948,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1945,15 +1969,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:00:35 GMT
+ - Wed, 20 May 2026 09:10:32 GMT
Pragma:
- no-cache
RequestId:
- - 789f4a3a-9254-4ba9-9a6d-8fbfa15e947c
+ - c3f8a79a-9012-4c80-8244-b1a12323fd64
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1979,15 +2003,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName":
- "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}, {"id":
- "2419af10-a86b-4f18-bf9c-5cb056291f68", "displayName": "fabcli000003", "parentFolderId":
- "484b68e2-05f9-4fb7-8756-526b3d356774", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}'
+ string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName":
+ "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}, {"id":
+ "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85", "displayName": "fabcli000003", "parentFolderId":
+ "c44f5fca-9378-493c-afe9-ad54c5fba920", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1996,15 +2020,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '204'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:00:35 GMT
+ - Wed, 20 May 2026 09:10:33 GMT
Pragma:
- no-cache
RequestId:
- - 5470004d-f2d0-4023-b740-a9df3d7bac15
+ - b682144d-4ba8-4505-b7ae-732cad5b62b2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2030,55 +2054,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True
- response:
- body:
- string: '{"requestId": "44ce219d-7d6a-4ae6-a029-3b604c5b3880", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 8:01:25 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 08:00:36 GMT
- RequestId:
- - 44ce219d-7d6a-4ae6-a029-3b604c5b3880
- Retry-After:
- - '48'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName":
- "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}, {"id":
- "2419af10-a86b-4f18-bf9c-5cb056291f68", "displayName": "fabcli000003", "parentFolderId":
- "484b68e2-05f9-4fb7-8756-526b3d356774", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}'
+ string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName":
+ "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}, {"id":
+ "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85", "displayName": "fabcli000003", "parentFolderId":
+ "c44f5fca-9378-493c-afe9-ad54c5fba920", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2087,15 +2071,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '204'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:01:27 GMT
+ - Wed, 20 May 2026 09:10:34 GMT
Pragma:
- no-cache
RequestId:
- - a53cc5e9-ec44-4e85-805d-03a09855a6ec
+ - 4736d321-ec3b-4aab-907c-967f874840db
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2121,9 +2105,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/items
response:
body:
string: '{"value": []}'
@@ -2139,11 +2123,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:01:29 GMT
+ - Wed, 20 May 2026 09:10:34 GMT
Pragma:
- no-cache
RequestId:
- - 38a51f7d-aeb8-494a-bf25-35ccb4e12f62
+ - d78f5048-8537-48be-8e3c-aff071781540
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2169,9 +2153,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/items
response:
body:
string: '{"value": []}'
@@ -2187,11 +2171,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:01:29 GMT
+ - Wed, 20 May 2026 09:10:35 GMT
Pragma:
- no-cache
RequestId:
- - a6807736-8a41-4c40-b0aa-11080ac763e1
+ - 0989aad4-64b5-484b-9516-3a7f8af852e9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2217,9 +2201,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/items
response:
body:
string: '{"value": []}'
@@ -2235,11 +2219,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:01:30 GMT
+ - Wed, 20 May 2026 09:10:36 GMT
Pragma:
- no-cache
RequestId:
- - fadbe157-2695-4e2b-aad5-a84906d12e90
+ - 372e226b-fd8d-433f-98ff-f9c3af009655
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2265,14 +2249,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31/items/5fec321a-312f-408c-bcf6-b04fbe4d1e9d
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/items/1a7d1285-36f8-4bca-a940-ecf1ed9345de
response:
body:
- string: '{"id": "5fec321a-312f-408c-bcf6-b04fbe4d1e9d", "type": "Notebook",
- "displayName": "fabcli000005", "workspaceId":
- "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "folderId": "9f2958f1-445e-40eb-b383-b15d4033e88d"}'
+ string: '{"id": "1a7d1285-36f8-4bca-a940-ecf1ed9345de", "type": "Notebook",
+ "displayName": "fabcli000005", "description": "", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1",
+ "folderId": "3f83f176-d651-4140-8d2e-9200635c94e7"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -2281,17 +2265,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '196'
+ - '185'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:01:31 GMT
+ - Wed, 20 May 2026 09:10:37 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - eff4f24f-5a99-44f4-b036-2b6c8841b26a
+ - ef88ab80-9153-485c-8ed5-b9abfeffcc89
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2319,9 +2303,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31/items/5fec321a-312f-408c-bcf6-b04fbe4d1e9d/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/items/1a7d1285-36f8-4bca-a940-ecf1ed9345de/getDefinition
response:
body:
string: 'null'
@@ -2337,13 +2321,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:01:32 GMT
+ - Wed, 20 May 2026 09:10:38 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d7aa0210-0753-4d88-aa86-549c58420a59
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ce08e980-20f8-481d-8ca2-8ccf188caebb
Pragma:
- no-cache
RequestId:
- - de27b388-b836-4c6d-be4f-a34b6022ce77
+ - 97c15011-83e0-4390-b05b-2c0e491915ba
Retry-After:
- '20'
Strict-Transport-Security:
@@ -2357,7 +2341,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - d7aa0210-0753-4d88-aa86-549c58420a59
+ - ce08e980-20f8-481d-8ca2-8ccf188caebb
status:
code: 202
message: Accepted
@@ -2373,13 +2357,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d7aa0210-0753-4d88-aa86-549c58420a59
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ce08e980-20f8-481d-8ca2-8ccf188caebb
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:01:32.714454",
- "lastUpdatedTimeUtc": "2026-02-06T08:01:33.0269614", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:10:38.5345865",
+ "lastUpdatedTimeUtc": "2026-05-20T09:10:39.2582417", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -2389,17 +2373,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '129'
+ - '131'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:01:54 GMT
+ - Wed, 20 May 2026 09:10:58 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d7aa0210-0753-4d88-aa86-549c58420a59/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ce08e980-20f8-481d-8ca2-8ccf188caebb/result
Pragma:
- no-cache
RequestId:
- - da3339e3-790c-4bd4-9f24-1bb9fb64e7dc
+ - 63bb3202-a13b-40b2-904f-b1b8ddc980b2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2407,7 +2391,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - d7aa0210-0753-4d88-aa86-549c58420a59
+ - ce08e980-20f8-481d-8ca2-8ccf188caebb
status:
code: 200
message: OK
@@ -2423,14 +2407,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d7aa0210-0753-4d88-aa86-549c58420a59/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ce08e980-20f8-481d-8ca2-8ccf188caebb/result
response:
body:
string: '{"definition": {"parts": [{"path": "notebook-content.py", "payload":
"IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDUiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDUiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
"payloadType": "InlineBase64"}]}}'
headers:
Access-Control-Expose-Headers:
@@ -2442,11 +2426,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 08:01:54 GMT
+ - Wed, 20 May 2026 09:10:59 GMT
Pragma:
- no-cache
RequestId:
- - 22c59680-c269-48cd-ab73-6a8e256c18d8
+ - efe7fff6-4a16-4dc6-81e6-cff5ecf0e82e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -2459,10 +2443,10 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "Notebook", "displayName": "fabcli000005",
- "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDUiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
- "payloadType": "InlineBase64"}]}, "folderId": "2419af10-a86b-4f18-bf9c-5cb056291f68"}'
+ body: '{"type": "Notebook", "displayName": "fabcli000005", "definition": {"parts":
+ [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDUiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
+ "payloadType": "InlineBase64"}]}, "folderId": "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85"}'
headers:
Accept:
- '*/*'
@@ -2471,14 +2455,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1286'
-
+ - '1238'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/items
response:
body:
string: 'null'
@@ -2494,15 +2477,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:01:56 GMT
+ - Wed, 20 May 2026 09:11:01 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c5b5b820-fdb1-4c4a-9e5a-eb7b08da44d7
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c20d047d-8367-4b11-b5ab-90e68baca971
Pragma:
- no-cache
RequestId:
- - 5a3878e9-f41d-446b-8068-ef9385638655
+ - 81c801ae-b5a9-41dd-bb7c-73dcc1445f3b
Retry-After:
- '20'
Strict-Transport-Security:
@@ -2516,7 +2499,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - c5b5b820-fdb1-4c4a-9e5a-eb7b08da44d7
+ - c20d047d-8367-4b11-b5ab-90e68baca971
status:
code: 202
message: Accepted
@@ -2532,13 +2515,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c5b5b820-fdb1-4c4a-9e5a-eb7b08da44d7
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c20d047d-8367-4b11-b5ab-90e68baca971
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:01:56.7654162",
- "lastUpdatedTimeUtc": "2026-02-06T08:02:00.1097407", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:11:01.714378",
+ "lastUpdatedTimeUtc": "2026-05-20T09:11:03.4389801", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -2548,17 +2531,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '132'
+ - '131'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:02:19 GMT
+ - Wed, 20 May 2026 09:11:23 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c5b5b820-fdb1-4c4a-9e5a-eb7b08da44d7/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c20d047d-8367-4b11-b5ab-90e68baca971/result
Pragma:
- no-cache
RequestId:
- - f9d70dbe-5949-409b-9596-85dbc3eb3fb7
+ - 071bffa3-d300-44ee-a0e6-c232b99dbff3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2566,7 +2549,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - c5b5b820-fdb1-4c4a-9e5a-eb7b08da44d7
+ - c20d047d-8367-4b11-b5ab-90e68baca971
status:
code: 200
message: OK
@@ -2582,14 +2565,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c5b5b820-fdb1-4c4a-9e5a-eb7b08da44d7/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c20d047d-8367-4b11-b5ab-90e68baca971/result
response:
body:
- string: '{"id": "0cafb7a7-94c2-40e7-aafe-7583746cc9e8", "type": "Notebook",
- "displayName": "fabcli000005", "workspaceId":
- "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "folderId": "2419af10-a86b-4f18-bf9c-5cb056291f68"}'
+ string: '{"id": "7e7788f8-b805-4e95-a513-430fcd023b8f", "type": "Notebook",
+ "displayName": "fabcli000005", "description": "", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d",
+ "folderId": "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2600,11 +2583,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 08:02:19 GMT
+ - Wed, 20 May 2026 09:11:23 GMT
Pragma:
- no-cache
RequestId:
- - f85ec897-ea7b-4b23-91ce-7d49179e6327
+ - 301dd0c7-9181-4bad-a614-1a0df3cc73d8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -2628,14 +2611,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/items
response:
body:
- string: '{"value": [{"id": "5fec321a-312f-408c-bcf6-b04fbe4d1e9d", "type": "Notebook",
- "displayName": "fabcli000005", "workspaceId":
- "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "folderId": "9f2958f1-445e-40eb-b383-b15d4033e88d"}]}'
+ string: '{"value": [{"id": "1a7d1285-36f8-4bca-a940-ecf1ed9345de", "type": "Notebook",
+ "displayName": "fabcli000005", "description": "", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1",
+ "folderId": "3f83f176-d651-4140-8d2e-9200635c94e7"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2644,15 +2627,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '208'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:02:21 GMT
+ - Wed, 20 May 2026 09:11:24 GMT
Pragma:
- no-cache
RequestId:
- - 758d7216-fd33-43a6-b009-3ead8963a609
+ - dd7ee88f-5ea2-41ca-aaa5-2925a9c32ed2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2678,13 +2661,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "9f2958f1-445e-40eb-b383-b15d4033e88d", "displayName":
- "fabcli000003", "workspaceId": "07ad6b91-6dbb-4498-be4b-491db8fd6e31"}]}'
+ string: '{"value": [{"id": "3f83f176-d651-4140-8d2e-9200635c94e7", "displayName":
+ "fabcli000003", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2697,11 +2680,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:02:21 GMT
+ - Wed, 20 May 2026 09:11:25 GMT
Pragma:
- no-cache
RequestId:
- - a662a0b9-d561-4120-b51d-b3087bde192d
+ - 4f99ec20-984c-4c2e-827c-3da7d5f496f4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2727,13 +2710,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "9f2958f1-445e-40eb-b383-b15d4033e88d", "displayName":
- "fabcli000003", "workspaceId": "07ad6b91-6dbb-4498-be4b-491db8fd6e31"}]}'
+ string: '{"value": [{"id": "3f83f176-d651-4140-8d2e-9200635c94e7", "displayName":
+ "fabcli000003", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2746,11 +2729,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:02:22 GMT
+ - Wed, 20 May 2026 09:11:26 GMT
Pragma:
- no-cache
RequestId:
- - 20636dbc-3ee9-48e7-ad94-774f05ace87c
+ - 676167b2-fbb3-4681-bb62-d2fd550e8a81
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2776,16 +2759,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2794,15 +2780,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:02:23 GMT
+ - Wed, 20 May 2026 09:11:27 GMT
Pragma:
- no-cache
RequestId:
- - 3acd9dcd-dc33-4893-9f7a-932f8bc71e15
+ - dce1d569-0f16-4acd-b71f-31e66945f89c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2828,15 +2814,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName":
- "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}, {"id":
- "2419af10-a86b-4f18-bf9c-5cb056291f68", "displayName": "fabcli000003", "parentFolderId":
- "484b68e2-05f9-4fb7-8756-526b3d356774", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}'
+ string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName":
+ "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}, {"id":
+ "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85", "displayName": "fabcli000003", "parentFolderId":
+ "c44f5fca-9378-493c-afe9-ad54c5fba920", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2845,15 +2831,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '204'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:02:24 GMT
+ - Wed, 20 May 2026 09:11:28 GMT
Pragma:
- no-cache
RequestId:
- - da4b82d0-c043-4c9b-a3e3-4dde7f55dcf2
+ - 04ee2f5f-9336-4cf6-920c-07ffdd179836
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2879,14 +2865,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/items
response:
body:
- string: '{"value": [{"id": "0cafb7a7-94c2-40e7-aafe-7583746cc9e8", "type": "Notebook",
- "displayName": "fabcli000005", "workspaceId":
- "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "folderId": "2419af10-a86b-4f18-bf9c-5cb056291f68"}]}'
+ string: '{"value": [{"id": "7e7788f8-b805-4e95-a513-430fcd023b8f", "type": "Notebook",
+ "displayName": "fabcli000005", "description": "", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d",
+ "folderId": "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2895,15 +2881,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '209'
+ - '198'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:02:25 GMT
+ - Wed, 20 May 2026 09:11:29 GMT
Pragma:
- no-cache
RequestId:
- - 75a9b9db-a0d3-4b14-b590-8e5fe3abc0e7
+ - 3f6767cf-5bae-4218-802e-aec782447adc
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2929,15 +2915,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName":
- "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}, {"id":
- "2419af10-a86b-4f18-bf9c-5cb056291f68", "displayName": "fabcli000003", "parentFolderId":
- "484b68e2-05f9-4fb7-8756-526b3d356774", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}'
+ string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName":
+ "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}, {"id":
+ "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85", "displayName": "fabcli000003", "parentFolderId":
+ "c44f5fca-9378-493c-afe9-ad54c5fba920", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2946,15 +2932,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '204'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:02:26 GMT
+ - Wed, 20 May 2026 09:11:30 GMT
Pragma:
- no-cache
RequestId:
- - 9a2afae2-38c9-43bf-ab26-2ecd75a75afd
+ - 131eadef-80ef-4f82-bc5d-e2f1d4ccd9d6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2980,15 +2966,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName":
- "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}, {"id":
- "2419af10-a86b-4f18-bf9c-5cb056291f68", "displayName": "fabcli000003", "parentFolderId":
- "484b68e2-05f9-4fb7-8756-526b3d356774", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}'
+ string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName":
+ "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}, {"id":
+ "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85", "displayName": "fabcli000003", "parentFolderId":
+ "c44f5fca-9378-493c-afe9-ad54c5fba920", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2997,15 +2983,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '204'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:02:27 GMT
+ - Wed, 20 May 2026 09:11:30 GMT
Pragma:
- no-cache
RequestId:
- - 4f36ecbe-ff7a-4c5f-b464-8c9f2bedc2bd
+ - 3d142b6f-9cbe-4548-8471-47024e9c9e9b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3031,16 +3017,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3049,15 +3038,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:02:27 GMT
+ - Wed, 20 May 2026 09:11:31 GMT
Pragma:
- no-cache
RequestId:
- - de2495b6-72f3-4513-9b53-0b56a21dd79a
+ - b9b28c6d-f07e-4a39-9fe2-3b4a5c97176d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3083,15 +3072,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName":
- "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}, {"id":
- "2419af10-a86b-4f18-bf9c-5cb056291f68", "displayName": "fabcli000003", "parentFolderId":
- "484b68e2-05f9-4fb7-8756-526b3d356774", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}'
+ string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName":
+ "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}, {"id":
+ "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85", "displayName": "fabcli000003", "parentFolderId":
+ "c44f5fca-9378-493c-afe9-ad54c5fba920", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3100,15 +3089,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '204'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:02:28 GMT
+ - Wed, 20 May 2026 09:11:32 GMT
Pragma:
- no-cache
RequestId:
- - 554ad3bc-21d2-42be-8b65-133529732955
+ - 18b2b34c-3370-41a5-b529-8439137d57db
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3134,15 +3123,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName":
- "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}, {"id":
- "2419af10-a86b-4f18-bf9c-5cb056291f68", "displayName": "fabcli000003", "parentFolderId":
- "484b68e2-05f9-4fb7-8756-526b3d356774", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}'
+ string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName":
+ "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}, {"id":
+ "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85", "displayName": "fabcli000003", "parentFolderId":
+ "c44f5fca-9378-493c-afe9-ad54c5fba920", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3151,15 +3140,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '204'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:02:29 GMT
+ - Wed, 20 May 2026 09:11:32 GMT
Pragma:
- no-cache
RequestId:
- - d7067c49-11e7-44fa-b383-97b688822ff7
+ - 84e9df05-8031-4972-9023-38e441644417
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3185,14 +3174,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/items
response:
body:
- string: '{"value": [{"id": "0cafb7a7-94c2-40e7-aafe-7583746cc9e8", "type": "Notebook",
- "displayName": "fabcli000005", "workspaceId":
- "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "folderId": "2419af10-a86b-4f18-bf9c-5cb056291f68"}]}'
+ string: '{"value": [{"id": "7e7788f8-b805-4e95-a513-430fcd023b8f", "type": "Notebook",
+ "displayName": "fabcli000005", "description": "", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d",
+ "folderId": "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3201,15 +3190,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '209'
+ - '198'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:02:30 GMT
+ - Wed, 20 May 2026 09:11:34 GMT
Pragma:
- no-cache
RequestId:
- - 518b1e3b-f72c-473d-ab92-698d51642f91
+ - a67d990c-6455-4446-97c0-f8a879a41676
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3235,15 +3224,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName":
- "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}, {"id":
- "2419af10-a86b-4f18-bf9c-5cb056291f68", "displayName": "fabcli000003", "parentFolderId":
- "484b68e2-05f9-4fb7-8756-526b3d356774", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}'
+ string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName":
+ "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}, {"id":
+ "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85", "displayName": "fabcli000003", "parentFolderId":
+ "c44f5fca-9378-493c-afe9-ad54c5fba920", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3252,15 +3241,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '204'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:02:30 GMT
+ - Wed, 20 May 2026 09:11:35 GMT
Pragma:
- no-cache
RequestId:
- - 5787854f-1291-4612-99da-b6d212c2c457
+ - 5d224377-ed70-4619-acd8-c42fe2547e64
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3286,15 +3275,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName":
- "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}, {"id":
- "2419af10-a86b-4f18-bf9c-5cb056291f68", "displayName": "fabcli000003", "parentFolderId":
- "484b68e2-05f9-4fb7-8756-526b3d356774", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}'
+ string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName":
+ "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}, {"id":
+ "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85", "displayName": "fabcli000003", "parentFolderId":
+ "c44f5fca-9378-493c-afe9-ad54c5fba920", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3303,15 +3292,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '204'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:02:32 GMT
+ - Wed, 20 May 2026 09:11:35 GMT
Pragma:
- no-cache
RequestId:
- - 2cdf7359-0e81-472e-b68a-0ce992d4d319
+ - 98bf5cba-5493-4fc4-8703-193e0296ad2a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3337,16 +3326,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3355,15 +3347,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:02:33 GMT
+ - Wed, 20 May 2026 09:11:37 GMT
Pragma:
- no-cache
RequestId:
- - 673f26d7-4f55-4c31-bda6-1ddfc72498a6
+ - a4aa1026-77f9-43c3-bcc2-28c6d3e9e5c4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3389,15 +3381,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName":
- "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}, {"id":
- "2419af10-a86b-4f18-bf9c-5cb056291f68", "displayName": "fabcli000003", "parentFolderId":
- "484b68e2-05f9-4fb7-8756-526b3d356774", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}'
+ string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName":
+ "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}, {"id":
+ "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85", "displayName": "fabcli000003", "parentFolderId":
+ "c44f5fca-9378-493c-afe9-ad54c5fba920", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3406,15 +3398,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '204'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:02:33 GMT
+ - Wed, 20 May 2026 09:11:37 GMT
Pragma:
- no-cache
RequestId:
- - c3239c2a-ae83-4eb4-812a-22b1294842b6
+ - b789753f-c717-4cd2-9fa3-7c31f6eed690
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3440,15 +3432,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName":
- "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}, {"id":
- "2419af10-a86b-4f18-bf9c-5cb056291f68", "displayName": "fabcli000003", "parentFolderId":
- "484b68e2-05f9-4fb7-8756-526b3d356774", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}'
+ string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName":
+ "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}, {"id":
+ "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85", "displayName": "fabcli000003", "parentFolderId":
+ "c44f5fca-9378-493c-afe9-ad54c5fba920", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3457,15 +3449,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '204'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:02:34 GMT
+ - Wed, 20 May 2026 09:11:38 GMT
Pragma:
- no-cache
RequestId:
- - e30e519b-74ca-4ef9-8144-b51955dcac2f
+ - e6b4c964-bcf5-4346-a9c0-8a749a53b0e4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3491,14 +3483,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/items
response:
body:
- string: '{"value": [{"id": "0cafb7a7-94c2-40e7-aafe-7583746cc9e8", "type": "Notebook",
- "displayName": "fabcli000005", "workspaceId":
- "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "folderId": "2419af10-a86b-4f18-bf9c-5cb056291f68"}]}'
+ string: '{"value": [{"id": "7e7788f8-b805-4e95-a513-430fcd023b8f", "type": "Notebook",
+ "displayName": "fabcli000005", "description": "", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d",
+ "folderId": "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3507,15 +3499,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '209'
+ - '198'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:02:35 GMT
+ - Wed, 20 May 2026 09:11:39 GMT
Pragma:
- no-cache
RequestId:
- - e5e61a83-3794-426d-b548-33c120a40d2c
+ - 5ef03dca-1260-428e-a698-6711d8ab3e67
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3541,15 +3533,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName":
- "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}, {"id":
- "2419af10-a86b-4f18-bf9c-5cb056291f68", "displayName": "fabcli000003", "parentFolderId":
- "484b68e2-05f9-4fb7-8756-526b3d356774", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}'
+ string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName":
+ "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}, {"id":
+ "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85", "displayName": "fabcli000003", "parentFolderId":
+ "c44f5fca-9378-493c-afe9-ad54c5fba920", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3558,15 +3550,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '204'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:02:35 GMT
+ - Wed, 20 May 2026 09:11:40 GMT
Pragma:
- no-cache
RequestId:
- - b2a7237d-52a7-4176-8713-dc90d5e0db2b
+ - ee4348b7-8949-4516-8003-92a1a60ee7a3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3594,9 +3586,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/items/0cafb7a7-94c2-40e7-aafe-7583746cc9e8
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/items/7e7788f8-b805-4e95-a513-430fcd023b8f
response:
body:
string: ''
@@ -3612,11 +3604,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:02:36 GMT
+ - Wed, 20 May 2026 09:11:41 GMT
Pragma:
- no-cache
RequestId:
- - f9f83446-875c-4446-92ca-50fe5b842af3
+ - 6423c477-4e61-40a5-9a18-f0b4882e5f29
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3642,16 +3634,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3660,15 +3655,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:02:36 GMT
+ - Wed, 20 May 2026 09:11:42 GMT
Pragma:
- no-cache
RequestId:
- - 9c7063bd-9a7d-42c0-8efe-cad30b6da7dc
+ - 724b87c9-ac14-47e5-82a3-a423d20a4dcb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3694,15 +3689,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName":
- "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}, {"id":
- "2419af10-a86b-4f18-bf9c-5cb056291f68", "displayName": "fabcli000003", "parentFolderId":
- "484b68e2-05f9-4fb7-8756-526b3d356774", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}'
+ string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName":
+ "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}, {"id":
+ "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85", "displayName": "fabcli000003", "parentFolderId":
+ "c44f5fca-9378-493c-afe9-ad54c5fba920", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3711,15 +3706,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '204'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:02:37 GMT
+ - Wed, 20 May 2026 09:11:43 GMT
Pragma:
- no-cache
RequestId:
- - 78a71b39-a7b9-45d1-b2e2-008600c9dcbe
+ - ac439b09-1079-47a7-92ee-37263cac3546
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3745,15 +3740,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName":
- "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}, {"id":
- "2419af10-a86b-4f18-bf9c-5cb056291f68", "displayName": "fabcli000003", "parentFolderId":
- "484b68e2-05f9-4fb7-8756-526b3d356774", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}'
+ string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName":
+ "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}, {"id":
+ "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85", "displayName": "fabcli000003", "parentFolderId":
+ "c44f5fca-9378-493c-afe9-ad54c5fba920", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3762,15 +3757,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '204'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:02:38 GMT
+ - Wed, 20 May 2026 09:11:44 GMT
Pragma:
- no-cache
RequestId:
- - 15b65a32-bb92-48b1-8974-e4f729d1350d
+ - 415bc82b-29ad-4316-bf3e-d9583ba7fd4a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3798,9 +3793,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders/2419af10-a86b-4f18-bf9c-5cb056291f68
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders/fcb8f2b8-63f8-4c1e-88cd-d44741aaec85
response:
body:
string: ''
@@ -3816,11 +3811,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:02:38 GMT
+ - Wed, 20 May 2026 09:11:45 GMT
Pragma:
- no-cache
RequestId:
- - 7148ced9-fb02-4cfe-b70f-194e9d4141e1
+ - 8e7ba776-4398-4ada-8ce6-3de8bbf86e30
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3846,16 +3841,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3864,15 +3862,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:02:39 GMT
+ - Wed, 20 May 2026 09:11:46 GMT
Pragma:
- no-cache
RequestId:
- - a184023c-9375-4a4f-8e5b-79dd86dcfdce
+ - 0a358d06-92a8-44e0-b14f-eb139a3262e2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3898,13 +3896,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "9f2958f1-445e-40eb-b383-b15d4033e88d", "displayName":
- "fabcli000003", "workspaceId": "07ad6b91-6dbb-4498-be4b-491db8fd6e31"}]}'
+ string: '{"value": [{"id": "3f83f176-d651-4140-8d2e-9200635c94e7", "displayName":
+ "fabcli000003", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3917,11 +3915,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:02:39 GMT
+ - Wed, 20 May 2026 09:11:46 GMT
Pragma:
- no-cache
RequestId:
- - 74f17d7f-6152-4f4b-930c-6d8ac50e186c
+ - 5c80db5a-3bf0-4ca2-b4a4-36e086447d13
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3947,14 +3945,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/items
response:
body:
- string: '{"value": [{"id": "5fec321a-312f-408c-bcf6-b04fbe4d1e9d", "type": "Notebook",
- "displayName": "fabcli000005", "workspaceId":
- "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "folderId": "9f2958f1-445e-40eb-b383-b15d4033e88d"}]}'
+ string: '{"value": [{"id": "1a7d1285-36f8-4bca-a940-ecf1ed9345de", "type": "Notebook",
+ "displayName": "fabcli000005", "description": "", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1",
+ "folderId": "3f83f176-d651-4140-8d2e-9200635c94e7"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3963,15 +3961,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '208'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:02:40 GMT
+ - Wed, 20 May 2026 09:11:47 GMT
Pragma:
- no-cache
RequestId:
- - dd4b05a7-b704-42d3-a056-87fc126dff33
+ - 4bd1fe26-942b-4905-93c8-3d721477e48b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3997,53 +3995,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/folders?recursive=True
response:
body:
- string: '{"requestId": "380b0482-9805-4fff-9054-5b30f08bb108", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 8:03:29 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 08:02:40 GMT
- RequestId:
- - 380b0482-9805-4fff-9054-5b30f08bb108
- Retry-After:
- - '48'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders?recursive=True
- response:
- body:
- string: '{"value": [{"id": "9f2958f1-445e-40eb-b383-b15d4033e88d", "displayName":
- "fabcli000003", "workspaceId": "07ad6b91-6dbb-4498-be4b-491db8fd6e31"}]}'
+ string: '{"value": [{"id": "3f83f176-d651-4140-8d2e-9200635c94e7", "displayName":
+ "fabcli000003", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4056,11 +4014,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:03:33 GMT
+ - Wed, 20 May 2026 09:11:48 GMT
Pragma:
- no-cache
RequestId:
- - 6e6cf4c0-ac70-4eb0-8ed1-6107489d29e8
+ - 3e6be5fd-348d-44dc-ad09-d0323fec92c8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4088,9 +4046,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31/items/5fec321a-312f-408c-bcf6-b04fbe4d1e9d
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/items/1a7d1285-36f8-4bca-a940-ecf1ed9345de
response:
body:
string: ''
@@ -4106,11 +4064,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:03:34 GMT
+ - Wed, 20 May 2026 09:11:49 GMT
Pragma:
- no-cache
RequestId:
- - fda64f33-d250-4667-b065-a3915cce2819
+ - 0deada96-7a11-4b07-acae-701f7f721ae6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4136,16 +4094,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4154,15 +4115,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:03:34 GMT
+ - Wed, 20 May 2026 09:11:49 GMT
Pragma:
- no-cache
RequestId:
- - acc827d6-267b-4223-ad89-87ddd8e83679
+ - 4e7e6490-64ac-4a97-80bf-62ce8084ab57
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4188,13 +4149,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName":
- "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}'
+ string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName":
+ "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4203,15 +4164,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '145'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:03:35 GMT
+ - Wed, 20 May 2026 09:11:50 GMT
Pragma:
- no-cache
RequestId:
- - 74b379ee-9288-468c-8706-06f8906ad397
+ - b8a74017-4f97-4fcb-8088-d2c86e8e03ed
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4239,9 +4200,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders/484b68e2-05f9-4fb7-8756-526b3d356774
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders/c44f5fca-9378-493c-afe9-ad54c5fba920
response:
body:
string: ''
@@ -4257,11 +4218,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:03:36 GMT
+ - Wed, 20 May 2026 09:11:51 GMT
Pragma:
- no-cache
RequestId:
- - 818c520a-b5f2-4e0a-99de-6cae2f6350a4
+ - caf61601-6ef9-4364-8fa0-6c71b6d141d5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4287,16 +4248,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4305,15 +4269,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:03:37 GMT
+ - Wed, 20 May 2026 09:11:52 GMT
Pragma:
- no-cache
RequestId:
- - c51d2bc1-479a-437b-aee1-0fe2749400dd
+ - cbae3f28-ed85-4cef-a45f-03f3e95f0867
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4339,13 +4303,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "9f2958f1-445e-40eb-b383-b15d4033e88d", "displayName":
- "fabcli000003", "workspaceId": "07ad6b91-6dbb-4498-be4b-491db8fd6e31"}]}'
+ string: '{"value": [{"id": "3f83f176-d651-4140-8d2e-9200635c94e7", "displayName":
+ "fabcli000003", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4358,11 +4322,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:03:38 GMT
+ - Wed, 20 May 2026 09:11:52 GMT
Pragma:
- no-cache
RequestId:
- - e045ad56-f6ab-4826-a3e0-6a7602a8da46
+ - 362fd85d-4d76-42fc-86c2-870aa780a531
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4390,9 +4354,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders/9f2958f1-445e-40eb-b383-b15d4033e88d
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/folders/3f83f176-d651-4140-8d2e-9200635c94e7
response:
body:
string: ''
@@ -4408,11 +4372,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:03:38 GMT
+ - Wed, 20 May 2026 09:11:53 GMT
Pragma:
- no-cache
RequestId:
- - 27b36c95-0796-423f-a256-e2660a2b7c57
+ - c0a44228-f69c-4159-8366-6f5f55634aff
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4438,16 +4402,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4456,15 +4423,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:03:40 GMT
+ - Wed, 20 May 2026 09:11:53 GMT
Pragma:
- no-cache
RequestId:
- - b69b0577-5817-4a63-9c36-cc4cc909c769
+ - f51e68d3-ed5a-413c-ad22-6dbcf65c6b8e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4490,9 +4457,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/items
response:
body:
string: '{"value": []}'
@@ -4508,11 +4475,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:03:41 GMT
+ - Wed, 20 May 2026 09:11:54 GMT
Pragma:
- no-cache
RequestId:
- - 90b0c4b8-d4b4-472a-8cf7-3ca21313beef
+ - cf0d7303-fbee-4487-a489-8a197f3fc9b8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4540,9 +4507,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1
response:
body:
string: ''
@@ -4558,11 +4525,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:03:41 GMT
+ - Wed, 20 May 2026 09:11:55 GMT
Pragma:
- no-cache
RequestId:
- - e1e103a6-f020-43d5-b9d8-5b4dd2c72b80
+ - 1d4f1b6b-8ac7-42de-bb11-266f5f814860
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4588,15 +4555,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4605,15 +4574,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2846'
+ - '2659'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:03:42 GMT
+ - Wed, 20 May 2026 09:11:56 GMT
Pragma:
- no-cache
RequestId:
- - 4bf27423-464a-42c4-8f3b-c2318ac56d4d
+ - 55218cf6-d8e5-48d8-b205-2a88fe3111da
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4639,9 +4608,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/items
response:
body:
string: '{"value": []}'
@@ -4657,11 +4626,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:03:43 GMT
+ - Wed, 20 May 2026 09:11:57 GMT
Pragma:
- no-cache
RequestId:
- - 23146378-bb42-4a2b-b4c5-04f7b24779a8
+ - 556895b3-9b47-4d5e-a49b-5cb35fb6cf88
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4689,9 +4658,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d
+ uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d
response:
body:
string: ''
@@ -4707,11 +4676,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:03:44 GMT
+ - Wed, 20 May 2026 09:11:57 GMT
Pragma:
- no-cache
RequestId:
- - 2a47c2c8-5f52-4163-936e-0228d20b498e
+ - f20a431d-1ae8-4f89-afe2-afa3e5a9f247
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_non_existing_folder_success.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_non_existing_folder_success.yaml
index a4388a568..dc680e994 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_non_existing_folder_success.yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_non_existing_folder_success.yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:03:45 GMT
+ - Wed, 20 May 2026 09:11:58 GMT
Pragma:
- no-cache
RequestId:
- - fda75476-12ac-4319-86ef-05604aed5c4a
+ - 35de58c3-7062-4e60-8c1a-c671aab3ddbd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,14 +62,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -77,15 +79,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:03:46 GMT
+ - Wed, 20 May 2026 09:11:58 GMT
Pragma:
- no-cache
RequestId:
- - 87f66279-51ee-4624-bb1e-3495b7c6f733
+ - ae541b12-f1ec-4662-9d0f-e9fd26b19077
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -111,7 +113,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -127,15 +129,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '427'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:03:50 GMT
+ - Wed, 20 May 2026 09:12:02 GMT
Pragma:
- no-cache
RequestId:
- - 7bce4434-d1bc-4c06-9e0c-a5916ee88b4d
+ - 1fb38bb7-5e7d-4e46-9d72-3c75d020fa90
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -160,16 +162,16 @@ interactions:
- keep-alive
Content-Length:
- '89'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "1cb9157d-85d1-400b-81f4-149cbc93cf35", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "dd9447c2-71bb-48a5-8596-469daec598bc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -178,17 +180,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '153'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:03:57 GMT
+ - Wed, 20 May 2026 09:12:09 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/1cb9157d-85d1-400b-81f4-149cbc93cf35
+ - https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc
Pragma:
- no-cache
RequestId:
- - 5e0aaebc-5780-4c68-81b7-e0beae14edd6
+ - decc9c4d-e96b-4924-a9ef-b28efa571995
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -214,15 +216,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "1cb9157d-85d1-400b-81f4-149cbc93cf35", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dd9447c2-71bb-48a5-8596-469daec598bc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -231,15 +235,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2846'
+ - '2661'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:03:57 GMT
+ - Wed, 20 May 2026 09:12:10 GMT
Pragma:
- no-cache
RequestId:
- - c21781d4-1b71-42d6-9362-6e7597ed89c4
+ - cd47e4d7-7ca3-44bb-b614-3c1ec928b644
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -265,15 +269,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "1cb9157d-85d1-400b-81f4-149cbc93cf35", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dd9447c2-71bb-48a5-8596-469daec598bc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -282,15 +288,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2846'
+ - '2661'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:03:58 GMT
+ - Wed, 20 May 2026 09:12:11 GMT
Pragma:
- no-cache
RequestId:
- - 796bcd92-35d2-4094-a609-83b7d2e70a8b
+ - e9365b9b-6c13-41e8-ba2a-9a320f2a1f09
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -316,7 +322,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -332,15 +338,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '427'
+ - '424'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:04:02 GMT
+ - Wed, 20 May 2026 09:12:14 GMT
Pragma:
- no-cache
RequestId:
- - 4ce97cf1-95b4-4efe-a0fb-a4334f5749d5
+ - 05536be4-4b2b-46af-acb4-30d1eaf73ee9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -365,16 +371,16 @@ interactions:
- keep-alive
Content-Length:
- '89'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "9d022e35-1614-42f7-97b7-594991c991ca", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -383,17 +389,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '154'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:04:11 GMT
+ - Wed, 20 May 2026 09:12:22 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/9d022e35-1614-42f7-97b7-594991c991ca
+ - https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c
Pragma:
- no-cache
RequestId:
- - 18eddcbf-135d-4858-9df4-72e1f5671da7
+ - dcf4ac21-3ae8-4700-bcef-7356c7ee0061
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -419,16 +425,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "1cb9157d-85d1-400b-81f4-149cbc93cf35", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "9d022e35-1614-42f7-97b7-594991c991ca", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dd9447c2-71bb-48a5-8596-469daec598bc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -437,15 +446,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:04:11 GMT
+ - Wed, 20 May 2026 09:12:23 GMT
Pragma:
- no-cache
RequestId:
- - fc2e9f8e-d67f-4f77-a2ce-5092dd529f9a
+ - 5171af55-bb3e-4d8b-884b-b5a9643697f0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -471,9 +480,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1cb9157d-85d1-400b-81f4-149cbc93cf35/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -489,11 +498,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:04:12 GMT
+ - Wed, 20 May 2026 09:12:24 GMT
Pragma:
- no-cache
RequestId:
- - 35a25635-7591-4361-964b-9c593efcb563
+ - b2ddbbd7-f02e-457d-a1f3-de6ac5dd0aca
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -519,9 +528,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1cb9157d-85d1-400b-81f4-149cbc93cf35/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -537,11 +546,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:04:13 GMT
+ - Wed, 20 May 2026 09:12:25 GMT
Pragma:
- no-cache
RequestId:
- - e743e686-aea9-4e27-b5b9-0a7cb9d9b6a9
+ - a84a0f8a-8a19-4280-8e5d-b65866ed16d0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -565,17 +574,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/1cb9157d-85d1-400b-81f4-149cbc93cf35/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/folders
response:
body:
- string: '{"id": "535bb037-4688-443a-b3f9-9049d6e65cdd", "displayName": "fabcli000003",
- "workspaceId": "1cb9157d-85d1-400b-81f4-149cbc93cf35"}'
+ string: '{"id": "93095a73-0e0b-4e72-81b7-4434e147e108", "displayName": "fabcli000003",
+ "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -584,17 +593,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '134'
+ - '132'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:04:14 GMT
+ - Wed, 20 May 2026 09:12:25 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/1cb9157d-85d1-400b-81f4-149cbc93cf35/folders/535bb037-4688-443a-b3f9-9049d6e65cdd
+ - https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/folders/93095a73-0e0b-4e72-81b7-4434e147e108
Pragma:
- no-cache
RequestId:
- - 1328bd49-fa9d-40c8-8877-66186886bafc
+ - f1aa3fd7-261b-476a-9f88-dc2093dffd5d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -620,16 +629,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "1cb9157d-85d1-400b-81f4-149cbc93cf35", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "9d022e35-1614-42f7-97b7-594991c991ca", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dd9447c2-71bb-48a5-8596-469daec598bc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -638,15 +650,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:04:15 GMT
+ - Wed, 20 May 2026 09:12:26 GMT
Pragma:
- no-cache
RequestId:
- - 2180e73b-b09c-4a8d-a4f5-942b2e840561
+ - 7a39ff4f-e80d-4cd0-85f6-0fdbab1db95e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -672,13 +684,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1cb9157d-85d1-400b-81f4-149cbc93cf35/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "535bb037-4688-443a-b3f9-9049d6e65cdd", "displayName":
- "fabcli000003", "workspaceId": "1cb9157d-85d1-400b-81f4-149cbc93cf35"}]}'
+ string: '{"value": [{"id": "93095a73-0e0b-4e72-81b7-4434e147e108", "displayName":
+ "fabcli000003", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -687,15 +699,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '145'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:04:15 GMT
+ - Wed, 20 May 2026 09:12:28 GMT
Pragma:
- no-cache
RequestId:
- - aa2aa56e-fcdf-4fbc-841b-f1849f4cab5b
+ - 79ec2f0a-0823-4f83-a93e-084bf6b099fe
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -721,9 +733,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1cb9157d-85d1-400b-81f4-149cbc93cf35/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/items
response:
body:
string: '{"value": []}'
@@ -739,11 +751,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:04:16 GMT
+ - Wed, 20 May 2026 09:12:28 GMT
Pragma:
- no-cache
RequestId:
- - f14f6bed-1356-4b61-a7d0-c46b1be582f4
+ - 2649a180-f0a4-47d4-9428-af7a244dced5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -769,9 +781,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1cb9157d-85d1-400b-81f4-149cbc93cf35/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/items
response:
body:
string: '{"value": []}'
@@ -787,11 +799,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:04:17 GMT
+ - Wed, 20 May 2026 09:12:30 GMT
Pragma:
- no-cache
RequestId:
- - b8b4b172-7ac8-4fda-84eb-b487eb551cba
+ - 6b67cdd7-d424-4b92-b12f-1fb8d4d7bddb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -806,9 +818,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000004", "type":
- "Notebook", "folderId": "535bb037-4688-443a-b3f9-9049d6e65cdd", "definition":
- {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
+ body: '{"displayName": "fabcli000004", "type": "Notebook", "folderId": "93095a73-0e0b-4e72-81b7-4434e147e108",
+ "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
"payloadType": "InlineBase64"}]}}'
headers:
Accept:
@@ -819,13 +830,12 @@ interactions:
- keep-alive
Content-Length:
- '765'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/1cb9157d-85d1-400b-81f4-149cbc93cf35/notebooks
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/notebooks
response:
body:
string: 'null'
@@ -841,15 +851,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:04:18 GMT
+ - Wed, 20 May 2026 09:12:32 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2408a29b-2b91-43d7-9578-a19df29794c4
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/75cb528b-351e-46e2-9291-5dc3d0b758e6
Pragma:
- no-cache
RequestId:
- - 384e79ca-3ed5-4971-83c5-cdc138ba0e04
+ - 84400f43-6a57-4d07-9bd4-a4d29429bff4
Retry-After:
- '20'
Strict-Transport-Security:
@@ -863,7 +873,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - 2408a29b-2b91-43d7-9578-a19df29794c4
+ - 75cb528b-351e-46e2-9291-5dc3d0b758e6
status:
code: 202
message: Accepted
@@ -879,13 +889,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2408a29b-2b91-43d7-9578-a19df29794c4
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/75cb528b-351e-46e2-9291-5dc3d0b758e6
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:04:18.2564183",
- "lastUpdatedTimeUtc": "2026-02-06T08:04:19.6633813", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:12:31.2769168",
+ "lastUpdatedTimeUtc": "2026-05-20T09:12:35.2130563", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -899,13 +909,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:04:40 GMT
+ - Wed, 20 May 2026 09:12:52 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2408a29b-2b91-43d7-9578-a19df29794c4/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/75cb528b-351e-46e2-9291-5dc3d0b758e6/result
Pragma:
- no-cache
RequestId:
- - 86f530c1-ba35-417a-8d70-4e701a2f2242
+ - 781a2906-25c0-44b8-b1d1-929895780773
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -913,7 +923,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - 2408a29b-2b91-43d7-9578-a19df29794c4
+ - 75cb528b-351e-46e2-9291-5dc3d0b758e6
status:
code: 200
message: OK
@@ -929,14 +939,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2408a29b-2b91-43d7-9578-a19df29794c4/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/75cb528b-351e-46e2-9291-5dc3d0b758e6/result
response:
body:
- string: '{"id": "fc6c5c81-08f5-4655-85e7-9b302d7ad34a", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "1cb9157d-85d1-400b-81f4-149cbc93cf35", "folderId": "535bb037-4688-443a-b3f9-9049d6e65cdd"}'
+ string: '{"id": "4b50eca0-32e7-4ae6-99b4-205fc6c9a106", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc",
+ "folderId": "93095a73-0e0b-4e72-81b7-4434e147e108"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -947,11 +957,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 08:04:41 GMT
+ - Wed, 20 May 2026 09:12:54 GMT
Pragma:
- no-cache
RequestId:
- - 9e566340-8e27-46f6-9b44-8d94fd75bc47
+ - b633f10b-be45-404a-957c-70ae37c3b186
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -975,16 +985,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "1cb9157d-85d1-400b-81f4-149cbc93cf35", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "9d022e35-1614-42f7-97b7-594991c991ca", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dd9447c2-71bb-48a5-8596-469daec598bc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -993,15 +1006,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:04:42 GMT
+ - Wed, 20 May 2026 09:12:55 GMT
Pragma:
- no-cache
RequestId:
- - d3417569-00f6-4a0c-89e0-c117e1b7e754
+ - 1122fce1-afe1-4d10-9719-c9d97ae58696
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1027,13 +1040,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1cb9157d-85d1-400b-81f4-149cbc93cf35/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "535bb037-4688-443a-b3f9-9049d6e65cdd", "displayName":
- "fabcli000003", "workspaceId": "1cb9157d-85d1-400b-81f4-149cbc93cf35"}]}'
+ string: '{"value": [{"id": "93095a73-0e0b-4e72-81b7-4434e147e108", "displayName":
+ "fabcli000003", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1042,15 +1055,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '145'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:04:42 GMT
+ - Wed, 20 May 2026 09:12:55 GMT
Pragma:
- no-cache
RequestId:
- - 2d3c5ea6-d0a2-4ef6-8f98-e8b0d2ee5331
+ - 08184838-23db-47b5-917f-404b141c3a56
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1076,16 +1089,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "1cb9157d-85d1-400b-81f4-149cbc93cf35", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "9d022e35-1614-42f7-97b7-594991c991ca", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dd9447c2-71bb-48a5-8596-469daec598bc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1094,15 +1110,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:04:43 GMT
+ - Wed, 20 May 2026 09:12:56 GMT
Pragma:
- no-cache
RequestId:
- - 6220e2a6-84de-401c-8c9c-4e199e23f537
+ - 3d85b83b-d5f8-4919-8e7f-c6bb73a5e39e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1128,9 +1144,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/9d022e35-1614-42f7-97b7-594991c991ca/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -1146,11 +1162,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:04:45 GMT
+ - Wed, 20 May 2026 09:12:57 GMT
Pragma:
- no-cache
RequestId:
- - 37b1a3c3-6854-42f1-926d-49ca03569e72
+ - 5cbf146f-c1e0-4255-96bb-26dc37470a02
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1176,9 +1192,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/9d022e35-1614-42f7-97b7-594991c991ca/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -1194,11 +1210,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:04:46 GMT
+ - Wed, 20 May 2026 09:12:58 GMT
Pragma:
- no-cache
RequestId:
- - 6c5e99f2-222b-4f47-a319-5bfd3fd187b3
+ - 3632d9da-9e35-447f-b935-c12df2a7a717
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1222,17 +1238,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '61'
+ - '28'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/9d022e35-1614-42f7-97b7-594991c991ca/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/folders
response:
body:
- string: '{"id": "8eacc126-73a1-4b8e-9628-303da1071109", "displayName": "NewFolder",
- "workspaceId": "9d022e35-1614-42f7-97b7-594991c991ca"}'
+ string: '{"id": "af920fbb-67a8-4d40-989b-274524d46bf1", "displayName": "NewFolder",
+ "workspaceId": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -1241,17 +1257,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '129'
+ - '128'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:04:46 GMT
+ - Wed, 20 May 2026 09:12:59 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/9d022e35-1614-42f7-97b7-594991c991ca/folders/8eacc126-73a1-4b8e-9628-303da1071109
+ - https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/folders/af920fbb-67a8-4d40-989b-274524d46bf1
Pragma:
- no-cache
RequestId:
- - 36d8bd97-39d4-42da-a98b-a40d47585ca4
+ - 2666f08c-c02f-4332-b3c7-429ff2438d25
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1277,14 +1293,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1cb9157d-85d1-400b-81f4-149cbc93cf35/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/items
response:
body:
- string: '{"value": [{"id": "fc6c5c81-08f5-4655-85e7-9b302d7ad34a", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "1cb9157d-85d1-400b-81f4-149cbc93cf35", "folderId": "535bb037-4688-443a-b3f9-9049d6e65cdd"}]}'
+ string: '{"value": [{"id": "4b50eca0-32e7-4ae6-99b4-205fc6c9a106", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc",
+ "folderId": "93095a73-0e0b-4e72-81b7-4434e147e108"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1293,15 +1309,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '209'
+ - '197'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:04:47 GMT
+ - Wed, 20 May 2026 09:13:00 GMT
Pragma:
- no-cache
RequestId:
- - 44b796c8-5ffc-41a9-a565-8aa284890812
+ - 0e42fd47-f0d1-44d5-934a-0d0ab3247484
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1327,13 +1343,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1cb9157d-85d1-400b-81f4-149cbc93cf35/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "535bb037-4688-443a-b3f9-9049d6e65cdd", "displayName":
- "fabcli000003", "workspaceId": "1cb9157d-85d1-400b-81f4-149cbc93cf35"}]}'
+ string: '{"value": [{"id": "93095a73-0e0b-4e72-81b7-4434e147e108", "displayName":
+ "fabcli000003", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1342,15 +1358,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '145'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:04:48 GMT
+ - Wed, 20 May 2026 09:13:00 GMT
Pragma:
- no-cache
RequestId:
- - 53b6f969-f5b3-4650-b91d-4b5630dd9fc2
+ - 4f6d0960-8dca-49a9-bc9c-4d4cad556e64
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1376,13 +1392,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1cb9157d-85d1-400b-81f4-149cbc93cf35/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "535bb037-4688-443a-b3f9-9049d6e65cdd", "displayName":
- "fabcli000003", "workspaceId": "1cb9157d-85d1-400b-81f4-149cbc93cf35"}]}'
+ string: '{"value": [{"id": "93095a73-0e0b-4e72-81b7-4434e147e108", "displayName":
+ "fabcli000003", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1391,15 +1407,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '145'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:04:49 GMT
+ - Wed, 20 May 2026 09:13:01 GMT
Pragma:
- no-cache
RequestId:
- - 21f69240-cd05-43f4-a9d4-b1dd7780e201
+ - ceff5323-d45a-435d-810c-b90c5b85678d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1425,14 +1441,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1cb9157d-85d1-400b-81f4-149cbc93cf35/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/items
response:
body:
- string: '{"value": [{"id": "fc6c5c81-08f5-4655-85e7-9b302d7ad34a", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "1cb9157d-85d1-400b-81f4-149cbc93cf35", "folderId": "535bb037-4688-443a-b3f9-9049d6e65cdd"}]}'
+ string: '{"value": [{"id": "4b50eca0-32e7-4ae6-99b4-205fc6c9a106", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc",
+ "folderId": "93095a73-0e0b-4e72-81b7-4434e147e108"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1441,15 +1457,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '209'
+ - '197'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:04:49 GMT
+ - Wed, 20 May 2026 09:13:02 GMT
Pragma:
- no-cache
RequestId:
- - 42d153d0-880d-4d90-b440-4b249c89e5d2
+ - acea78a9-bd30-44f6-95f2-51caa8a14741
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1475,13 +1491,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1cb9157d-85d1-400b-81f4-149cbc93cf35/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "535bb037-4688-443a-b3f9-9049d6e65cdd", "displayName":
- "fabcli000003", "workspaceId": "1cb9157d-85d1-400b-81f4-149cbc93cf35"}]}'
+ string: '{"value": [{"id": "93095a73-0e0b-4e72-81b7-4434e147e108", "displayName":
+ "fabcli000003", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1490,15 +1506,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '145'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:04:50 GMT
+ - Wed, 20 May 2026 09:13:03 GMT
Pragma:
- no-cache
RequestId:
- - 40703c1b-7b81-4d17-bc77-105fffaa097d
+ - 2dc551cc-cf89-4e69-bcab-8478885ffd97
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1524,13 +1540,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1cb9157d-85d1-400b-81f4-149cbc93cf35/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "535bb037-4688-443a-b3f9-9049d6e65cdd", "displayName":
- "fabcli000003", "workspaceId": "1cb9157d-85d1-400b-81f4-149cbc93cf35"}]}'
+ string: '{"value": [{"id": "93095a73-0e0b-4e72-81b7-4434e147e108", "displayName":
+ "fabcli000003", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1539,15 +1555,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '145'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:04:51 GMT
+ - Wed, 20 May 2026 09:13:04 GMT
Pragma:
- no-cache
RequestId:
- - 906e717f-cd09-44f1-a98c-0f2ba6740612
+ - 2a941b22-b7da-4312-afdf-e23bec00e19d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1573,16 +1589,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "1cb9157d-85d1-400b-81f4-149cbc93cf35", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "9d022e35-1614-42f7-97b7-594991c991ca", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dd9447c2-71bb-48a5-8596-469daec598bc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1591,15 +1610,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:04:53 GMT
+ - Wed, 20 May 2026 09:13:05 GMT
Pragma:
- no-cache
RequestId:
- - 6231bb9a-51ad-448f-b5f1-7ded3ef99965
+ - 99c97c60-d758-4330-9459-838f6ccd188e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1625,13 +1644,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/9d022e35-1614-42f7-97b7-594991c991ca/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "8eacc126-73a1-4b8e-9628-303da1071109", "displayName":
- "NewFolder", "workspaceId": "9d022e35-1614-42f7-97b7-594991c991ca"}]}'
+ string: '{"value": [{"id": "af920fbb-67a8-4d40-989b-274524d46bf1", "displayName":
+ "NewFolder", "workspaceId": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1640,15 +1659,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '139'
+ - '140'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:04:53 GMT
+ - Wed, 20 May 2026 09:13:05 GMT
Pragma:
- no-cache
RequestId:
- - eb07af49-a45b-40e2-a9b0-a1f6061b47cb
+ - d20e8182-f4f0-4781-a4b0-502751f674e7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1674,9 +1693,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/9d022e35-1614-42f7-97b7-594991c991ca/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/items
response:
body:
string: '{"value": []}'
@@ -1692,11 +1711,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:04:54 GMT
+ - Wed, 20 May 2026 09:13:06 GMT
Pragma:
- no-cache
RequestId:
- - 214c8673-e9cc-4153-a2c5-34f3f3513eba
+ - ec846e9b-39ce-4ca8-8eb7-e1b5bb451569
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1722,9 +1741,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/9d022e35-1614-42f7-97b7-594991c991ca/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/items
response:
body:
string: '{"value": []}'
@@ -1740,11 +1759,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:04:54 GMT
+ - Wed, 20 May 2026 09:13:07 GMT
Pragma:
- no-cache
RequestId:
- - efc01687-e2ba-4250-bbd3-4ceb4857bb5f
+ - 0dc3589a-9fdc-472f-a953-c7d227e3b124
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1770,9 +1789,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/9d022e35-1614-42f7-97b7-594991c991ca/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/items
response:
body:
string: '{"value": []}'
@@ -1788,11 +1807,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:04:55 GMT
+ - Wed, 20 May 2026 09:13:08 GMT
Pragma:
- no-cache
RequestId:
- - 442a9001-572b-4351-b1fe-0dc3f5c4efc7
+ - 9a2a9645-82a8-4d0c-9780-3fd76620caad
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1818,14 +1837,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1cb9157d-85d1-400b-81f4-149cbc93cf35/items/fc6c5c81-08f5-4655-85e7-9b302d7ad34a
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/items/4b50eca0-32e7-4ae6-99b4-205fc6c9a106
response:
body:
- string: '{"id": "fc6c5c81-08f5-4655-85e7-9b302d7ad34a", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "1cb9157d-85d1-400b-81f4-149cbc93cf35", "folderId": "535bb037-4688-443a-b3f9-9049d6e65cdd"}'
+ string: '{"id": "4b50eca0-32e7-4ae6-99b4-205fc6c9a106", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc",
+ "folderId": "93095a73-0e0b-4e72-81b7-4434e147e108"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1834,17 +1853,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '197'
+ - '186'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:04:56 GMT
+ - Wed, 20 May 2026 09:13:09 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 76b1e788-24be-4094-935c-4de133cb413d
+ - 1729a025-30f2-4e74-b0ec-2b21bad91218
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1872,9 +1891,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/1cb9157d-85d1-400b-81f4-149cbc93cf35/items/fc6c5c81-08f5-4655-85e7-9b302d7ad34a/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/items/4b50eca0-32e7-4ae6-99b4-205fc6c9a106/getDefinition
response:
body:
string: 'null'
@@ -1890,13 +1909,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:04:58 GMT
+ - Wed, 20 May 2026 09:13:10 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6b913b16-5202-445b-878c-982db07f21f5
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/362085d3-8021-4c87-9406-40204f1ff860
Pragma:
- no-cache
RequestId:
- - aae5d6a9-ac51-4ef0-bbcc-68cd7a119b1d
+ - b4b634a9-0624-4e80-b839-3f947d6a1e75
Retry-After:
- '20'
Strict-Transport-Security:
@@ -1910,7 +1929,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - 6b913b16-5202-445b-878c-982db07f21f5
+ - 362085d3-8021-4c87-9406-40204f1ff860
status:
code: 202
message: Accepted
@@ -1926,13 +1945,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6b913b16-5202-445b-878c-982db07f21f5
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/362085d3-8021-4c87-9406-40204f1ff860
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:04:58.156057",
- "lastUpdatedTimeUtc": "2026-02-06T08:04:58.5156543", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:13:10.5646678",
+ "lastUpdatedTimeUtc": "2026-05-20T09:13:11.3051873", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -1942,17 +1961,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '128'
+ - '130'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:05:19 GMT
+ - Wed, 20 May 2026 09:13:31 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6b913b16-5202-445b-878c-982db07f21f5/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/362085d3-8021-4c87-9406-40204f1ff860/result
Pragma:
- no-cache
RequestId:
- - 13de7f2d-0e9c-4576-856a-47d3e27f862a
+ - c84a95de-a981-46d7-97be-60e6250a5ec7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1960,7 +1979,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - 6b913b16-5202-445b-878c-982db07f21f5
+ - 362085d3-8021-4c87-9406-40204f1ff860
status:
code: 200
message: OK
@@ -1976,14 +1995,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6b913b16-5202-445b-878c-982db07f21f5/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/362085d3-8021-4c87-9406-40204f1ff860/result
response:
body:
string: '{"definition": {"parts": [{"path": "notebook-content.py", "payload":
"IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
"payloadType": "InlineBase64"}]}}'
headers:
Access-Control-Expose-Headers:
@@ -1995,11 +2014,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 08:05:20 GMT
+ - Wed, 20 May 2026 09:13:32 GMT
Pragma:
- no-cache
RequestId:
- - 0e55af32-dd20-4fe4-b0e0-611052bbd8eb
+ - 2a5042c3-3230-42f7-b664-585c3c49f989
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -2012,10 +2031,10 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "Notebook", "displayName": "fabcli000004",
- "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
- "payloadType": "InlineBase64"}]}, "folderId": "8eacc126-73a1-4b8e-9628-303da1071109"}'
+ body: '{"type": "Notebook", "displayName": "fabcli000004", "definition": {"parts":
+ [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
+ "payloadType": "InlineBase64"}]}, "folderId": "af920fbb-67a8-4d40-989b-274524d46bf1"}'
headers:
Accept:
- '*/*'
@@ -2024,14 +2043,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1286'
-
+ - '1238'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/9d022e35-1614-42f7-97b7-594991c991ca/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/items
response:
body:
string: 'null'
@@ -2047,15 +2065,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:05:22 GMT
+ - Wed, 20 May 2026 09:13:34 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7eed67c6-f284-41f6-a366-f017aeec0d17
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f8f13f67-07b4-437a-abeb-20f39d0d3a89
Pragma:
- no-cache
RequestId:
- - fe4414b2-2781-4fa5-b62d-9e83ca75ca1d
+ - 80ee7d31-79e7-4f71-b843-62b2378b94e2
Retry-After:
- '20'
Strict-Transport-Security:
@@ -2069,7 +2087,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - 7eed67c6-f284-41f6-a366-f017aeec0d17
+ - f8f13f67-07b4-437a-abeb-20f39d0d3a89
status:
code: 202
message: Accepted
@@ -2085,13 +2103,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7eed67c6-f284-41f6-a366-f017aeec0d17
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f8f13f67-07b4-437a-abeb-20f39d0d3a89
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:05:21.999684",
- "lastUpdatedTimeUtc": "2026-02-06T08:05:23.4841001", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:13:33.4497174",
+ "lastUpdatedTimeUtc": "2026-05-20T09:13:35.1527783", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -2101,17 +2119,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '129'
+ - '132'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:05:43 GMT
+ - Wed, 20 May 2026 09:13:54 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7eed67c6-f284-41f6-a366-f017aeec0d17/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f8f13f67-07b4-437a-abeb-20f39d0d3a89/result
Pragma:
- no-cache
RequestId:
- - f6734e12-5eb2-45c5-8711-246d4fe04217
+ - df94b3c3-3419-4e5c-9f3d-57c087517122
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2119,7 +2137,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - 7eed67c6-f284-41f6-a366-f017aeec0d17
+ - f8f13f67-07b4-437a-abeb-20f39d0d3a89
status:
code: 200
message: OK
@@ -2135,14 +2153,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7eed67c6-f284-41f6-a366-f017aeec0d17/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f8f13f67-07b4-437a-abeb-20f39d0d3a89/result
response:
body:
- string: '{"id": "f5ef9671-6fbd-4bbb-96b6-67d2c8390ba4", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "9d022e35-1614-42f7-97b7-594991c991ca", "folderId": "8eacc126-73a1-4b8e-9628-303da1071109"}'
+ string: '{"id": "5a292323-fec9-458d-b445-9f9eb28e89f4", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c",
+ "folderId": "af920fbb-67a8-4d40-989b-274524d46bf1"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2153,11 +2171,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 08:05:44 GMT
+ - Wed, 20 May 2026 09:13:55 GMT
Pragma:
- no-cache
RequestId:
- - b1ab5a7e-23d0-44db-a733-78b3306baf86
+ - 9f6ba879-26e6-46bd-86fd-242cf0aa555b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -2181,14 +2199,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1cb9157d-85d1-400b-81f4-149cbc93cf35/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/items
response:
body:
- string: '{"value": [{"id": "fc6c5c81-08f5-4655-85e7-9b302d7ad34a", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "1cb9157d-85d1-400b-81f4-149cbc93cf35", "folderId": "535bb037-4688-443a-b3f9-9049d6e65cdd"}]}'
+ string: '{"value": [{"id": "4b50eca0-32e7-4ae6-99b4-205fc6c9a106", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc",
+ "folderId": "93095a73-0e0b-4e72-81b7-4434e147e108"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2197,15 +2215,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '209'
+ - '197'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:05:46 GMT
+ - Wed, 20 May 2026 09:13:57 GMT
Pragma:
- no-cache
RequestId:
- - efd36db8-46be-4bef-99b8-6a7d191822c4
+ - 9bddbb66-88f6-434c-b1d5-3ad59d65b8b7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2231,13 +2249,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1cb9157d-85d1-400b-81f4-149cbc93cf35/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "535bb037-4688-443a-b3f9-9049d6e65cdd", "displayName":
- "fabcli000003", "workspaceId": "1cb9157d-85d1-400b-81f4-149cbc93cf35"}]}'
+ string: '{"value": [{"id": "93095a73-0e0b-4e72-81b7-4434e147e108", "displayName":
+ "fabcli000003", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2246,15 +2264,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '145'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:05:46 GMT
+ - Wed, 20 May 2026 09:13:57 GMT
Pragma:
- no-cache
RequestId:
- - b51f8264-5b10-4e8e-89c3-289f68e48f75
+ - 7724e407-77f0-4604-a3b1-14831aa30c35
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2280,13 +2298,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1cb9157d-85d1-400b-81f4-149cbc93cf35/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "535bb037-4688-443a-b3f9-9049d6e65cdd", "displayName":
- "fabcli000003", "workspaceId": "1cb9157d-85d1-400b-81f4-149cbc93cf35"}]}'
+ string: '{"value": [{"id": "93095a73-0e0b-4e72-81b7-4434e147e108", "displayName":
+ "fabcli000003", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2295,15 +2313,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '145'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:05:47 GMT
+ - Wed, 20 May 2026 09:13:57 GMT
Pragma:
- no-cache
RequestId:
- - 8ed51ead-745b-4d75-88b0-3d8af03b961f
+ - 994059ee-33fd-4b66-8497-7772df7d140b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2329,16 +2347,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "1cb9157d-85d1-400b-81f4-149cbc93cf35", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "9d022e35-1614-42f7-97b7-594991c991ca", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dd9447c2-71bb-48a5-8596-469daec598bc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2347,15 +2368,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:05:48 GMT
+ - Wed, 20 May 2026 09:13:59 GMT
Pragma:
- no-cache
RequestId:
- - 0f8123c8-765d-4208-8f45-061103b07c37
+ - 857e278d-891c-44b6-b8c1-31bc7d5eb7c1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2381,14 +2402,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/9d022e35-1614-42f7-97b7-594991c991ca/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/items
response:
body:
- string: '{"value": [{"id": "f5ef9671-6fbd-4bbb-96b6-67d2c8390ba4", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "9d022e35-1614-42f7-97b7-594991c991ca", "folderId": "8eacc126-73a1-4b8e-9628-303da1071109"}]}'
+ string: '{"value": [{"id": "5a292323-fec9-458d-b445-9f9eb28e89f4", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c",
+ "folderId": "af920fbb-67a8-4d40-989b-274524d46bf1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2397,15 +2418,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '209'
+ - '196'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:05:49 GMT
+ - Wed, 20 May 2026 09:14:00 GMT
Pragma:
- no-cache
RequestId:
- - 796a8b2c-ed00-4ce0-a1b1-38879df31e83
+ - bec27df3-4f7b-4e32-aa76-2880e8a79563
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2431,13 +2452,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/9d022e35-1614-42f7-97b7-594991c991ca/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "8eacc126-73a1-4b8e-9628-303da1071109", "displayName":
- "NewFolder", "workspaceId": "9d022e35-1614-42f7-97b7-594991c991ca"}]}'
+ string: '{"value": [{"id": "af920fbb-67a8-4d40-989b-274524d46bf1", "displayName":
+ "NewFolder", "workspaceId": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2446,15 +2467,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '139'
+ - '140'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:05:50 GMT
+ - Wed, 20 May 2026 09:14:01 GMT
Pragma:
- no-cache
RequestId:
- - 301d7e0c-f95a-442c-ab36-037b823a16e2
+ - 8866ef14-c05b-4b6f-b4e5-63f1e00691b9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2480,13 +2501,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/9d022e35-1614-42f7-97b7-594991c991ca/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "8eacc126-73a1-4b8e-9628-303da1071109", "displayName":
- "NewFolder", "workspaceId": "9d022e35-1614-42f7-97b7-594991c991ca"}]}'
+ string: '{"value": [{"id": "af920fbb-67a8-4d40-989b-274524d46bf1", "displayName":
+ "NewFolder", "workspaceId": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2495,15 +2516,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '139'
+ - '140'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:05:51 GMT
+ - Wed, 20 May 2026 09:14:02 GMT
Pragma:
- no-cache
RequestId:
- - 4c53b8f6-c08f-4780-a291-fbffdbaf93d7
+ - 8e26201b-e240-478e-ba69-a467d15beb5f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2529,16 +2550,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "1cb9157d-85d1-400b-81f4-149cbc93cf35", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "9d022e35-1614-42f7-97b7-594991c991ca", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dd9447c2-71bb-48a5-8596-469daec598bc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2547,15 +2571,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:05:51 GMT
+ - Wed, 20 May 2026 09:14:03 GMT
Pragma:
- no-cache
RequestId:
- - 73254683-ce5c-49cc-a2dc-ce31d1fc3d93
+ - 67d4392b-d4e3-4faa-88ea-7de6d9e6d92e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2581,13 +2605,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/9d022e35-1614-42f7-97b7-594991c991ca/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "8eacc126-73a1-4b8e-9628-303da1071109", "displayName":
- "NewFolder", "workspaceId": "9d022e35-1614-42f7-97b7-594991c991ca"}]}'
+ string: '{"value": [{"id": "af920fbb-67a8-4d40-989b-274524d46bf1", "displayName":
+ "NewFolder", "workspaceId": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2596,15 +2620,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '139'
+ - '140'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:05:53 GMT
+ - Wed, 20 May 2026 09:14:03 GMT
Pragma:
- no-cache
RequestId:
- - 1b7fb336-e655-49d7-8ec7-1d311c38d89c
+ - 1c418b0b-0b63-490a-b609-30493bdbdfde
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2630,14 +2654,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/9d022e35-1614-42f7-97b7-594991c991ca/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/items
response:
body:
- string: '{"value": [{"id": "f5ef9671-6fbd-4bbb-96b6-67d2c8390ba4", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "9d022e35-1614-42f7-97b7-594991c991ca", "folderId": "8eacc126-73a1-4b8e-9628-303da1071109"}]}'
+ string: '{"value": [{"id": "5a292323-fec9-458d-b445-9f9eb28e89f4", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c",
+ "folderId": "af920fbb-67a8-4d40-989b-274524d46bf1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2646,15 +2670,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '209'
+ - '196'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:05:53 GMT
+ - Wed, 20 May 2026 09:14:04 GMT
Pragma:
- no-cache
RequestId:
- - d34ec4ad-713d-49f9-9b88-7977442026fa
+ - bd6fc3ae-eee7-4f38-9f0d-a844d289a5bf
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2680,13 +2704,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/9d022e35-1614-42f7-97b7-594991c991ca/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "8eacc126-73a1-4b8e-9628-303da1071109", "displayName":
- "NewFolder", "workspaceId": "9d022e35-1614-42f7-97b7-594991c991ca"}]}'
+ string: '{"value": [{"id": "af920fbb-67a8-4d40-989b-274524d46bf1", "displayName":
+ "NewFolder", "workspaceId": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2695,15 +2719,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '139'
+ - '140'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:05:54 GMT
+ - Wed, 20 May 2026 09:14:05 GMT
Pragma:
- no-cache
RequestId:
- - 9980a13f-a9a5-4c7d-8210-f775c5feadde
+ - c8fb3a30-d7ad-4e6d-8dfd-035e4ac96e5b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2729,13 +2753,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/9d022e35-1614-42f7-97b7-594991c991ca/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "8eacc126-73a1-4b8e-9628-303da1071109", "displayName":
- "NewFolder", "workspaceId": "9d022e35-1614-42f7-97b7-594991c991ca"}]}'
+ string: '{"value": [{"id": "af920fbb-67a8-4d40-989b-274524d46bf1", "displayName":
+ "NewFolder", "workspaceId": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2744,15 +2768,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '139'
+ - '140'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:05:55 GMT
+ - Wed, 20 May 2026 09:14:05 GMT
Pragma:
- no-cache
RequestId:
- - f0dbc9f5-a075-4a35-a30c-d2975ef3b274
+ - a29d74da-e704-45b5-99db-1be40a71631b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2778,16 +2802,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "1cb9157d-85d1-400b-81f4-149cbc93cf35", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "9d022e35-1614-42f7-97b7-594991c991ca", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dd9447c2-71bb-48a5-8596-469daec598bc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2796,15 +2823,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:05:55 GMT
+ - Wed, 20 May 2026 09:14:06 GMT
Pragma:
- no-cache
RequestId:
- - 108e5143-825a-4a92-a380-ae51ca306884
+ - a04eaef8-58e8-43fd-87bd-aaa883fed172
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2830,13 +2857,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1cb9157d-85d1-400b-81f4-149cbc93cf35/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "535bb037-4688-443a-b3f9-9049d6e65cdd", "displayName":
- "fabcli000003", "workspaceId": "1cb9157d-85d1-400b-81f4-149cbc93cf35"}]}'
+ string: '{"value": [{"id": "93095a73-0e0b-4e72-81b7-4434e147e108", "displayName":
+ "fabcli000003", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2845,15 +2872,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '145'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:05:56 GMT
+ - Wed, 20 May 2026 09:14:07 GMT
Pragma:
- no-cache
RequestId:
- - b7f2cdc0-1d04-492a-9334-2ef20b90b982
+ - 72a474e8-e6a5-4c36-aced-72bb55ed007b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2879,14 +2906,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1cb9157d-85d1-400b-81f4-149cbc93cf35/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/items
response:
body:
- string: '{"value": [{"id": "fc6c5c81-08f5-4655-85e7-9b302d7ad34a", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "1cb9157d-85d1-400b-81f4-149cbc93cf35", "folderId": "535bb037-4688-443a-b3f9-9049d6e65cdd"}]}'
+ string: '{"value": [{"id": "4b50eca0-32e7-4ae6-99b4-205fc6c9a106", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc",
+ "folderId": "93095a73-0e0b-4e72-81b7-4434e147e108"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2895,15 +2922,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '209'
+ - '197'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:05:57 GMT
+ - Wed, 20 May 2026 09:14:08 GMT
Pragma:
- no-cache
RequestId:
- - a0f6e272-6ee0-4947-81a5-d33e30286a1e
+ - 3be00ef0-defd-4ce2-bda5-caefd7c9dba1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2929,13 +2956,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1cb9157d-85d1-400b-81f4-149cbc93cf35/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "535bb037-4688-443a-b3f9-9049d6e65cdd", "displayName":
- "fabcli000003", "workspaceId": "1cb9157d-85d1-400b-81f4-149cbc93cf35"}]}'
+ string: '{"value": [{"id": "93095a73-0e0b-4e72-81b7-4434e147e108", "displayName":
+ "fabcli000003", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2944,15 +2971,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '145'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:05:59 GMT
+ - Wed, 20 May 2026 09:14:09 GMT
Pragma:
- no-cache
RequestId:
- - efe5ddb6-3821-4196-b7c1-1a6b4225fc3e
+ - c3dab100-9d31-44f0-98da-18f62991bc54
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2980,9 +3007,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/1cb9157d-85d1-400b-81f4-149cbc93cf35/items/fc6c5c81-08f5-4655-85e7-9b302d7ad34a
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/items/4b50eca0-32e7-4ae6-99b4-205fc6c9a106
response:
body:
string: ''
@@ -2998,11 +3025,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:05:59 GMT
+ - Wed, 20 May 2026 09:14:11 GMT
Pragma:
- no-cache
RequestId:
- - 63671653-fb9e-4b31-a53b-4ce782d95b1d
+ - 8ebc4a17-58ae-44eb-acd2-fa23aa67bc2a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3028,16 +3055,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "1cb9157d-85d1-400b-81f4-149cbc93cf35", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "9d022e35-1614-42f7-97b7-594991c991ca", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dd9447c2-71bb-48a5-8596-469daec598bc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3046,15 +3076,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:06:00 GMT
+ - Wed, 20 May 2026 09:14:12 GMT
Pragma:
- no-cache
RequestId:
- - 12e88d19-6919-4cd7-adfd-23146106a94b
+ - 17fae42b-bada-4f2f-9898-dd399f5aa620
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3080,13 +3110,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1cb9157d-85d1-400b-81f4-149cbc93cf35/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "535bb037-4688-443a-b3f9-9049d6e65cdd", "displayName":
- "fabcli000003", "workspaceId": "1cb9157d-85d1-400b-81f4-149cbc93cf35"}]}'
+ string: '{"value": [{"id": "93095a73-0e0b-4e72-81b7-4434e147e108", "displayName":
+ "fabcli000003", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3095,15 +3125,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '145'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:06:01 GMT
+ - Wed, 20 May 2026 09:14:12 GMT
Pragma:
- no-cache
RequestId:
- - 599df93d-da15-4234-9223-9f75af5d5add
+ - 4706c4f0-cc0a-4078-af08-e3bb8f0d8650
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3131,9 +3161,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/1cb9157d-85d1-400b-81f4-149cbc93cf35/folders/535bb037-4688-443a-b3f9-9049d6e65cdd
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/folders/93095a73-0e0b-4e72-81b7-4434e147e108
response:
body:
string: ''
@@ -3149,11 +3179,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:06:01 GMT
+ - Wed, 20 May 2026 09:14:13 GMT
Pragma:
- no-cache
RequestId:
- - 17ada550-7312-4194-a24d-616e000a2938
+ - 41608165-8373-4e72-a5be-e5d7dfa75110
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3179,16 +3209,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "1cb9157d-85d1-400b-81f4-149cbc93cf35", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "9d022e35-1614-42f7-97b7-594991c991ca", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dd9447c2-71bb-48a5-8596-469daec598bc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3197,15 +3230,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:06:02 GMT
+ - Wed, 20 May 2026 09:14:14 GMT
Pragma:
- no-cache
RequestId:
- - e17447ed-1701-4f15-9296-1a68d2d9d49d
+ - 410999b0-6d55-41ca-bc81-adb962a75bd8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3231,9 +3264,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1cb9157d-85d1-400b-81f4-149cbc93cf35/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/items
response:
body:
string: '{"value": []}'
@@ -3249,11 +3282,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:06:03 GMT
+ - Wed, 20 May 2026 09:14:14 GMT
Pragma:
- no-cache
RequestId:
- - 3d3d0cef-7e35-4a50-a381-279d1b76c408
+ - 373fa25f-8749-490e-8e22-20c24a7d86a9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3281,9 +3314,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/1cb9157d-85d1-400b-81f4-149cbc93cf35
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc
response:
body:
string: ''
@@ -3299,11 +3332,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:06:03 GMT
+ - Wed, 20 May 2026 09:14:16 GMT
Pragma:
- no-cache
RequestId:
- - 343ef7f7-c354-4172-90fb-40b030bbd43c
+ - 1e8f3ae9-c604-4779-811d-ab1385d52c13
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3329,15 +3362,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "9d022e35-1614-42f7-97b7-594991c991ca", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3346,15 +3381,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2840'
+ - '2657'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:06:04 GMT
+ - Wed, 20 May 2026 09:14:17 GMT
Pragma:
- no-cache
RequestId:
- - fafa4006-744d-41fd-9302-bf8276230948
+ - c5159616-1d29-4f84-a7fb-f2aaf37cf126
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3380,14 +3415,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/9d022e35-1614-42f7-97b7-594991c991ca/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/items
response:
body:
- string: '{"value": [{"id": "f5ef9671-6fbd-4bbb-96b6-67d2c8390ba4", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "9d022e35-1614-42f7-97b7-594991c991ca", "folderId": "8eacc126-73a1-4b8e-9628-303da1071109"}]}'
+ string: '{"value": [{"id": "5a292323-fec9-458d-b445-9f9eb28e89f4", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c",
+ "folderId": "af920fbb-67a8-4d40-989b-274524d46bf1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3396,15 +3431,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '209'
+ - '196'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:06:06 GMT
+ - Wed, 20 May 2026 09:14:17 GMT
Pragma:
- no-cache
RequestId:
- - 2c32343a-61e8-4a89-9be1-cda2c1d7a9d3
+ - 6a653248-7e19-4b9b-99c7-ecc92b9e1454
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3430,53 +3465,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/9d022e35-1614-42f7-97b7-594991c991ca/folders?recursive=True
- response:
- body:
- string: '{"requestId": "4db7733d-f578-40db-9b7b-99224902c508", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 8:06:47 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 08:06:05 GMT
- RequestId:
- - 4db7733d-f578-40db-9b7b-99224902c508
- Retry-After:
- - '41'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/9d022e35-1614-42f7-97b7-594991c991ca/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "8eacc126-73a1-4b8e-9628-303da1071109", "displayName":
- "NewFolder", "workspaceId": "9d022e35-1614-42f7-97b7-594991c991ca"}]}'
+ string: '{"value": [{"id": "af920fbb-67a8-4d40-989b-274524d46bf1", "displayName":
+ "NewFolder", "workspaceId": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3485,15 +3480,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '139'
+ - '140'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:06:50 GMT
+ - Wed, 20 May 2026 09:14:19 GMT
Pragma:
- no-cache
RequestId:
- - 6e274404-05f2-4b7e-9bc7-1a46bc97a85d
+ - d720f11b-664a-4918-8cdc-364d2dc33c8f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3521,9 +3516,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/9d022e35-1614-42f7-97b7-594991c991ca
+ uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c
response:
body:
string: ''
@@ -3539,11 +3534,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:06:51 GMT
+ - Wed, 20 May 2026 09:14:20 GMT
Pragma:
- no-cache
RequestId:
- - d1385f2d-0bf3-453c-b73b-79b3226d61a4
+ - c39e0fa1-edb5-41e5-b090-a50fd2f20585
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_same_workspace_success.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_same_workspace_success.yaml
index dbc50a2e8..a22698b62 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_same_workspace_success.yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_same_workspace_success.yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:06:52 GMT
+ - Wed, 20 May 2026 09:14:20 GMT
Pragma:
- no-cache
RequestId:
- - c92dfe5b-7c01-4bb9-8afa-0f582ac4976e
+ - e2408a6e-2985-47f0-aa7e-6cca589c7bb9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,14 +62,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -77,15 +79,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:06:53 GMT
+ - Wed, 20 May 2026 09:14:21 GMT
Pragma:
- no-cache
RequestId:
- - e72a88fc-458e-49ed-b73d-e8478ac788fd
+ - 9687fff1-2879-46cd-bb73-79dcdf13e4d6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -111,7 +113,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -127,15 +129,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '427'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:06:59 GMT
+ - Wed, 20 May 2026 09:14:25 GMT
Pragma:
- no-cache
RequestId:
- - 229615dc-e8da-4e76-abe1-2a3ff1fefcb0
+ - e8171f86-2c7d-4e59-92b5-47d3f1067997
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -160,16 +162,16 @@ interactions:
- keep-alive
Content-Length:
- '89'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "43f38a69-aa95-4193-b265-3ac2028a6a5d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -178,17 +180,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '167'
+ - '155'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:05 GMT
+ - Wed, 20 May 2026 09:14:33 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d
+ - https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae
Pragma:
- no-cache
RequestId:
- - 12e80c29-0498-42ae-b068-76bf363592b3
+ - 39503790-c8a8-4b0f-8fd9-0f16949b1e91
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -214,15 +216,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "43f38a69-aa95-4193-b265-3ac2028a6a5d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -231,15 +235,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2843'
+ - '2657'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:06 GMT
+ - Wed, 20 May 2026 09:14:35 GMT
Pragma:
- no-cache
RequestId:
- - c510b241-13af-408b-863d-e2a28c6b51fc
+ - be38fb66-1ec0-430e-a21e-44af097a3d79
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -265,9 +269,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -283,11 +287,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:07 GMT
+ - Wed, 20 May 2026 09:14:35 GMT
Pragma:
- no-cache
RequestId:
- - 43ad2677-ac07-4ee6-b227-0ab60c6283d4
+ - e81936da-d1f7-4e3f-aa22-a89cf7f79652
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -313,9 +317,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -331,11 +335,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:08 GMT
+ - Wed, 20 May 2026 09:14:36 GMT
Pragma:
- no-cache
RequestId:
- - 8859b09b-a291-4a64-90b4-8b31ea9e54ae
+ - cf507dc6-8578-426c-b394-31ef49e50f79
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -359,17 +363,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders
response:
body:
- string: '{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName": "fabcli000002",
- "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}'
+ string: '{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName": "fabcli000002",
+ "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -378,17 +382,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '130'
+ - '132'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:09 GMT
+ - Wed, 20 May 2026 09:14:37 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders/fcdedc27-b0d3-494f-8ffa-c36ec15a5887
+ - https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders/f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a
Pragma:
- no-cache
RequestId:
- - 9d079626-e409-4bd0-b529-f23c979137ed
+ - d815a309-ce3f-4c9e-831c-68942048a069
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -414,15 +418,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "43f38a69-aa95-4193-b265-3ac2028a6a5d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -431,15 +437,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2843'
+ - '2657'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:10 GMT
+ - Wed, 20 May 2026 09:14:38 GMT
Pragma:
- no-cache
RequestId:
- - bdcc58d0-0e19-4b69-b63c-a93c813ea24f
+ - 36477b2e-37f3-49fd-8fb1-da820968da50
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -465,13 +471,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName":
- "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}'
+ string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName":
+ "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -480,15 +486,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '141'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:11 GMT
+ - Wed, 20 May 2026 09:14:38 GMT
Pragma:
- no-cache
RequestId:
- - 6cd5f567-1aa3-44e0-b57e-7c4effd0bb2a
+ - 0950e70b-c93d-4728-afc3-ab2b5e27219d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -514,9 +520,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/items
response:
body:
string: '{"value": []}'
@@ -532,11 +538,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:11 GMT
+ - Wed, 20 May 2026 09:14:38 GMT
Pragma:
- no-cache
RequestId:
- - 82655331-2680-41f0-8f49-7054799636a9
+ - 64d3fe1a-0299-4ef4-9f4b-805d532b169f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -562,9 +568,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/items
response:
body:
string: '{"value": []}'
@@ -580,11 +586,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:12 GMT
+ - Wed, 20 May 2026 09:14:40 GMT
Pragma:
- no-cache
RequestId:
- - 3f82db06-bb06-4815-a6ab-83a02bbfec45
+ - 6cf0fffd-8acd-4977-a985-8e561e3b0012
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -599,9 +605,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000003", "type":
- "Notebook", "folderId": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "definition":
- {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
+ body: '{"displayName": "fabcli000003", "type": "Notebook", "folderId": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a",
+ "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
"payloadType": "InlineBase64"}]}}'
headers:
Accept:
@@ -612,13 +617,12 @@ interactions:
- keep-alive
Content-Length:
- '765'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/notebooks
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/notebooks
response:
body:
string: 'null'
@@ -634,15 +638,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:14 GMT
+ - Wed, 20 May 2026 09:14:41 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/779c763c-4cb0-4821-bc48-771985b10e2b
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/38e7b3a7-741b-4472-8680-4c1b62d63225
Pragma:
- no-cache
RequestId:
- - 6c844e66-d7f3-4181-8eba-4ba7fae651d4
+ - 3b2a6593-c852-4ae2-ac9e-1e2cb0b0e9e6
Retry-After:
- '20'
Strict-Transport-Security:
@@ -656,7 +660,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - 779c763c-4cb0-4821-bc48-771985b10e2b
+ - 38e7b3a7-741b-4472-8680-4c1b62d63225
status:
code: 202
message: Accepted
@@ -672,13 +676,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/779c763c-4cb0-4821-bc48-771985b10e2b
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/38e7b3a7-741b-4472-8680-4c1b62d63225
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:07:14.0641335",
- "lastUpdatedTimeUtc": "2026-02-06T08:07:15.5954188", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:14:41.1876165",
+ "lastUpdatedTimeUtc": "2026-05-20T09:14:43.3036398", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -692,13 +696,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:36 GMT
+ - Wed, 20 May 2026 09:15:02 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/779c763c-4cb0-4821-bc48-771985b10e2b/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/38e7b3a7-741b-4472-8680-4c1b62d63225/result
Pragma:
- no-cache
RequestId:
- - ca49d007-2820-4626-9c9a-70ba7622555b
+ - 224212bd-debb-4d82-bad1-79c6c4afc102
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -706,7 +710,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - 779c763c-4cb0-4821-bc48-771985b10e2b
+ - 38e7b3a7-741b-4472-8680-4c1b62d63225
status:
code: 200
message: OK
@@ -722,14 +726,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/779c763c-4cb0-4821-bc48-771985b10e2b/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/38e7b3a7-741b-4472-8680-4c1b62d63225/result
response:
body:
- string: '{"id": "a96e8cf6-2653-4097-9363-bb9d28960d02", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "43f38a69-aa95-4193-b265-3ac2028a6a5d", "folderId": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887"}'
+ string: '{"id": "b59fd03e-912f-40be-bc72-64a5c2268b66", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae",
+ "folderId": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -740,11 +744,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 08:07:37 GMT
+ - Wed, 20 May 2026 09:15:02 GMT
Pragma:
- no-cache
RequestId:
- - 114b98e9-ac08-4892-b5e2-ad140d0b426c
+ - 386a8f3e-ccf1-414c-9a42-cb2ef5dd1409
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -768,15 +772,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "43f38a69-aa95-4193-b265-3ac2028a6a5d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -785,15 +791,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2843'
+ - '2657'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:38 GMT
+ - Wed, 20 May 2026 09:15:04 GMT
Pragma:
- no-cache
RequestId:
- - c1f7034f-f6c0-4ec2-8b6f-ac457c62da97
+ - 4b2c4536-8c90-4907-9226-5bef3f64850a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -819,13 +825,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName":
- "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}'
+ string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName":
+ "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -834,15 +840,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '141'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:38 GMT
+ - Wed, 20 May 2026 09:15:05 GMT
Pragma:
- no-cache
RequestId:
- - 43efd509-5963-43b5-9390-82fdd4b75f90
+ - 0708b11c-5c7f-43dd-a5ca-e045785efe0c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -868,15 +874,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "43f38a69-aa95-4193-b265-3ac2028a6a5d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -885,15 +893,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2843'
+ - '2657'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:40 GMT
+ - Wed, 20 May 2026 09:15:06 GMT
Pragma:
- no-cache
RequestId:
- - fa382e2d-c9c2-4c19-ac45-1785085afbfc
+ - 2bbc6ce0-3824-4625-8032-05782ac07bee
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -919,15 +927,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "43f38a69-aa95-4193-b265-3ac2028a6a5d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -936,15 +946,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2843'
+ - '2657'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:40 GMT
+ - Wed, 20 May 2026 09:15:06 GMT
Pragma:
- no-cache
RequestId:
- - b024b21f-3cc2-42cb-b4fe-4e5c638dfdd9
+ - d3238653-91e4-475f-9a4e-6c0b8f3e0e73
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -970,13 +980,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName":
- "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}'
+ string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName":
+ "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -985,15 +995,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '141'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:42 GMT
+ - Wed, 20 May 2026 09:15:06 GMT
Pragma:
- no-cache
RequestId:
- - 984c00e2-aab1-418c-b25e-7042b9f135ea
+ - a0ee9491-0597-4273-9d2b-2b165b33dff8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1019,13 +1029,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName":
- "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}'
+ string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName":
+ "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1034,15 +1044,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '141'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:43 GMT
+ - Wed, 20 May 2026 09:15:07 GMT
Pragma:
- no-cache
RequestId:
- - 50d577af-2f00-425d-b135-43f17756dcb9
+ - facca48f-5118-424c-9160-00be937ec75f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1066,17 +1076,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '73'
+ - '40'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders
response:
body:
- string: '{"id": "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy",
- "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}'
+ string: '{"id": "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy",
+ "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -1085,17 +1095,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '133'
+ - '136'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:43 GMT
+ - Wed, 20 May 2026 09:15:08 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders/f844a32a-5b75-4f6e-9b5f-3bbad08950ab
+ - https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders/403eae67-8f7d-473d-aaee-4b87df873d4d
Pragma:
- no-cache
RequestId:
- - 00b51ba4-cb5e-49d0-a701-63ec7ac24508
+ - c8f3a924-21dd-43a9-bb3a-487ed6f719dc
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1121,14 +1131,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/items
response:
body:
- string: '{"value": [{"id": "a96e8cf6-2653-4097-9363-bb9d28960d02", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "43f38a69-aa95-4193-b265-3ac2028a6a5d", "folderId": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887"}]}'
+ string: '{"value": [{"id": "b59fd03e-912f-40be-bc72-64a5c2268b66", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae",
+ "folderId": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1137,15 +1147,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '207'
+ - '194'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:44 GMT
+ - Wed, 20 May 2026 09:15:09 GMT
Pragma:
- no-cache
RequestId:
- - 09e28757-167c-4f95-a7da-a957fe74b70f
+ - 2a584329-ca2f-465b-a4cb-bf1eb212187c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1171,15 +1181,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName":
- "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id":
- "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy",
- "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}'
+ string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName":
+ "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id":
+ "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy",
+ "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1188,15 +1198,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '180'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:45 GMT
+ - Wed, 20 May 2026 09:15:09 GMT
Pragma:
- no-cache
RequestId:
- - ca998d88-d116-4277-ac4f-138331626c5b
+ - 2c868c84-46fa-4002-bfe7-0f933f5f6571
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1222,15 +1232,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName":
- "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id":
- "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy",
- "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}'
+ string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName":
+ "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id":
+ "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy",
+ "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1239,15 +1249,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '180'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:46 GMT
+ - Wed, 20 May 2026 09:15:10 GMT
Pragma:
- no-cache
RequestId:
- - c218199f-cd29-4c80-97f5-b73b3fe89c75
+ - 6417bb65-7152-4181-8eac-e38c1f82c7e6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1273,14 +1283,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/items
response:
body:
- string: '{"value": [{"id": "a96e8cf6-2653-4097-9363-bb9d28960d02", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "43f38a69-aa95-4193-b265-3ac2028a6a5d", "folderId": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887"}]}'
+ string: '{"value": [{"id": "b59fd03e-912f-40be-bc72-64a5c2268b66", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae",
+ "folderId": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1289,15 +1299,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '207'
+ - '194'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:46 GMT
+ - Wed, 20 May 2026 09:15:11 GMT
Pragma:
- no-cache
RequestId:
- - dc0e8588-ced9-4298-a37b-64c13ecae276
+ - 9ff5512c-15f5-4a7e-b58d-51a640b99414
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1323,15 +1333,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName":
- "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id":
- "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy",
- "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}'
+ string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName":
+ "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id":
+ "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy",
+ "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1340,15 +1350,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '180'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:47 GMT
+ - Wed, 20 May 2026 09:15:11 GMT
Pragma:
- no-cache
RequestId:
- - 49cf5dbd-de31-4e9c-90f0-8b92f93927f8
+ - dee00603-845a-432e-921f-b8b430438c42
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1374,55 +1384,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True
- response:
- body:
- string: '{"requestId": "4b181da6-bfff-4f01-bba2-678a28d03dbc", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 8:07:51 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 08:07:48 GMT
- RequestId:
- - 4b181da6-bfff-4f01-bba2-678a28d03dbc
- Retry-After:
- - '2'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName":
- "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id":
- "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy",
- "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}'
+ string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName":
+ "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id":
+ "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy",
+ "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1431,15 +1401,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '180'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:51 GMT
+ - Wed, 20 May 2026 09:15:13 GMT
Pragma:
- no-cache
RequestId:
- - 3ff28c69-2bcc-4b93-bc98-fbb470030490
+ - d2f8862a-f63e-4f1c-8d90-a74e9d4d15e2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1465,15 +1435,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "43f38a69-aa95-4193-b265-3ac2028a6a5d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1482,15 +1454,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2843'
+ - '2657'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:52 GMT
+ - Wed, 20 May 2026 09:15:13 GMT
Pragma:
- no-cache
RequestId:
- - 108a0abb-ce14-4272-a886-515964eaf24d
+ - efce5ae5-fde6-471f-a565-b3f205162a2a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1516,15 +1488,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName":
- "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id":
- "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy",
- "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}'
+ string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName":
+ "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id":
+ "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy",
+ "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1533,15 +1505,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '180'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:53 GMT
+ - Wed, 20 May 2026 09:15:14 GMT
Pragma:
- no-cache
RequestId:
- - a76729e1-5552-4f64-b1e8-29cc3490746e
+ - a246890d-e69f-4046-99dc-fd7829749b50
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1567,14 +1539,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/items
response:
body:
- string: '{"value": [{"id": "a96e8cf6-2653-4097-9363-bb9d28960d02", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "43f38a69-aa95-4193-b265-3ac2028a6a5d", "folderId": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887"}]}'
+ string: '{"value": [{"id": "b59fd03e-912f-40be-bc72-64a5c2268b66", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae",
+ "folderId": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1583,15 +1555,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '207'
+ - '194'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:53 GMT
+ - Wed, 20 May 2026 09:15:15 GMT
Pragma:
- no-cache
RequestId:
- - 71efcbf2-16f8-48b1-9e5f-6a97c6df3eba
+ - b468f1b0-8ec7-4f16-afbf-0acfce2ff082
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1617,15 +1589,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName":
- "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id":
- "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy",
- "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}'
+ string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName":
+ "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id":
+ "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy",
+ "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1634,15 +1606,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '180'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:54 GMT
+ - Wed, 20 May 2026 09:15:16 GMT
Pragma:
- no-cache
RequestId:
- - 2af70adf-8bf0-4b6b-9249-c9fff495508f
+ - 83bfeadf-f77e-4837-be5e-4be9f030e861
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1668,14 +1640,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/items
response:
body:
- string: '{"value": [{"id": "a96e8cf6-2653-4097-9363-bb9d28960d02", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "43f38a69-aa95-4193-b265-3ac2028a6a5d", "folderId": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887"}]}'
+ string: '{"value": [{"id": "b59fd03e-912f-40be-bc72-64a5c2268b66", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae",
+ "folderId": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1684,15 +1656,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '207'
+ - '194'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:56 GMT
+ - Wed, 20 May 2026 09:15:17 GMT
Pragma:
- no-cache
RequestId:
- - b098b6f4-9e8c-4770-b498-3723a89f259c
+ - ec581a8f-4c07-4636-a73d-208b8834f18c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1718,15 +1690,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName":
- "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id":
- "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy",
- "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}'
+ string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName":
+ "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id":
+ "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy",
+ "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1735,15 +1707,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '180'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:56 GMT
+ - Wed, 20 May 2026 09:15:18 GMT
Pragma:
- no-cache
RequestId:
- - d810cdbc-f3dc-45fb-91a6-dd43b0f78e19
+ - fa987c38-fc0c-4d8f-bd3b-8e665790d863
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1769,14 +1741,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/items
response:
body:
- string: '{"value": [{"id": "a96e8cf6-2653-4097-9363-bb9d28960d02", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "43f38a69-aa95-4193-b265-3ac2028a6a5d", "folderId": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887"}]}'
+ string: '{"value": [{"id": "b59fd03e-912f-40be-bc72-64a5c2268b66", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae",
+ "folderId": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1785,15 +1757,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '207'
+ - '194'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:57 GMT
+ - Wed, 20 May 2026 09:15:18 GMT
Pragma:
- no-cache
RequestId:
- - 1af865cf-49f6-4ed2-9ab6-a567747d5752
+ - 81698678-b77d-46f4-9153-733fdeedc927
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1819,15 +1791,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName":
- "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id":
- "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy",
- "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}'
+ string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName":
+ "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id":
+ "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy",
+ "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1836,15 +1808,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '180'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:58 GMT
+ - Wed, 20 May 2026 09:15:20 GMT
Pragma:
- no-cache
RequestId:
- - c3c1186a-5ca9-4683-a1bf-153d751cba2c
+ - f28d1da3-83fb-4773-bf22-fbfe0bd4a54b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1870,14 +1842,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/items/a96e8cf6-2653-4097-9363-bb9d28960d02
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/items/b59fd03e-912f-40be-bc72-64a5c2268b66
response:
body:
- string: '{"id": "a96e8cf6-2653-4097-9363-bb9d28960d02", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "43f38a69-aa95-4193-b265-3ac2028a6a5d", "folderId": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887"}'
+ string: '{"id": "b59fd03e-912f-40be-bc72-64a5c2268b66", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae",
+ "folderId": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1886,17 +1858,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '195'
+ - '181'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:59 GMT
+ - Wed, 20 May 2026 09:15:20 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 63c8796c-6403-4550-852c-41bd3baf3e9a
+ - 6c6965db-bc67-45f1-8c0c-8a12e7f620aa
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1924,9 +1896,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/items/a96e8cf6-2653-4097-9363-bb9d28960d02/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/items/b59fd03e-912f-40be-bc72-64a5c2268b66/getDefinition
response:
body:
string: 'null'
@@ -1942,13 +1914,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:07:59 GMT
+ - Wed, 20 May 2026 09:15:22 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9b660712-9739-484a-8686-13280eb9abc8
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/52b1bc87-cb80-41f1-b4be-cf0934965843
Pragma:
- no-cache
RequestId:
- - 790885c6-dcbe-4c4a-a40d-b487b6a3c602
+ - 53028c10-8ed8-4c78-af90-bb78c2f331e8
Retry-After:
- '20'
Strict-Transport-Security:
@@ -1962,7 +1934,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - 9b660712-9739-484a-8686-13280eb9abc8
+ - 52b1bc87-cb80-41f1-b4be-cf0934965843
status:
code: 202
message: Accepted
@@ -1978,13 +1950,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9b660712-9739-484a-8686-13280eb9abc8
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/52b1bc87-cb80-41f1-b4be-cf0934965843
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:08:00.5615824",
- "lastUpdatedTimeUtc": "2026-02-06T08:08:00.874086", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:15:22.1997963",
+ "lastUpdatedTimeUtc": "2026-05-20T09:15:22.9645529", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -1994,17 +1966,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '128'
+ - '129'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:08:21 GMT
+ - Wed, 20 May 2026 09:15:43 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9b660712-9739-484a-8686-13280eb9abc8/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/52b1bc87-cb80-41f1-b4be-cf0934965843/result
Pragma:
- no-cache
RequestId:
- - b3a97d3e-b784-4de4-9fdf-70d128373435
+ - 30e0786c-e1bc-4096-b070-0138703d1e48
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2012,7 +1984,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - 9b660712-9739-484a-8686-13280eb9abc8
+ - 52b1bc87-cb80-41f1-b4be-cf0934965843
status:
code: 200
message: OK
@@ -2028,14 +2000,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9b660712-9739-484a-8686-13280eb9abc8/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/52b1bc87-cb80-41f1-b4be-cf0934965843/result
response:
body:
string: '{"definition": {"parts": [{"path": "notebook-content.py", "payload":
"IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
"payloadType": "InlineBase64"}]}}'
headers:
Access-Control-Expose-Headers:
@@ -2047,11 +2019,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 08:08:22 GMT
+ - Wed, 20 May 2026 09:15:43 GMT
Pragma:
- no-cache
RequestId:
- - ffe5d170-66d9-488d-b488-4645a40b4586
+ - c6b0e9cb-ef70-4488-ba4a-769ae92b8a4f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -2064,10 +2036,10 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "Notebook", "displayName": "fabcli000003_copy",
- "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
- "payloadType": "InlineBase64"}]}, "folderId": "f844a32a-5b75-4f6e-9b5f-3bbad08950ab"}'
+ body: '{"type": "Notebook", "displayName": "fabcli000003_copy", "definition":
+ {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
+ "payloadType": "InlineBase64"}]}, "folderId": "403eae67-8f7d-473d-aaee-4b87df873d4d"}'
headers:
Accept:
- '*/*'
@@ -2076,14 +2048,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1291'
-
+ - '1243'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/items
response:
body:
string: 'null'
@@ -2099,15 +2070,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:08:24 GMT
+ - Wed, 20 May 2026 09:15:46 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b59ff118-4359-41a2-8c83-c4b156be53f0
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/66579e4a-cb03-4531-93f0-8f5129070b33
Pragma:
- no-cache
RequestId:
- - f3c73899-a4cd-425f-aa9b-697a4ff31831
+ - 63f1e931-9c23-47d4-bbf9-1c55bd2f8e5e
Retry-After:
- '20'
Strict-Transport-Security:
@@ -2121,7 +2092,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - b59ff118-4359-41a2-8c83-c4b156be53f0
+ - 66579e4a-cb03-4531-93f0-8f5129070b33
status:
code: 202
message: Accepted
@@ -2137,13 +2108,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b59ff118-4359-41a2-8c83-c4b156be53f0
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/66579e4a-cb03-4531-93f0-8f5129070b33
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:08:24.3019911",
- "lastUpdatedTimeUtc": "2026-02-06T08:08:25.5677609", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:15:45.4680714",
+ "lastUpdatedTimeUtc": "2026-05-20T09:15:48.4980511", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -2153,17 +2124,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '130'
+ - '131'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:08:46 GMT
+ - Wed, 20 May 2026 09:16:06 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b59ff118-4359-41a2-8c83-c4b156be53f0/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/66579e4a-cb03-4531-93f0-8f5129070b33/result
Pragma:
- no-cache
RequestId:
- - e82a9f3b-704b-41fe-bd6b-9b499a1e3f7e
+ - 3296df6a-becd-48bf-9bc5-b75c494aa9da
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2171,7 +2142,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - b59ff118-4359-41a2-8c83-c4b156be53f0
+ - 66579e4a-cb03-4531-93f0-8f5129070b33
status:
code: 200
message: OK
@@ -2187,14 +2158,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b59ff118-4359-41a2-8c83-c4b156be53f0/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/66579e4a-cb03-4531-93f0-8f5129070b33/result
response:
body:
- string: '{"id": "3e9ad918-faa8-4056-894e-3a5c34052326", "type": "Notebook",
- "displayName": "fabcli000003_copy", "workspaceId":
- "43f38a69-aa95-4193-b265-3ac2028a6a5d", "folderId": "f844a32a-5b75-4f6e-9b5f-3bbad08950ab"}'
+ string: '{"id": "d10f341c-2e72-498b-818f-62597426673a", "type": "Notebook",
+ "displayName": "fabcli000003_copy", "description": "", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae",
+ "folderId": "403eae67-8f7d-473d-aaee-4b87df873d4d"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2205,11 +2176,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 08:08:47 GMT
+ - Wed, 20 May 2026 09:16:07 GMT
Pragma:
- no-cache
RequestId:
- - 197d59ff-840a-4d9b-835a-ea2dffa54184
+ - d7cd724f-3c7c-42eb-972b-a94ae1110d51
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -2233,17 +2204,16 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/items
response:
body:
- string: '{"value": [{"id": "a96e8cf6-2653-4097-9363-bb9d28960d02", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "43f38a69-aa95-4193-b265-3ac2028a6a5d", "folderId": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887"},
- {"id": "3e9ad918-faa8-4056-894e-3a5c34052326", "type": "Notebook", "displayName":
- "fabcli000003_copy", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d",
- "folderId": "f844a32a-5b75-4f6e-9b5f-3bbad08950ab"}]}'
+ string: '{"value": [{"id": "b59fd03e-912f-40be-bc72-64a5c2268b66", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae",
+ "folderId": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a"}, {"id": "d10f341c-2e72-498b-818f-62597426673a",
+ "type": "Notebook", "displayName": "fabcli000003_copy", "description": "",
+ "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", "folderId": "403eae67-8f7d-473d-aaee-4b87df873d4d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2252,15 +2222,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '268'
+ - '257'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:08:48 GMT
+ - Wed, 20 May 2026 09:16:08 GMT
Pragma:
- no-cache
RequestId:
- - 84813142-9504-4262-9688-eb14555d4ff3
+ - 2a3e4ecf-c7c7-464d-acd6-56cc3107e8bb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2286,15 +2256,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName":
- "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id":
- "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy",
- "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}'
+ string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName":
+ "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id":
+ "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy",
+ "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2303,15 +2273,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '180'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:08:48 GMT
+ - Wed, 20 May 2026 09:16:09 GMT
Pragma:
- no-cache
RequestId:
- - 524379cc-ec57-4076-ad2f-0f9cbfba625b
+ - 7500ba14-82ea-4f80-a9ac-7fb7cca06fd1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2337,15 +2307,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName":
- "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id":
- "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy",
- "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}'
+ string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName":
+ "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id":
+ "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy",
+ "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2354,15 +2324,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '180'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:08:49 GMT
+ - Wed, 20 May 2026 09:16:10 GMT
Pragma:
- no-cache
RequestId:
- - 1a9c479f-74b9-4e19-b032-0432b6e27b47
+ - 5a6aa948-cd49-4ab2-bb58-6627e6972d42
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2388,15 +2358,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName":
- "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id":
- "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy",
- "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}'
+ string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName":
+ "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id":
+ "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy",
+ "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2405,15 +2375,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '180'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:08:50 GMT
+ - Wed, 20 May 2026 09:16:11 GMT
Pragma:
- no-cache
RequestId:
- - 93b849f0-09e3-4a28-812c-fc6fce18b006
+ - 0a468bde-d0e3-4075-80cb-de58164560fb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2439,15 +2409,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "43f38a69-aa95-4193-b265-3ac2028a6a5d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2456,15 +2428,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2843'
+ - '2657'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:08:51 GMT
+ - Wed, 20 May 2026 09:16:11 GMT
Pragma:
- no-cache
RequestId:
- - 14a194f8-758a-436c-9f81-242c0adb9b57
+ - 70115cb4-db37-49af-8a81-4b2a3c5cebdc
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2490,17 +2462,16 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/items
response:
body:
- string: '{"value": [{"id": "a96e8cf6-2653-4097-9363-bb9d28960d02", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "43f38a69-aa95-4193-b265-3ac2028a6a5d", "folderId": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887"},
- {"id": "3e9ad918-faa8-4056-894e-3a5c34052326", "type": "Notebook", "displayName":
- "fabcli000003_copy", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d",
- "folderId": "f844a32a-5b75-4f6e-9b5f-3bbad08950ab"}]}'
+ string: '{"value": [{"id": "b59fd03e-912f-40be-bc72-64a5c2268b66", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae",
+ "folderId": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a"}, {"id": "d10f341c-2e72-498b-818f-62597426673a",
+ "type": "Notebook", "displayName": "fabcli000003_copy", "description": "",
+ "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", "folderId": "403eae67-8f7d-473d-aaee-4b87df873d4d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2509,15 +2480,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '268'
+ - '257'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:08:52 GMT
+ - Wed, 20 May 2026 09:16:12 GMT
Pragma:
- no-cache
RequestId:
- - f973ab26-3d96-43da-a835-f704a8f81b67
+ - 54b99fee-b973-43de-bd61-996a16dba860
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2543,15 +2514,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName":
- "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id":
- "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy",
- "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}'
+ string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName":
+ "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id":
+ "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy",
+ "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2560,15 +2531,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '180'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:08:52 GMT
+ - Wed, 20 May 2026 09:16:13 GMT
Pragma:
- no-cache
RequestId:
- - 47de45c4-b389-4c2e-b69f-2e456991d1a4
+ - 742f92b4-b02a-4751-bc4e-dae2501c23dc
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2594,15 +2565,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName":
- "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id":
- "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy",
- "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}'
+ string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName":
+ "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id":
+ "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy",
+ "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2611,15 +2582,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '180'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:08:53 GMT
+ - Wed, 20 May 2026 09:16:14 GMT
Pragma:
- no-cache
RequestId:
- - e17b1103-6361-4369-aa3f-9aad0517bcc3
+ - 03ad2395-3b1a-4034-9279-a024841cc35b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2645,15 +2616,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName":
- "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id":
- "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy",
- "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}'
+ string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName":
+ "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id":
+ "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy",
+ "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2662,15 +2633,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '180'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:08:54 GMT
+ - Wed, 20 May 2026 09:16:14 GMT
Pragma:
- no-cache
RequestId:
- - 3f684e42-0c8c-445a-a365-39f0b16c64d3
+ - f82c1cb6-ac7f-4126-a751-5ff39ce13f02
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2696,15 +2667,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "43f38a69-aa95-4193-b265-3ac2028a6a5d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2713,15 +2686,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2843'
+ - '2657'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:08:55 GMT
+ - Wed, 20 May 2026 09:16:16 GMT
Pragma:
- no-cache
RequestId:
- - eec8d8d3-f333-400d-b4f3-8ed43fd07793
+ - 942b1b3e-0832-4a45-8805-1662d70112a0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2747,15 +2720,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName":
- "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id":
- "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy",
- "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}'
+ string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName":
+ "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id":
+ "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy",
+ "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2764,15 +2737,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '180'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:08:55 GMT
+ - Wed, 20 May 2026 09:16:17 GMT
Pragma:
- no-cache
RequestId:
- - a24637c3-4acc-4f90-b3a9-f8d682e0f409
+ - 8770dc0b-9ea1-4284-91e2-897ab8f490b1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2798,17 +2771,16 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/items
response:
body:
- string: '{"value": [{"id": "a96e8cf6-2653-4097-9363-bb9d28960d02", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "43f38a69-aa95-4193-b265-3ac2028a6a5d", "folderId": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887"},
- {"id": "3e9ad918-faa8-4056-894e-3a5c34052326", "type": "Notebook", "displayName":
- "fabcli000003_copy", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d",
- "folderId": "f844a32a-5b75-4f6e-9b5f-3bbad08950ab"}]}'
+ string: '{"value": [{"id": "b59fd03e-912f-40be-bc72-64a5c2268b66", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae",
+ "folderId": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a"}, {"id": "d10f341c-2e72-498b-818f-62597426673a",
+ "type": "Notebook", "displayName": "fabcli000003_copy", "description": "",
+ "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", "folderId": "403eae67-8f7d-473d-aaee-4b87df873d4d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2817,15 +2789,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '268'
+ - '257'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:08:57 GMT
+ - Wed, 20 May 2026 09:16:17 GMT
Pragma:
- no-cache
RequestId:
- - 579fd6e8-3662-40c4-bc86-d1415e5ca2c2
+ - e938a392-cd8a-44b4-b4d0-4c1de628db55
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2851,15 +2823,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName":
- "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id":
- "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy",
- "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}'
+ string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName":
+ "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id":
+ "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy",
+ "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2868,15 +2840,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '180'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:08:57 GMT
+ - Wed, 20 May 2026 09:16:18 GMT
Pragma:
- no-cache
RequestId:
- - 86d03bdf-72fa-4ecd-908d-41098bc3f6de
+ - f5c40972-06fe-447d-9ccb-e17af88f217b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2902,15 +2874,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName":
- "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id":
- "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy",
- "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}'
+ string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName":
+ "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id":
+ "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy",
+ "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2919,15 +2891,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '180'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:08:58 GMT
+ - Wed, 20 May 2026 09:16:20 GMT
Pragma:
- no-cache
RequestId:
- - e4752f7d-419e-4562-a08f-9e3095149d75
+ - 81c3952f-39e4-4f4c-964b-1969c0aa35cc
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2953,15 +2925,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName":
- "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id":
- "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy",
- "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}'
+ string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName":
+ "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id":
+ "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy",
+ "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2970,15 +2942,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '180'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:08:59 GMT
+ - Wed, 20 May 2026 09:16:20 GMT
Pragma:
- no-cache
RequestId:
- - eaaa2338-003a-47fc-bd1e-7d018a1bdf8f
+ - c1f76712-cb92-46ec-b498-5e6bd54dd272
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3004,15 +2976,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "43f38a69-aa95-4193-b265-3ac2028a6a5d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3021,15 +2995,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2843'
+ - '2657'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:08:59 GMT
+ - Wed, 20 May 2026 09:16:21 GMT
Pragma:
- no-cache
RequestId:
- - f43ba627-6666-4f9e-8f1e-943d7180ddc5
+ - feebe12d-ea24-48ba-8ea0-4e498e476f4b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3055,15 +3029,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName":
- "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id":
- "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy",
- "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}'
+ string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName":
+ "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id":
+ "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy",
+ "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3072,15 +3046,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '180'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:09:00 GMT
+ - Wed, 20 May 2026 09:16:22 GMT
Pragma:
- no-cache
RequestId:
- - 591cccc6-ecd1-443a-b21d-a8f76407b8cd
+ - f7174467-34c0-4b8a-828c-845a4a82dd8b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3106,17 +3080,16 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/items
response:
body:
- string: '{"value": [{"id": "a96e8cf6-2653-4097-9363-bb9d28960d02", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "43f38a69-aa95-4193-b265-3ac2028a6a5d", "folderId": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887"},
- {"id": "3e9ad918-faa8-4056-894e-3a5c34052326", "type": "Notebook", "displayName":
- "fabcli000003_copy", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d",
- "folderId": "f844a32a-5b75-4f6e-9b5f-3bbad08950ab"}]}'
+ string: '{"value": [{"id": "b59fd03e-912f-40be-bc72-64a5c2268b66", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae",
+ "folderId": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a"}, {"id": "d10f341c-2e72-498b-818f-62597426673a",
+ "type": "Notebook", "displayName": "fabcli000003_copy", "description": "",
+ "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", "folderId": "403eae67-8f7d-473d-aaee-4b87df873d4d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3125,15 +3098,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '268'
+ - '257'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:09:01 GMT
+ - Wed, 20 May 2026 09:16:23 GMT
Pragma:
- no-cache
RequestId:
- - e89c24e0-474f-4cd7-9ada-14afc589b898
+ - 4da5a635-47d3-4274-8494-a61812b5a7b7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3159,15 +3132,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName":
- "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id":
- "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy",
- "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}'
+ string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName":
+ "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id":
+ "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy",
+ "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3176,15 +3149,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '180'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:09:02 GMT
+ - Wed, 20 May 2026 09:16:24 GMT
Pragma:
- no-cache
RequestId:
- - 0abe008d-e016-4c3e-b129-18a67f9473ec
+ - 0e353913-a6fa-4680-90cc-1454e35f43a9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3210,15 +3183,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName":
- "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id":
- "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy",
- "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}'
+ string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName":
+ "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id":
+ "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy",
+ "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3227,15 +3200,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '180'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:09:02 GMT
+ - Wed, 20 May 2026 09:16:25 GMT
Pragma:
- no-cache
RequestId:
- - f09b9e3d-0a90-4ff7-8990-7504c64ceeda
+ - e6ae0a9a-561d-4686-ae44-347be3e20bdc
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3263,9 +3236,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/items/a96e8cf6-2653-4097-9363-bb9d28960d02
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/items/b59fd03e-912f-40be-bc72-64a5c2268b66
response:
body:
string: ''
@@ -3281,11 +3254,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:09:04 GMT
+ - Wed, 20 May 2026 09:16:25 GMT
Pragma:
- no-cache
RequestId:
- - c2fda6b1-7587-4a67-b466-e066495dcce1
+ - 8c4e30e1-e1be-44ac-a019-829e07267c1c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3311,15 +3284,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "43f38a69-aa95-4193-b265-3ac2028a6a5d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3328,15 +3303,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2843'
+ - '2657'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:09:04 GMT
+ - Wed, 20 May 2026 09:16:26 GMT
Pragma:
- no-cache
RequestId:
- - 9b4a30e8-9abd-4694-9f91-c2035a20c4f6
+ - 681f5066-03aa-4ff7-861f-00fe9d848db3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3362,55 +3337,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True
- response:
- body:
- string: '{"requestId": "d83ae5b7-92be-4724-ae35-a988a4eb4a92", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 8:09:53 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 08:09:05 GMT
- RequestId:
- - d83ae5b7-92be-4724-ae35-a988a4eb4a92
- Retry-After:
- - '48'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName":
- "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id":
- "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy",
- "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}'
+ string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName":
+ "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id":
+ "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy",
+ "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3419,15 +3354,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '180'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:09:56 GMT
+ - Wed, 20 May 2026 09:16:26 GMT
Pragma:
- no-cache
RequestId:
- - 4480cce9-0c30-4eb6-9e25-6a2405d165da
+ - 47101c06-8e0a-42bc-80d9-021f1df2f843
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3455,9 +3390,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders/fcdedc27-b0d3-494f-8ffa-c36ec15a5887
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders/f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a
response:
body:
string: ''
@@ -3473,11 +3408,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:09:57 GMT
+ - Wed, 20 May 2026 09:16:27 GMT
Pragma:
- no-cache
RequestId:
- - ea69dee5-4236-4843-9825-9cc6f39584b4
+ - 025bda9c-9c56-4a2f-be71-d65c3333ae7a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3503,15 +3438,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "43f38a69-aa95-4193-b265-3ac2028a6a5d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3520,15 +3457,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2843'
+ - '2657'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:09:58 GMT
+ - Wed, 20 May 2026 09:16:28 GMT
Pragma:
- no-cache
RequestId:
- - 43066e5a-67ae-493a-8fd1-bbbc76a1213d
+ - 1c18b3f2-cef9-40b9-ace7-42d19386d86b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3554,14 +3491,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/items
response:
body:
- string: '{"value": [{"id": "3e9ad918-faa8-4056-894e-3a5c34052326", "type": "Notebook",
- "displayName": "fabcli000003_copy", "workspaceId":
- "43f38a69-aa95-4193-b265-3ac2028a6a5d", "folderId": "f844a32a-5b75-4f6e-9b5f-3bbad08950ab"}]}'
+ string: '{"value": [{"id": "d10f341c-2e72-498b-818f-62597426673a", "type": "Notebook",
+ "displayName": "fabcli000003_copy", "description": "", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae",
+ "folderId": "403eae67-8f7d-473d-aaee-4b87df873d4d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3570,15 +3507,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '210'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:09:59 GMT
+ - Wed, 20 May 2026 09:16:29 GMT
Pragma:
- no-cache
RequestId:
- - bc34db58-32ff-42d5-8141-2dba17bf5bac
+ - dfe11f98-957d-43ff-83c8-8fdb6ca1bf66
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3604,13 +3541,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName":
- "fabcli000002_copy", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}'
+ string: '{"value": [{"id": "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName":
+ "fabcli000002_copy", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3619,15 +3556,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '147'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:10:00 GMT
+ - Wed, 20 May 2026 09:16:30 GMT
Pragma:
- no-cache
RequestId:
- - 08dc618a-bae1-4426-9cec-46ba218723a3
+ - 24ad32d2-83ad-4d26-b181-144fa987e3b2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3655,9 +3592,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d
+ uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae
response:
body:
string: ''
@@ -3673,11 +3610,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:10:00 GMT
+ - Wed, 20 May 2026 09:16:31 GMT
Pragma:
- no-cache
RequestId:
- - 41a418bc-7d23-4852-a1ac-28c0e9aa0a45
+ - 0c2d9293-bc85-4f3d-a626-323e455badf5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_workspace_nested_folder_success.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_workspace_nested_folder_success.yaml
index 8bc60ad6c..fd65607df 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_workspace_nested_folder_success.yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_workspace_nested_folder_success.yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:50:59 GMT
+ - Wed, 20 May 2026 09:05:45 GMT
Pragma:
- no-cache
RequestId:
- - 980c2c93-28d2-4d6d-9fcc-231734e0bce7
+ - 9e0250c7-1cef-475e-9a34-ef0b1c84b57d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,14 +62,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -77,15 +79,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:51:01 GMT
+ - Wed, 20 May 2026 09:05:45 GMT
Pragma:
- no-cache
RequestId:
- - adb95462-e0b2-4f34-b724-3c95a1987a1e
+ - 519e68f7-19dc-4dac-847a-36565f95b393
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -111,7 +113,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -127,15 +129,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '429'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:51:06 GMT
+ - Wed, 20 May 2026 09:05:50 GMT
Pragma:
- no-cache
RequestId:
- - 9ab271a3-3a40-4674-adcf-c96e63db3321
+ - a3748c28-f3fa-47c4-ac31-9878af1ceab5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -160,16 +162,16 @@ interactions:
- keep-alive
Content-Length:
- '89'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -178,17 +180,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '165'
+ - '153'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:51:15 GMT
+ - Wed, 20 May 2026 09:05:59 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e
+ - https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a
Pragma:
- no-cache
RequestId:
- - 848e4cb3-c3a4-4491-a7c2-0ef429dc5dac
+ - adc3a526-09b1-4dd8-99b0-2dde8bc2c6b6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -214,15 +216,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -231,15 +235,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2842'
+ - '2656'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:51:16 GMT
+ - Wed, 20 May 2026 09:06:00 GMT
Pragma:
- no-cache
RequestId:
- - d3476ddd-2181-491d-868a-fc3c86439461
+ - 207d1bfc-051c-439f-bd17-ae903343b391
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -265,15 +269,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -282,15 +288,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2842'
+ - '2656'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:51:16 GMT
+ - Wed, 20 May 2026 09:06:00 GMT
Pragma:
- no-cache
RequestId:
- - a52aeea1-7306-4803-9c7c-dc6e1b06b03e
+ - fdd2af5c-bb9d-41c0-89da-36023d3381bb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -316,7 +322,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -332,15 +338,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '427'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:51:19 GMT
+ - Wed, 20 May 2026 09:06:05 GMT
Pragma:
- no-cache
RequestId:
- - 0676ad62-1b91-4af6-b556-49cf846b0615
+ - 041b9ef3-9c64-4cf3-8fef-c0c2ab275e5e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -365,16 +371,16 @@ interactions:
- keep-alive
Content-Length:
- '89'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -383,17 +389,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '165'
+ - '155'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:51:27 GMT
+ - Wed, 20 May 2026 09:06:12 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734
+ - https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf
Pragma:
- no-cache
RequestId:
- - 68e9fd32-e03b-4e1c-bd49-557580ec837f
+ - 164d4ac1-c05c-4a69-83f4-279f4f319d91
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -419,16 +425,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -437,15 +446,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:51:28 GMT
+ - Wed, 20 May 2026 09:06:12 GMT
Pragma:
- no-cache
RequestId:
- - 7983811d-688d-4ba7-ad27-b7ca85327705
+ - 2ac1cceb-9098-4282-aef3-d567f775c339
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -471,9 +480,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -489,11 +498,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:51:29 GMT
+ - Wed, 20 May 2026 09:06:14 GMT
Pragma:
- no-cache
RequestId:
- - 08067838-29c4-4e22-892a-3915bec1f265
+ - 67155ef3-09b4-4982-b826-62aa8d437954
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -519,9 +528,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -537,11 +546,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:51:30 GMT
+ - Wed, 20 May 2026 09:06:15 GMT
Pragma:
- no-cache
RequestId:
- - 068d71e5-6d0b-4d70-b345-6d316afd6e2a
+ - 9ae45fb3-c34b-49fa-8d72-d66016e7056b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -565,17 +574,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders
response:
body:
- string: '{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": "fabcli000003",
- "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}'
+ string: '{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": "fabcli000003",
+ "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -588,13 +597,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:51:30 GMT
+ - Wed, 20 May 2026 09:06:15 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders/286030e4-8cb5-4735-9b6c-bdda8b2f4dfe
+ - https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders/06ca94aa-2456-4ddf-a53e-f41bce88c0bb
Pragma:
- no-cache
RequestId:
- - 1405af4e-e988-402c-8cc2-5ac6959c15aa
+ - ac7abd50-8060-4bda-92b8-19c9e7df1f7b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -620,16 +629,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -638,15 +650,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:51:31 GMT
+ - Wed, 20 May 2026 09:06:16 GMT
Pragma:
- no-cache
RequestId:
- - a4fd541b-f9c5-45eb-8f89-8755f274075d
+ - 01d9d274-e63b-4cf2-942c-45aadf976370
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -672,13 +684,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -687,15 +699,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:51:32 GMT
+ - Wed, 20 May 2026 09:06:17 GMT
Pragma:
- no-cache
RequestId:
- - 7d0e3860-f1f4-4861-9cd0-2c054b87b53f
+ - 845e2002-5c14-471c-86d6-b2b08aa8254f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -721,13 +733,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -736,15 +748,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:51:33 GMT
+ - Wed, 20 May 2026 09:06:18 GMT
Pragma:
- no-cache
RequestId:
- - 5920e662-4cd9-4e85-882d-30422c05bf16
+ - f212dc92-df2c-4dfc-8736-80189e3e3248
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -770,13 +782,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -785,15 +797,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:51:34 GMT
+ - Wed, 20 May 2026 09:06:19 GMT
Pragma:
- no-cache
RequestId:
- - 8227b161-5659-46cd-a76d-7f3f3ce440cc
+ - f5a5b401-c4bc-4bc9-894d-4be4886b4f9e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -808,8 +820,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe"}'
+ body: '{"displayName": "fabcli000004", "parentFolderId": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb"}'
headers:
Accept:
- '*/*'
@@ -819,17 +830,16 @@ interactions:
- keep-alive
Content-Length:
- '93'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders
response:
body:
- string: '{"id": "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004",
- "parentFolderId": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}'
+ string: '{"id": "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004",
+ "parentFolderId": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -838,17 +848,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '168'
+ - '167'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:51:35 GMT
+ - Wed, 20 May 2026 09:06:20 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders/b6217fa4-8911-4c8b-98c4-2507fb6fb87c
+ - https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders/170128a0-234a-431b-b133-4fc0dc6c2258
Pragma:
- no-cache
RequestId:
- - 1d89a4b8-61da-49ef-a841-0a18ffb2d66d
+ - e63d532d-ba5a-4e9a-9133-77b66d884ab4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -874,16 +884,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -892,15 +905,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:51:35 GMT
+ - Wed, 20 May 2026 09:06:21 GMT
Pragma:
- no-cache
RequestId:
- - 3144aef9-bccf-497c-94c5-602318482c7f
+ - a68df27a-8962-4822-8d0e-189b8898ad6e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -926,9 +939,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -944,11 +957,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:51:36 GMT
+ - Wed, 20 May 2026 09:06:22 GMT
Pragma:
- no-cache
RequestId:
- - 264ab13a-b18a-4d3a-bc50-bbab6e8d1e23
+ - bcc967ea-abc3-4eda-8894-58342f4f7bcb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -974,9 +987,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -992,11 +1005,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:51:37 GMT
+ - Wed, 20 May 2026 09:06:22 GMT
Pragma:
- no-cache
RequestId:
- - 17ee1d5e-7795-4b3d-b30a-5332963613ed
+ - 4607b66c-ae06-41e4-8a8f-4013b325aacc
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1020,17 +1033,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders
response:
body:
- string: '{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": "fabcli000005",
- "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}'
+ string: '{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": "fabcli000005",
+ "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -1039,17 +1052,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '132'
+ - '131'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:51:37 GMT
+ - Wed, 20 May 2026 09:06:23 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders/197237c1-a9dd-44e4-81c8-15ae690cf0a6
+ - https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders/2a976532-472f-4773-bd29-35c87ea62cdf
Pragma:
- no-cache
RequestId:
- - b08719cd-de3b-469d-a47f-f6884bae02bf
+ - 0436ff64-9ee3-4704-bf00-243d283fe21e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1075,16 +1088,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1093,15 +1109,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:51:38 GMT
+ - Wed, 20 May 2026 09:06:24 GMT
Pragma:
- no-cache
RequestId:
- - 7849b815-e54f-4443-922a-12e2852750bd
+ - 8ba1e88f-44c4-4f28-96bf-d395d33974cb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1127,55 +1143,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
- response:
- body:
- string: '{"requestId": "c8cd8a19-5f5d-4e01-8a43-6e9b0c488557", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 7:51:49 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:51:39 GMT
- RequestId:
- - c8cd8a19-5f5d-4e01-8a43-6e9b0c488557
- Retry-After:
- - '9'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id":
- "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id":
+ "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId":
+ "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1188,11 +1164,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:51:50 GMT
+ - Wed, 20 May 2026 09:06:25 GMT
Pragma:
- no-cache
RequestId:
- - 9edd1076-3212-40af-89f6-ffbd35de6561
+ - e291850a-500c-4b76-988e-4423fb2a89c8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1218,9 +1194,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items
response:
body:
string: '{"value": []}'
@@ -1236,11 +1212,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:51:51 GMT
+ - Wed, 20 May 2026 09:06:26 GMT
Pragma:
- no-cache
RequestId:
- - 2e0e6125-8aba-4f1b-be53-68fd5da8a5cf
+ - f2f29115-7d42-4815-bea6-38828db3523e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1266,9 +1242,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items
response:
body:
string: '{"value": []}'
@@ -1284,11 +1260,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:51:52 GMT
+ - Wed, 20 May 2026 09:06:27 GMT
Pragma:
- no-cache
RequestId:
- - c3b11966-b698-4e2b-bd6e-949cdf91f949
+ - 5300ea43-4544-4daa-aae0-a568cb0eb8ed
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1303,9 +1279,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000006", "type":
- "Notebook", "folderId": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "definition":
- {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
+ body: '{"displayName": "fabcli000006", "type": "Notebook", "folderId": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb",
+ "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
"payloadType": "InlineBase64"}]}}'
headers:
Accept:
@@ -1316,13 +1291,12 @@ interactions:
- keep-alive
Content-Length:
- '765'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/notebooks
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/notebooks
response:
body:
string: 'null'
@@ -1338,15 +1312,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:51:54 GMT
+ - Wed, 20 May 2026 09:06:28 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b8e8d851-1efd-4dd0-a29e-a096cb380378
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/025878ab-d2ee-4925-bb4d-4926ed3ef8a0
Pragma:
- no-cache
RequestId:
- - 7434eb45-33a2-4f96-9e4c-4be9bd9eae99
+ - 2bf7ec5a-ec37-4155-87bc-c9e6bf9dc360
Retry-After:
- '20'
Strict-Transport-Security:
@@ -1360,7 +1334,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - b8e8d851-1efd-4dd0-a29e-a096cb380378
+ - 025878ab-d2ee-4925-bb4d-4926ed3ef8a0
status:
code: 202
message: Accepted
@@ -1376,13 +1350,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b8e8d851-1efd-4dd0-a29e-a096cb380378
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/025878ab-d2ee-4925-bb4d-4926ed3ef8a0
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:51:53.7456402",
- "lastUpdatedTimeUtc": "2026-02-06T07:51:55.1684247", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:06:28.7327109",
+ "lastUpdatedTimeUtc": "2026-05-20T09:06:30.5728068", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -1396,13 +1370,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:52:15 GMT
+ - Wed, 20 May 2026 09:06:49 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b8e8d851-1efd-4dd0-a29e-a096cb380378/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/025878ab-d2ee-4925-bb4d-4926ed3ef8a0/result
Pragma:
- no-cache
RequestId:
- - adbb5176-db90-45be-994e-e48c3ecb5065
+ - fbea703a-c440-4152-b4b3-32a793785b0d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1410,7 +1384,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - b8e8d851-1efd-4dd0-a29e-a096cb380378
+ - 025878ab-d2ee-4925-bb4d-4926ed3ef8a0
status:
code: 200
message: OK
@@ -1426,14 +1400,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b8e8d851-1efd-4dd0-a29e-a096cb380378/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/025878ab-d2ee-4925-bb4d-4926ed3ef8a0/result
response:
body:
- string: '{"id": "92270156-79b2-409b-bd1a-bad40cff71fe", "type": "Notebook",
- "displayName": "fabcli000006", "workspaceId":
- "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe"}'
+ string: '{"id": "0485d3f6-d4ac-42e9-89da-b1411eb85bf0", "type": "Notebook",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a",
+ "folderId": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1444,11 +1418,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 07:52:16 GMT
+ - Wed, 20 May 2026 09:06:51 GMT
Pragma:
- no-cache
RequestId:
- - bbec0b0e-e233-46ef-820e-def77d64cd18
+ - 942901ea-6861-4365-b35b-cecdf4dcf7ad
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -1472,16 +1446,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1490,15 +1467,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:52:17 GMT
+ - Wed, 20 May 2026 09:06:51 GMT
Pragma:
- no-cache
RequestId:
- - 1d7a5e42-efca-4aaf-af31-8e9a2e05967f
+ - 31ee6b67-1ccd-49ea-bc22-c42511aee65f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1524,15 +1501,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id":
- "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id":
+ "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId":
+ "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1545,11 +1522,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:52:18 GMT
+ - Wed, 20 May 2026 09:06:52 GMT
Pragma:
- no-cache
RequestId:
- - 2412737b-58ed-4025-ae70-6d1e233e6e92
+ - 3c62f1b1-2c19-4bf3-9e7d-921960f2c5a8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1575,15 +1552,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id":
- "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id":
+ "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId":
+ "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1596,11 +1573,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:52:19 GMT
+ - Wed, 20 May 2026 09:06:53 GMT
Pragma:
- no-cache
RequestId:
- - fbe5a6ee-35ee-40dd-8c7f-1870ecb74a0e
+ - 770542bc-6f73-4837-b5f0-f0ee132facce
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1626,14 +1603,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items
response:
body:
- string: '{"value": [{"id": "92270156-79b2-409b-bd1a-bad40cff71fe", "type": "Notebook",
- "displayName": "fabcli000006", "workspaceId":
- "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe"}]}'
+ string: '{"value": [{"id": "0485d3f6-d4ac-42e9-89da-b1411eb85bf0", "type": "Notebook",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a",
+ "folderId": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1642,15 +1619,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '209'
+ - '195'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:52:20 GMT
+ - Wed, 20 May 2026 09:06:55 GMT
Pragma:
- no-cache
RequestId:
- - df1bb99a-2177-45ea-9604-b2a4ec010cff
+ - 2c26edae-76d2-4ad2-94b5-7a3afa2bf6d8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1676,15 +1653,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id":
- "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id":
+ "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId":
+ "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1697,11 +1674,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:52:21 GMT
+ - Wed, 20 May 2026 09:06:55 GMT
Pragma:
- no-cache
RequestId:
- - 9d9edbb8-abc0-41ab-bbf9-95fc3d170a94
+ - 050caf21-535e-4f23-8a51-015de779e1d9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1727,14 +1704,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items
response:
body:
- string: '{"value": [{"id": "92270156-79b2-409b-bd1a-bad40cff71fe", "type": "Notebook",
- "displayName": "fabcli000006", "workspaceId":
- "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe"}]}'
+ string: '{"value": [{"id": "0485d3f6-d4ac-42e9-89da-b1411eb85bf0", "type": "Notebook",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a",
+ "folderId": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1743,15 +1720,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '209'
+ - '195'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:52:21 GMT
+ - Wed, 20 May 2026 09:06:56 GMT
Pragma:
- no-cache
RequestId:
- - f8ce80e2-20ba-4466-a490-055ebfe71b16
+ - b33feec6-0170-4a44-9cab-939f71a0cd33
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1777,15 +1754,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id":
- "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id":
+ "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId":
+ "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1798,11 +1775,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:52:23 GMT
+ - Wed, 20 May 2026 09:06:56 GMT
Pragma:
- no-cache
RequestId:
- - 38160f8e-2a27-4531-8196-aaeb5ae68e2b
+ - ae9c4c24-e07c-48de-b8a8-da8c1e3bbd2a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1817,8 +1794,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000007", "type":
- "SparkJobDefinition", "folderId": "b6217fa4-8911-4c8b-98c4-2507fb6fb87c"}'
+ body: '{"displayName": "fabcli000007", "type": "SparkJobDefinition", "folderId":
+ "170128a0-234a-431b-b133-4fc0dc6c2258"}'
headers:
Accept:
- '*/*'
@@ -1828,18 +1805,17 @@ interactions:
- keep-alive
Content-Length:
- '117'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/sparkJobDefinitions
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/sparkJobDefinitions
response:
body:
- string: '{"id": "a4517be4-4347-4fc9-9a6a-2dea722c8909", "type": "SparkJobDefinition",
- "displayName": "fabcli000007", "workspaceId":
- "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "b6217fa4-8911-4c8b-98c4-2507fb6fb87c"}'
+ string: '{"id": "e0829343-6e57-4aa6-b665-6913f1c56998", "type": "SparkJobDefinition",
+ "displayName": "fabcli000007", "description": "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a",
+ "folderId": "170128a0-234a-431b-b133-4fc0dc6c2258"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1848,17 +1824,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '204'
+ - '195'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:52:25 GMT
+ - Wed, 20 May 2026 09:06:59 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - cc08f36a-9c8a-4e07-a86a-40d39d21a04c
+ - 2fdf3ad8-b48c-439e-9c7a-079678357369
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1884,16 +1860,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1902,15 +1881,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:52:27 GMT
+ - Wed, 20 May 2026 09:06:59 GMT
Pragma:
- no-cache
RequestId:
- - 1dc2911d-4e01-4c73-8272-9b5b6cdb4511
+ - 2e77b699-c7eb-4703-be83-adb8345c156d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1936,15 +1915,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id":
- "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id":
+ "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId":
+ "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1957,11 +1936,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:52:27 GMT
+ - Wed, 20 May 2026 09:07:00 GMT
Pragma:
- no-cache
RequestId:
- - 8ea9c5fa-078e-4d4c-a94b-285069db899e
+ - b87cac91-4683-4b85-83d1-9daaaff35ab4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1987,16 +1966,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2005,15 +1987,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:52:28 GMT
+ - Wed, 20 May 2026 09:07:01 GMT
Pragma:
- no-cache
RequestId:
- - 258f261a-1a39-4e67-9b3b-45623ac176f2
+ - 025e0819-e6bb-43dc-8339-72a57aa8fe2b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2039,13 +2021,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2054,15 +2036,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '142'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:52:29 GMT
+ - Wed, 20 May 2026 09:07:02 GMT
Pragma:
- no-cache
RequestId:
- - c34c0458-0343-4b73-9bf8-accbd4dccce3
+ - e902b9b9-e050-4253-a680-3516faf69428
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2088,16 +2070,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2106,15 +2091,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:52:29 GMT
+ - Wed, 20 May 2026 09:07:03 GMT
Pragma:
- no-cache
RequestId:
- - 5e1f7bbf-7eea-45ac-88f5-76834c716e0b
+ - 5cd1da8f-e122-4f1f-be2f-ce58223be02f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2140,13 +2125,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2155,15 +2140,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '142'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:52:30 GMT
+ - Wed, 20 May 2026 09:07:04 GMT
Pragma:
- no-cache
RequestId:
- - 35c14a14-5161-4c93-872e-558b86826faf
+ - e3723b28-5b05-4d04-8d3b-4f762e8fcb3e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2189,13 +2174,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2204,15 +2189,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '142'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:52:30 GMT
+ - Wed, 20 May 2026 09:07:04 GMT
Pragma:
- no-cache
RequestId:
- - 19ada750-0564-4e5c-9eb0-124e6b94b718
+ - 77adda55-6fe6-43ee-bb83-669106372a08
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2238,13 +2223,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2253,15 +2238,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '142'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:52:32 GMT
+ - Wed, 20 May 2026 09:07:05 GMT
Pragma:
- no-cache
RequestId:
- - 0d9a7f5f-f123-473f-9ef5-2c3622056175
+ - 4761d0ae-e173-4792-bbec-ac11775170a8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2276,8 +2261,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6"}'
+ body: '{"displayName": "fabcli000003", "parentFolderId": "2a976532-472f-4773-bd29-35c87ea62cdf"}'
headers:
Accept:
- '*/*'
@@ -2287,17 +2271,16 @@ interactions:
- keep-alive
Content-Length:
- '93'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders
response:
body:
- string: '{"id": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003",
- "parentFolderId": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}'
+ string: '{"id": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003",
+ "parentFolderId": "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -2306,17 +2289,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '168'
+ - '169'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:52:32 GMT
+ - Wed, 20 May 2026 09:07:06 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders/397c7786-3d84-460c-9dc4-8d54c1eb9f1b
+ - https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders/2e9d6478-8558-4fd6-a800-0a991a8318d7
Pragma:
- no-cache
RequestId:
- - 95598d84-ac8b-41ab-a443-9a997e197067
+ - 8468f312-bb52-483e-a38a-ec5fc579dce9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2342,17 +2325,16 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items
response:
body:
- string: '{"value": [{"id": "92270156-79b2-409b-bd1a-bad40cff71fe", "type": "Notebook",
- "displayName": "fabcli000006", "workspaceId":
- "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe"},
- {"id": "a4517be4-4347-4fc9-9a6a-2dea722c8909", "type": "SparkJobDefinition",
- "displayName": "fabcli000007", "workspaceId":
- "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "b6217fa4-8911-4c8b-98c4-2507fb6fb87c"}]}'
+ string: '{"value": [{"id": "0485d3f6-d4ac-42e9-89da-b1411eb85bf0", "type": "Notebook",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a",
+ "folderId": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb"}, {"id": "e0829343-6e57-4aa6-b665-6913f1c56998",
+ "type": "SparkJobDefinition", "displayName": "fabcli000007", "description":
+ "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "folderId": "170128a0-234a-431b-b133-4fc0dc6c2258"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2361,15 +2343,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '289'
+ - '277'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:52:33 GMT
+ - Wed, 20 May 2026 09:07:07 GMT
Pragma:
- no-cache
RequestId:
- - e7e8ab47-c9b7-4e17-9940-87c4b04e1da6
+ - ab23ddd8-481d-4b65-8b36-b3d7781d0799
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2395,55 +2377,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"requestId": "c5370741-7797-43ad-89e5-608687842dcf", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 7:52:51 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:52:34 GMT
- RequestId:
- - c5370741-7797-43ad-89e5-608687842dcf
- Retry-After:
- - '17'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
- response:
- body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id":
- "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id":
+ "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId":
+ "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2456,11 +2398,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:52:52 GMT
+ - Wed, 20 May 2026 09:07:08 GMT
Pragma:
- no-cache
RequestId:
- - 49cf4b0d-f4da-4ce4-ab39-c1bf13317590
+ - 024697e6-cc3a-403e-bf5b-3550aef187ad
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2486,15 +2428,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id":
- "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id":
+ "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId":
+ "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2507,11 +2449,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:52:53 GMT
+ - Wed, 20 May 2026 09:07:09 GMT
Pragma:
- no-cache
RequestId:
- - 33f15325-2d98-442e-9819-d40e9286cb97
+ - c6915c69-2f17-4f04-bc2f-5cc274e444d8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2537,15 +2479,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id":
- "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id":
+ "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId":
+ "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2558,11 +2500,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:52:54 GMT
+ - Wed, 20 May 2026 09:07:09 GMT
Pragma:
- no-cache
RequestId:
- - 3cdc80fa-1417-4e49-b0f2-81eda1cc77c9
+ - c9b51f93-f391-49f5-a5ff-eb337f7d6815
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2588,17 +2530,16 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items
response:
body:
- string: '{"value": [{"id": "92270156-79b2-409b-bd1a-bad40cff71fe", "type": "Notebook",
- "displayName": "fabcli000006", "workspaceId":
- "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe"},
- {"id": "a4517be4-4347-4fc9-9a6a-2dea722c8909", "type": "SparkJobDefinition",
- "displayName": "fabcli000007", "workspaceId":
- "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "b6217fa4-8911-4c8b-98c4-2507fb6fb87c"}]}'
+ string: '{"value": [{"id": "0485d3f6-d4ac-42e9-89da-b1411eb85bf0", "type": "Notebook",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a",
+ "folderId": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb"}, {"id": "e0829343-6e57-4aa6-b665-6913f1c56998",
+ "type": "SparkJobDefinition", "displayName": "fabcli000007", "description":
+ "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "folderId": "170128a0-234a-431b-b133-4fc0dc6c2258"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2607,15 +2548,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '289'
+ - '277'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:52:54 GMT
+ - Wed, 20 May 2026 09:07:11 GMT
Pragma:
- no-cache
RequestId:
- - 554dae55-55f9-4312-bd46-cf0445514621
+ - 289813d5-e698-4574-9710-420a3ccdddd9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2641,15 +2582,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id":
- "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id":
+ "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId":
+ "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2662,11 +2603,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:52:55 GMT
+ - Wed, 20 May 2026 09:07:12 GMT
Pragma:
- no-cache
RequestId:
- - fccd6125-4315-4927-8f00-3d6c19913852
+ - dec3bcb4-5052-4d5e-a0e3-982a8332a04c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2692,15 +2633,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id":
- "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id":
+ "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId":
+ "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2713,11 +2654,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:52:55 GMT
+ - Wed, 20 May 2026 09:07:12 GMT
Pragma:
- no-cache
RequestId:
- - 29d82aa8-53ce-4ba1-becd-9b83551e3630
+ - 8f3173ef-95a8-4df7-8dce-3568f60de181
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2743,15 +2684,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id":
- "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id":
+ "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId":
+ "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2764,11 +2705,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:52:56 GMT
+ - Wed, 20 May 2026 09:07:13 GMT
Pragma:
- no-cache
RequestId:
- - 2af68861-0be2-4ca8-b03c-072e40d8d769
+ - ac915579-0a8d-4224-9cc1-6e420a227d0e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2794,17 +2735,16 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items
response:
body:
- string: '{"value": [{"id": "92270156-79b2-409b-bd1a-bad40cff71fe", "type": "Notebook",
- "displayName": "fabcli000006", "workspaceId":
- "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe"},
- {"id": "a4517be4-4347-4fc9-9a6a-2dea722c8909", "type": "SparkJobDefinition",
- "displayName": "fabcli000007", "workspaceId":
- "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "b6217fa4-8911-4c8b-98c4-2507fb6fb87c"}]}'
+ string: '{"value": [{"id": "0485d3f6-d4ac-42e9-89da-b1411eb85bf0", "type": "Notebook",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a",
+ "folderId": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb"}, {"id": "e0829343-6e57-4aa6-b665-6913f1c56998",
+ "type": "SparkJobDefinition", "displayName": "fabcli000007", "description":
+ "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "folderId": "170128a0-234a-431b-b133-4fc0dc6c2258"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2813,15 +2753,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '289'
+ - '277'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:52:56 GMT
+ - Wed, 20 May 2026 09:07:14 GMT
Pragma:
- no-cache
RequestId:
- - a94701f6-9081-4bc9-abeb-2f40e1a1c72d
+ - c7ed78ac-b772-4323-b046-8dceb627556b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2847,15 +2787,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id":
- "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id":
+ "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId":
+ "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2868,11 +2808,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:52:58 GMT
+ - Wed, 20 May 2026 09:07:15 GMT
Pragma:
- no-cache
RequestId:
- - 22fb6715-8eb5-4b69-badd-982ccca6dd2e
+ - 39ee4f54-8e46-4f7d-af8e-615eecbff85b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2898,15 +2838,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id":
- "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id":
+ "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId":
+ "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2919,11 +2859,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:52:57 GMT
+ - Wed, 20 May 2026 09:07:16 GMT
Pragma:
- no-cache
RequestId:
- - 6c09a708-7f3b-49c1-89e4-04d7f0a537a8
+ - 4438bef8-c118-4743-9e89-254de5bee45f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2949,15 +2889,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id":
- "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id":
+ "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId":
+ "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2970,11 +2910,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:52:58 GMT
+ - Wed, 20 May 2026 09:07:18 GMT
Pragma:
- no-cache
RequestId:
- - abc7787d-c997-49bc-a0d5-c12399d5ed05
+ - e34376cd-a7e5-40d3-bf8c-2598830c518c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3000,16 +2940,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3018,15 +2961,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:52:59 GMT
+ - Wed, 20 May 2026 09:07:18 GMT
Pragma:
- no-cache
RequestId:
- - bcdf8169-c8cc-43fc-97bf-9306bf47ee1a
+ - 0717c022-f29c-4090-aff9-9ddeab0c534e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3052,15 +2995,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id":
+ "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId":
+ "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3069,15 +3012,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '203'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:52:59 GMT
+ - Wed, 20 May 2026 09:07:19 GMT
Pragma:
- no-cache
RequestId:
- - bce89db5-5e34-4786-8335-f7e1682f58c0
+ - 95fbd6e7-281f-42ae-aa4c-30f8fcaf829d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3103,55 +3046,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"requestId": "4f4db9ab-1262-4b50-9663-7c0bc2d6e086", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 7:53:54 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:53:00 GMT
- RequestId:
- - 4f4db9ab-1262-4b50-9663-7c0bc2d6e086
- Retry-After:
- - '53'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
- response:
- body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id":
+ "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId":
+ "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3160,15 +3063,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '203'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:53:57 GMT
+ - Wed, 20 May 2026 09:07:19 GMT
Pragma:
- no-cache
RequestId:
- - 257fdd68-6ad3-49b0-a23f-9de523d7d1d2
+ - d16a8976-1d08-434f-b6e7-40e181d6aa41
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3194,9 +3097,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/items
response:
body:
string: '{"value": []}'
@@ -3212,11 +3115,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:53:58 GMT
+ - Wed, 20 May 2026 09:07:21 GMT
Pragma:
- no-cache
RequestId:
- - 71fb9bfd-2809-4b01-8a7f-14931669eafc
+ - 184ce529-eb97-471d-ad6f-09a39a4489a4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3242,9 +3145,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/items
response:
body:
string: '{"value": []}'
@@ -3260,11 +3163,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:53:58 GMT
+ - Wed, 20 May 2026 09:07:21 GMT
Pragma:
- no-cache
RequestId:
- - 42a0f9af-cbd5-4a23-8af7-1f24fba6a9c6
+ - d2acca42-abdb-41f5-9450-79df47424614
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3290,9 +3193,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/items
response:
body:
string: '{"value": []}'
@@ -3308,11 +3211,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:53:59 GMT
+ - Wed, 20 May 2026 09:07:22 GMT
Pragma:
- no-cache
RequestId:
- - b1ed761b-b605-4880-8684-f6c3e6e04df6
+ - a181afea-5832-486c-b8ce-a945995b1540
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3338,14 +3241,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/items/92270156-79b2-409b-bd1a-bad40cff71fe
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items/0485d3f6-d4ac-42e9-89da-b1411eb85bf0
response:
body:
- string: '{"id": "92270156-79b2-409b-bd1a-bad40cff71fe", "type": "Notebook",
- "displayName": "fabcli000006", "workspaceId":
- "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe"}'
+ string: '{"id": "0485d3f6-d4ac-42e9-89da-b1411eb85bf0", "type": "Notebook",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a",
+ "folderId": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -3354,17 +3257,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '197'
+ - '181'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:54:00 GMT
+ - Wed, 20 May 2026 09:07:23 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - ec539ae7-0808-4c8a-bf8b-4da9ff6139f4
+ - 9ae2d317-e973-4977-9f95-e5434912c8d2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3392,9 +3295,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/items/92270156-79b2-409b-bd1a-bad40cff71fe/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items/0485d3f6-d4ac-42e9-89da-b1411eb85bf0/getDefinition
response:
body:
string: 'null'
@@ -3410,13 +3313,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:54:01 GMT
+ - Wed, 20 May 2026 09:07:24 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bba931ed-1a6a-4d67-9a07-753935196cc6
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fcb599cc-c191-4ed5-9c5b-a5ee05efb983
Pragma:
- no-cache
RequestId:
- - b135c583-d6bf-43e9-902b-ba8008b8f967
+ - 47b36c25-e86c-4c33-a365-7ba1372d8fc3
Retry-After:
- '20'
Strict-Transport-Security:
@@ -3430,7 +3333,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - bba931ed-1a6a-4d67-9a07-753935196cc6
+ - fcb599cc-c191-4ed5-9c5b-a5ee05efb983
status:
code: 202
message: Accepted
@@ -3446,13 +3349,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bba931ed-1a6a-4d67-9a07-753935196cc6
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fcb599cc-c191-4ed5-9c5b-a5ee05efb983
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:54:02.2932203",
- "lastUpdatedTimeUtc": "2026-02-06T07:54:02.6213465", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:07:24.8910454",
+ "lastUpdatedTimeUtc": "2026-05-20T09:07:25.6177985", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -3462,17 +3365,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '129'
+ - '131'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:54:24 GMT
+ - Wed, 20 May 2026 09:07:45 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bba931ed-1a6a-4d67-9a07-753935196cc6/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fcb599cc-c191-4ed5-9c5b-a5ee05efb983/result
Pragma:
- no-cache
RequestId:
- - 90ca05bc-244a-4a63-ad2c-3babc67a3eb2
+ - cbb1a27d-4bf4-4539-8673-3079ad832414
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3480,7 +3383,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - bba931ed-1a6a-4d67-9a07-753935196cc6
+ - fcb599cc-c191-4ed5-9c5b-a5ee05efb983
status:
code: 200
message: OK
@@ -3496,14 +3399,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bba931ed-1a6a-4d67-9a07-753935196cc6/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fcb599cc-c191-4ed5-9c5b-a5ee05efb983/result
response:
body:
string: '{"definition": {"parts": [{"path": "notebook-content.py", "payload":
"IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDYiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDYiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
"payloadType": "InlineBase64"}]}}'
headers:
Access-Control-Expose-Headers:
@@ -3515,11 +3418,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 07:54:24 GMT
+ - Wed, 20 May 2026 09:07:46 GMT
Pragma:
- no-cache
RequestId:
- - 77df1f8a-c4cf-4d33-8db8-a2cb210e9896
+ - 0a406637-c67f-4309-a806-16c4049b4a75
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -3532,10 +3435,10 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "Notebook", "displayName": "fabcli000006",
- "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDYiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
- "payloadType": "InlineBase64"}]}, "folderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b"}'
+ body: '{"type": "Notebook", "displayName": "fabcli000006", "definition": {"parts":
+ [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDYiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
+ "payloadType": "InlineBase64"}]}, "folderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7"}'
headers:
Accept:
- '*/*'
@@ -3544,14 +3447,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1286'
-
+ - '1238'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/items
response:
body:
string: 'null'
@@ -3567,15 +3469,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:54:26 GMT
+ - Wed, 20 May 2026 09:07:49 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e636a0da-2bbf-4acf-af6e-4b0472619b91
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/acf6a36b-f837-4667-adf0-e2802f681365
Pragma:
- no-cache
RequestId:
- - 888efacc-8a18-4f85-8f31-2b77cd569830
+ - 17082bb2-69d1-41f4-bd0d-60128f4e8187
Retry-After:
- '20'
Strict-Transport-Security:
@@ -3589,7 +3491,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - e636a0da-2bbf-4acf-af6e-4b0472619b91
+ - acf6a36b-f837-4667-adf0-e2802f681365
status:
code: 202
message: Accepted
@@ -3605,13 +3507,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e636a0da-2bbf-4acf-af6e-4b0472619b91
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/acf6a36b-f837-4667-adf0-e2802f681365
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:54:26.1879511",
- "lastUpdatedTimeUtc": "2026-02-06T07:54:27.703555", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:07:47.8357454",
+ "lastUpdatedTimeUtc": "2026-05-20T09:07:52.5001982", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -3621,17 +3523,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '130'
+ - '132'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:54:47 GMT
+ - Wed, 20 May 2026 09:08:10 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e636a0da-2bbf-4acf-af6e-4b0472619b91/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/acf6a36b-f837-4667-adf0-e2802f681365/result
Pragma:
- no-cache
RequestId:
- - eef096e0-eadf-4e1a-9afb-9c46b5a88775
+ - c453d201-3fc9-478b-9f5c-e5a2b3d0d650
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3639,7 +3541,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - e636a0da-2bbf-4acf-af6e-4b0472619b91
+ - acf6a36b-f837-4667-adf0-e2802f681365
status:
code: 200
message: OK
@@ -3655,14 +3557,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e636a0da-2bbf-4acf-af6e-4b0472619b91/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/acf6a36b-f837-4667-adf0-e2802f681365/result
response:
body:
- string: '{"id": "929f0151-40f6-4974-a346-61295f187e4e", "type": "Notebook",
- "displayName": "fabcli000006", "workspaceId":
- "f80ed229-5a94-47c4-b945-151d5c4e1734", "folderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b"}'
+ string: '{"id": "b9b11c90-13eb-48b2-ae6a-944ce04aa42f", "type": "Notebook",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf",
+ "folderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3673,11 +3575,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 07:54:49 GMT
+ - Wed, 20 May 2026 09:08:10 GMT
Pragma:
- no-cache
RequestId:
- - da1fcf3f-044c-4194-bcff-36520af36204
+ - 5dfeefd6-95dc-4428-b7e1-668ce6694a4e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -3701,17 +3603,16 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items
response:
body:
- string: '{"value": [{"id": "92270156-79b2-409b-bd1a-bad40cff71fe", "type": "Notebook",
- "displayName": "fabcli000006", "workspaceId":
- "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe"},
- {"id": "a4517be4-4347-4fc9-9a6a-2dea722c8909", "type": "SparkJobDefinition",
- "displayName": "fabcli000007", "workspaceId":
- "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "b6217fa4-8911-4c8b-98c4-2507fb6fb87c"}]}'
+ string: '{"value": [{"id": "0485d3f6-d4ac-42e9-89da-b1411eb85bf0", "type": "Notebook",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a",
+ "folderId": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb"}, {"id": "e0829343-6e57-4aa6-b665-6913f1c56998",
+ "type": "SparkJobDefinition", "displayName": "fabcli000007", "description":
+ "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "folderId": "170128a0-234a-431b-b133-4fc0dc6c2258"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3720,15 +3621,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '289'
+ - '277'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:54:50 GMT
+ - Wed, 20 May 2026 09:08:12 GMT
Pragma:
- no-cache
RequestId:
- - 84eb8898-1631-47d9-9a7d-33753efeab2c
+ - bdca479d-d1f1-4dc4-881a-ce6e31bedf86
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3754,15 +3655,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id":
- "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id":
+ "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId":
+ "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3775,11 +3676,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:54:51 GMT
+ - Wed, 20 May 2026 09:08:12 GMT
Pragma:
- no-cache
RequestId:
- - a3a5e865-335b-49b4-8a0e-a9b62e0cb1ab
+ - bd7fe385-80a8-4f91-b144-b828e8fd57fd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3805,15 +3706,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id":
- "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id":
+ "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId":
+ "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3826,11 +3727,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:54:52 GMT
+ - Wed, 20 May 2026 09:08:14 GMT
Pragma:
- no-cache
RequestId:
- - 2a651df8-5fd5-42fa-a431-a926af01ffe7
+ - 85267ca7-114b-4127-9f2e-a5fed9dfdaa4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3856,15 +3757,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id":
- "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id":
+ "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId":
+ "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3877,11 +3778,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:54:53 GMT
+ - Wed, 20 May 2026 09:08:15 GMT
Pragma:
- no-cache
RequestId:
- - f8d9b280-8018-47fb-adfc-ee84984ae3be
+ - cd30f17e-36d7-4bac-a2e0-91101fc125cb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3907,17 +3808,16 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items
response:
body:
- string: '{"value": [{"id": "92270156-79b2-409b-bd1a-bad40cff71fe", "type": "Notebook",
- "displayName": "fabcli000006", "workspaceId":
- "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe"},
- {"id": "a4517be4-4347-4fc9-9a6a-2dea722c8909", "type": "SparkJobDefinition",
- "displayName": "fabcli000007", "workspaceId":
- "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "b6217fa4-8911-4c8b-98c4-2507fb6fb87c"}]}'
+ string: '{"value": [{"id": "0485d3f6-d4ac-42e9-89da-b1411eb85bf0", "type": "Notebook",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a",
+ "folderId": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb"}, {"id": "e0829343-6e57-4aa6-b665-6913f1c56998",
+ "type": "SparkJobDefinition", "displayName": "fabcli000007", "description":
+ "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "folderId": "170128a0-234a-431b-b133-4fc0dc6c2258"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3926,15 +3826,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '289'
+ - '277'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:54:54 GMT
+ - Wed, 20 May 2026 09:08:15 GMT
Pragma:
- no-cache
RequestId:
- - 1d924fa2-2079-4c32-82c4-27c9d0fc3fac
+ - cdcc1a17-4dfc-4146-b9d9-6edb6e625723
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3960,15 +3860,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id":
- "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id":
+ "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId":
+ "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3981,11 +3881,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:54:54 GMT
+ - Wed, 20 May 2026 09:08:17 GMT
Pragma:
- no-cache
RequestId:
- - cc5e24ae-7a38-4661-8e8e-4e635e6d4cbb
+ - d25ac51b-d9bb-42d7-a692-80eeb3c12cff
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4011,15 +3911,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id":
- "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id":
+ "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId":
+ "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4032,11 +3932,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:54:55 GMT
+ - Wed, 20 May 2026 09:08:17 GMT
Pragma:
- no-cache
RequestId:
- - a3bff7c2-c859-44cf-9ab8-812e415996ef
+ - cf46ec53-8a6d-4073-90ad-696ea5d93753
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4062,15 +3962,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id":
- "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id":
+ "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId":
+ "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4083,11 +3983,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:54:56 GMT
+ - Wed, 20 May 2026 09:08:18 GMT
Pragma:
- no-cache
RequestId:
- - ca360e72-056d-4bf9-a4aa-05abca8926ab
+ - 888c3e49-2637-488e-8158-b33589ff4a8a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4113,16 +4013,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4131,15 +4034,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:54:57 GMT
+ - Wed, 20 May 2026 09:08:19 GMT
Pragma:
- no-cache
RequestId:
- - d33b9746-03d2-4052-948b-54604fcd0da5
+ - f81ce0d0-cee3-418b-b1fc-42a739bdcf26
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4165,15 +4068,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id":
+ "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId":
+ "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4182,15 +4085,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '203'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:54:58 GMT
+ - Wed, 20 May 2026 09:08:20 GMT
Pragma:
- no-cache
RequestId:
- - d7a19d95-385a-4477-9795-7a4503147ecb
+ - df71b3b0-b900-4c70-bf04-e37b8b106d38
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4216,15 +4119,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id":
+ "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId":
+ "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4233,15 +4136,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '203'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:54:58 GMT
+ - Wed, 20 May 2026 09:08:21 GMT
Pragma:
- no-cache
RequestId:
- - 0ff48f38-30af-47be-829f-85024aeaddd7
+ - 03fdae0d-94aa-4cdf-894f-18b30b4a3948
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4267,15 +4170,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id":
+ "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId":
+ "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4284,15 +4187,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '203'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:55:00 GMT
+ - Wed, 20 May 2026 09:08:22 GMT
Pragma:
- no-cache
RequestId:
- - 77286d0e-84e4-4882-88c9-dfe72943fc0c
+ - 28a9dcf1-d391-4605-8bc6-d14107864e20
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4318,15 +4221,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id":
+ "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId":
+ "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4335,15 +4238,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '203'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:55:01 GMT
+ - Wed, 20 May 2026 09:08:23 GMT
Pragma:
- no-cache
RequestId:
- - 114ceb91-dcc3-47c9-b0c6-bcf3fce4becb
+ - c03093f1-27e5-4abd-a561-56c3f47dde51
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4358,8 +4261,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000004", "parentFolderId":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b"}'
+ body: '{"displayName": "fabcli000004", "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7"}'
headers:
Accept:
- '*/*'
@@ -4369,17 +4271,16 @@ interactions:
- keep-alive
Content-Length:
- '93'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders
response:
body:
- string: '{"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004",
- "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}'
+ string: '{"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004",
+ "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -4388,17 +4289,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '165'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:55:02 GMT
+ - Wed, 20 May 2026 09:08:24 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders/106edf30-9814-456c-a065-61d2ba9ffe11
+ - https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders/931f8db2-d93d-49af-b62a-3141c57e2bf4
Pragma:
- no-cache
RequestId:
- - 9cd2f14a-dc14-4ebd-bc6e-c5b998d68575
+ - f2a9026a-8b62-4dd4-982f-c717d9330f76
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4424,17 +4325,16 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items
response:
body:
- string: '{"value": [{"id": "92270156-79b2-409b-bd1a-bad40cff71fe", "type": "Notebook",
- "displayName": "fabcli000006", "workspaceId":
- "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe"},
- {"id": "a4517be4-4347-4fc9-9a6a-2dea722c8909", "type": "SparkJobDefinition",
- "displayName": "fabcli000007", "workspaceId":
- "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "b6217fa4-8911-4c8b-98c4-2507fb6fb87c"}]}'
+ string: '{"value": [{"id": "0485d3f6-d4ac-42e9-89da-b1411eb85bf0", "type": "Notebook",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a",
+ "folderId": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb"}, {"id": "e0829343-6e57-4aa6-b665-6913f1c56998",
+ "type": "SparkJobDefinition", "displayName": "fabcli000007", "description":
+ "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "folderId": "170128a0-234a-431b-b133-4fc0dc6c2258"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4443,15 +4343,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '289'
+ - '277'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:55:03 GMT
+ - Wed, 20 May 2026 09:08:25 GMT
Pragma:
- no-cache
RequestId:
- - e61b5441-3b1f-4533-8cbb-cdfc3dc9e9e6
+ - 5eff2b13-dc0a-4b30-b271-e97d22edf108
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4477,15 +4377,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id":
- "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id":
+ "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId":
+ "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4498,11 +4398,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:55:03 GMT
+ - Wed, 20 May 2026 09:08:26 GMT
Pragma:
- no-cache
RequestId:
- - 36d44062-9eb9-4289-990e-d40bf4ffaa44
+ - 3c0205c1-bc2d-440b-9fa6-53284859bcd1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4528,15 +4428,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id":
- "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id":
+ "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId":
+ "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4549,11 +4449,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:55:04 GMT
+ - Wed, 20 May 2026 09:08:26 GMT
Pragma:
- no-cache
RequestId:
- - 0bbf4f98-9a7b-4459-bff9-44db62996a81
+ - fec8557c-1661-47ca-b88d-4525f35decbe
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4579,15 +4479,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id":
- "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id":
+ "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId":
+ "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4600,11 +4500,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:55:04 GMT
+ - Wed, 20 May 2026 09:08:27 GMT
Pragma:
- no-cache
RequestId:
- - 3d594cc4-2894-40da-a162-bee4d0655fde
+ - dff7690f-390f-4304-b260-3234d83f30b6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4630,16 +4530,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4648,15 +4551,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:55:05 GMT
+ - Wed, 20 May 2026 09:08:28 GMT
Pragma:
- no-cache
RequestId:
- - 59dd6427-0418-4a09-9ed0-7e1375360d7e
+ - ae378b6d-f5b5-4003-bfdf-1300b9fbb009
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4682,17 +4585,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"},
- {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004",
- "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id":
+ "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId":
+ "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"},
+ {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004",
+ "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4705,11 +4608,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:55:05 GMT
+ - Wed, 20 May 2026 09:08:29 GMT
Pragma:
- no-cache
RequestId:
- - 882a4852-2334-47ac-96dd-1759f9fddbb6
+ - d9f2e62c-d3d8-4fd2-a54e-af925aa5e1e0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4735,17 +4638,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"},
- {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004",
- "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id":
+ "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId":
+ "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"},
+ {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004",
+ "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4758,11 +4661,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:55:06 GMT
+ - Wed, 20 May 2026 09:08:30 GMT
Pragma:
- no-cache
RequestId:
- - 66c9f1fd-776b-4c15-8d6b-11e48d375867
+ - a9657023-b73e-4adf-91e9-a897ab380262
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4788,17 +4691,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"},
- {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004",
- "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id":
+ "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId":
+ "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"},
+ {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004",
+ "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4811,11 +4714,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:55:07 GMT
+ - Wed, 20 May 2026 09:08:31 GMT
Pragma:
- no-cache
RequestId:
- - 0c82119f-bcfc-46f5-9dbd-762f85b02f1f
+ - 8e6c8c35-d628-43d6-a60b-7df773a9c60e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4841,14 +4744,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/items
response:
body:
- string: '{"value": [{"id": "929f0151-40f6-4974-a346-61295f187e4e", "type": "Notebook",
- "displayName": "fabcli000006", "workspaceId":
- "f80ed229-5a94-47c4-b945-151d5c4e1734", "folderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b"}]}'
+ string: '{"value": [{"id": "b9b11c90-13eb-48b2-ae6a-944ce04aa42f", "type": "Notebook",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf",
+ "folderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4857,15 +4760,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '210'
+ - '195'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:55:08 GMT
+ - Wed, 20 May 2026 09:08:31 GMT
Pragma:
- no-cache
RequestId:
- - f6394a26-c3a4-4cdc-bb7d-356224a4fbc5
+ - 97c7bb5d-8a0f-444b-a36d-092cff94ded6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4891,57 +4794,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
- response:
- body:
- string: '{"requestId": "def6c854-7488-40c6-9242-3777c80cf9ff", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 7:55:59 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:55:09 GMT
- RequestId:
- - def6c854-7488-40c6-9242-3777c80cf9ff
- Retry-After:
- - '50'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"},
- {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004",
- "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id":
+ "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId":
+ "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"},
+ {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004",
+ "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4954,11 +4817,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:56:02 GMT
+ - Wed, 20 May 2026 09:08:32 GMT
Pragma:
- no-cache
RequestId:
- - b55d2ad6-7b5e-46f6-8569-81247ee0283b
+ - c640e2ea-ee05-472e-8543-143cff395c7a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4984,14 +4847,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/items
response:
body:
- string: '{"value": [{"id": "929f0151-40f6-4974-a346-61295f187e4e", "type": "Notebook",
- "displayName": "fabcli000006", "workspaceId":
- "f80ed229-5a94-47c4-b945-151d5c4e1734", "folderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b"}]}'
+ string: '{"value": [{"id": "b9b11c90-13eb-48b2-ae6a-944ce04aa42f", "type": "Notebook",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf",
+ "folderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5000,15 +4863,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '210'
+ - '195'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:56:03 GMT
+ - Wed, 20 May 2026 09:08:33 GMT
Pragma:
- no-cache
RequestId:
- - 26e54010-5abe-497b-b570-29c0c6a4c332
+ - 6bf5ba3b-779b-45b7-81c9-c3676685c48d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5034,17 +4897,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"},
- {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004",
- "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id":
+ "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId":
+ "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"},
+ {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004",
+ "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5057,11 +4920,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:56:03 GMT
+ - Wed, 20 May 2026 09:08:34 GMT
Pragma:
- no-cache
RequestId:
- - 48e3dbf9-784d-4f03-a9bb-44c9569fb83e
+ - 5423374c-ceb6-4978-9368-b89836b7d623
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5087,14 +4950,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/items
response:
body:
- string: '{"value": [{"id": "929f0151-40f6-4974-a346-61295f187e4e", "type": "Notebook",
- "displayName": "fabcli000006", "workspaceId":
- "f80ed229-5a94-47c4-b945-151d5c4e1734", "folderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b"}]}'
+ string: '{"value": [{"id": "b9b11c90-13eb-48b2-ae6a-944ce04aa42f", "type": "Notebook",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf",
+ "folderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5103,15 +4966,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '210'
+ - '195'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:56:05 GMT
+ - Wed, 20 May 2026 09:08:35 GMT
Pragma:
- no-cache
RequestId:
- - e67b5961-b65e-482e-ae9e-172a1da39dc6
+ - d2e170d8-c037-433f-92b4-14adad87fcfa
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5137,17 +5000,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"},
- {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004",
- "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id":
+ "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId":
+ "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"},
+ {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004",
+ "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5160,11 +5023,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:56:06 GMT
+ - Wed, 20 May 2026 09:08:36 GMT
Pragma:
- no-cache
RequestId:
- - 8e5688ab-225f-4b36-833c-06a823b7fea7
+ - f9367196-3108-421f-b8a4-39d9f1efef8f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5190,14 +5053,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/items/a4517be4-4347-4fc9-9a6a-2dea722c8909
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items/e0829343-6e57-4aa6-b665-6913f1c56998
response:
body:
- string: '{"id": "a4517be4-4347-4fc9-9a6a-2dea722c8909", "type": "SparkJobDefinition",
- "displayName": "fabcli000007", "workspaceId":
- "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "b6217fa4-8911-4c8b-98c4-2507fb6fb87c"}'
+ string: '{"id": "e0829343-6e57-4aa6-b665-6913f1c56998", "type": "SparkJobDefinition",
+ "displayName": "fabcli000007", "description": "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a",
+ "folderId": "170128a0-234a-431b-b133-4fc0dc6c2258"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -5206,17 +5069,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '204'
+ - '195'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:56:06 GMT
+ - Wed, 20 May 2026 09:08:36 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - db42a8f0-2a0e-40da-a7ad-8a6b8491f7bc
+ - 8093fd98-4e08-4455-ae4d-dae0a89c29ce
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5244,14 +5107,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/items/a4517be4-4347-4fc9-9a6a-2dea722c8909/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items/e0829343-6e57-4aa6-b665-6913f1c56998/getDefinition
response:
body:
string: '{"definition": {"parts": [{"path": "SparkJobDefinitionV1.json", "payload":
"ew0KICAiZXhlY3V0YWJsZUZpbGUiOiBudWxsLA0KICAiZGVmYXVsdExha2Vob3VzZUFydGlmYWN0SWQiOiBudWxsLA0KICAibWFpbkNsYXNzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMYWtlaG91c2VJZHMiOiBbXSwNCiAgInJldHJ5UG9saWN5IjogbnVsbCwNCiAgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMaWJyYXJ5VXJpcyI6IG51bGwsDQogICJsYW5ndWFnZSI6IG51bGwsDQogICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsDQp9",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA3IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA3IgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
"payloadType": "InlineBase64"}]}}'
headers:
Access-Control-Expose-Headers:
@@ -5261,15 +5124,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '617'
+ - '585'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:56:08 GMT
+ - Wed, 20 May 2026 09:08:39 GMT
Pragma:
- no-cache
RequestId:
- - d196506c-d134-44f9-aabf-1cbe8ad4a1e5
+ - d23bee69-d2aa-4269-952e-9b47abded8e3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5284,11 +5147,10 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "SparkJobDefinition", "displayName":
- "fabcli000007", "definition": {"parts": [{"path": "SparkJobDefinitionV1.json",
- "payload": "ew0KICAiZXhlY3V0YWJsZUZpbGUiOiBudWxsLA0KICAiZGVmYXVsdExha2Vob3VzZUFydGlmYWN0SWQiOiBudWxsLA0KICAibWFpbkNsYXNzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMYWtlaG91c2VJZHMiOiBbXSwNCiAgInJldHJ5UG9saWN5IjogbnVsbCwNCiAgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMaWJyYXJ5VXJpcyI6IG51bGwsDQogICJsYW5ndWFnZSI6IG51bGwsDQogICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsDQp9",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA3IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
- "payloadType": "InlineBase64"}]}, "folderId": "106edf30-9814-456c-a065-61d2ba9ffe11"}'
+ body: '{"type": "SparkJobDefinition", "displayName": "fabcli000007", "definition":
+ {"parts": [{"path": "SparkJobDefinitionV1.json", "payload": "ew0KICAiZXhlY3V0YWJsZUZpbGUiOiBudWxsLA0KICAiZGVmYXVsdExha2Vob3VzZUFydGlmYWN0SWQiOiBudWxsLA0KICAibWFpbkNsYXNzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMYWtlaG91c2VJZHMiOiBbXSwNCiAgInJldHJ5UG9saWN5IjogbnVsbCwNCiAgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMaWJyYXJ5VXJpcyI6IG51bGwsDQogICJsYW5ndWFnZSI6IG51bGwsDQogICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsDQp9",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA3IgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
+ "payloadType": "InlineBase64"}]}, "folderId": "931f8db2-d93d-49af-b62a-3141c57e2bf4"}'
headers:
Accept:
- '*/*'
@@ -5297,19 +5159,18 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1126'
-
+ - '1074'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/items
response:
body:
- string: '{"id": "fb81e7f4-338b-4d77-ac4d-05fb43000131", "type": "SparkJobDefinition",
- "displayName": "fabcli000007", "workspaceId":
- "f80ed229-5a94-47c4-b945-151d5c4e1734", "folderId": "106edf30-9814-456c-a065-61d2ba9ffe11"}'
+ string: '{"id": "7faf7942-e738-47e7-88f4-3bdbd66dbb02", "type": "SparkJobDefinition",
+ "displayName": "fabcli000007", "description": "", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf",
+ "folderId": "931f8db2-d93d-49af-b62a-3141c57e2bf4"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -5318,17 +5179,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '203'
+ - '195'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:56:10 GMT
+ - Wed, 20 May 2026 09:08:42 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 09970700-37f1-46ed-b425-3b77f4134142
+ - 34803a8b-a7d5-44af-8c44-f0a66b0008f1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5354,16 +5215,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5372,15 +5236,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:56:11 GMT
+ - Wed, 20 May 2026 09:08:43 GMT
Pragma:
- no-cache
RequestId:
- - 60539473-d781-4516-9a02-1e95868a7279
+ - 4fdab48c-72f8-4169-8e38-50970213b064
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5406,17 +5270,16 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/items
response:
body:
- string: '{"value": [{"id": "929f0151-40f6-4974-a346-61295f187e4e", "type": "Notebook",
- "displayName": "fabcli000006", "workspaceId":
- "f80ed229-5a94-47c4-b945-151d5c4e1734", "folderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b"},
- {"id": "fb81e7f4-338b-4d77-ac4d-05fb43000131", "type": "SparkJobDefinition",
- "displayName": "fabcli000007", "workspaceId":
- "f80ed229-5a94-47c4-b945-151d5c4e1734", "folderId": "106edf30-9814-456c-a065-61d2ba9ffe11"}]}'
+ string: '{"value": [{"id": "b9b11c90-13eb-48b2-ae6a-944ce04aa42f", "type": "Notebook",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf",
+ "folderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7"}, {"id": "7faf7942-e738-47e7-88f4-3bdbd66dbb02",
+ "type": "SparkJobDefinition", "displayName": "fabcli000007", "description":
+ "", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "folderId": "931f8db2-d93d-49af-b62a-3141c57e2bf4"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5425,15 +5288,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '291'
+ - '278'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:56:12 GMT
+ - Wed, 20 May 2026 09:08:43 GMT
Pragma:
- no-cache
RequestId:
- - 5ce80732-00bb-464e-a831-edb8a1781ca9
+ - 6d3cbf8d-116e-48ee-bacc-6920fd67395d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5459,17 +5322,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"},
- {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004",
- "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id":
+ "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId":
+ "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"},
+ {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004",
+ "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5482,11 +5345,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:56:12 GMT
+ - Wed, 20 May 2026 09:08:44 GMT
Pragma:
- no-cache
RequestId:
- - 13664f0b-a38a-454a-8b69-9f4b3d55e52e
+ - 1b21ee18-247b-4548-af2e-25c889da24c9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5512,17 +5375,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"},
- {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004",
- "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id":
+ "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId":
+ "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"},
+ {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004",
+ "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5535,11 +5398,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:56:14 GMT
+ - Wed, 20 May 2026 09:08:45 GMT
Pragma:
- no-cache
RequestId:
- - 9bffda53-356d-4201-a448-5f13c4f15a24
+ - ea039ffd-feff-4d2a-ab8d-6c59cef02f3f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5565,17 +5428,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"},
- {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004",
- "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id":
+ "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId":
+ "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"},
+ {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004",
+ "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5588,11 +5451,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:56:15 GMT
+ - Wed, 20 May 2026 09:08:46 GMT
Pragma:
- no-cache
RequestId:
- - 47410b61-cd1e-4db9-8c21-6ecab2fb6f3d
+ - 1d91d8c7-d82d-45f1-9a50-10429c65b87f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5618,16 +5481,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5636,15 +5502,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:56:15 GMT
+ - Wed, 20 May 2026 09:08:46 GMT
Pragma:
- no-cache
RequestId:
- - e799a751-7182-447a-a3b2-b0201e3592fa
+ - 3de74c59-c7ac-4ec6-aaca-890edc9b49dc
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5670,17 +5536,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"},
- {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004",
- "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id":
+ "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId":
+ "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"},
+ {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004",
+ "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5693,11 +5559,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:56:16 GMT
+ - Wed, 20 May 2026 09:08:47 GMT
Pragma:
- no-cache
RequestId:
- - 9355e02c-fad5-4402-8508-6167dc26a305
+ - cab41a3c-cd9a-4f14-bf78-3c5b9c5fc40b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5723,17 +5589,16 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/items
response:
body:
- string: '{"value": [{"id": "929f0151-40f6-4974-a346-61295f187e4e", "type": "Notebook",
- "displayName": "fabcli000006", "workspaceId":
- "f80ed229-5a94-47c4-b945-151d5c4e1734", "folderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b"},
- {"id": "fb81e7f4-338b-4d77-ac4d-05fb43000131", "type": "SparkJobDefinition",
- "displayName": "fabcli000007", "workspaceId":
- "f80ed229-5a94-47c4-b945-151d5c4e1734", "folderId": "106edf30-9814-456c-a065-61d2ba9ffe11"}]}'
+ string: '{"value": [{"id": "b9b11c90-13eb-48b2-ae6a-944ce04aa42f", "type": "Notebook",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf",
+ "folderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7"}, {"id": "7faf7942-e738-47e7-88f4-3bdbd66dbb02",
+ "type": "SparkJobDefinition", "displayName": "fabcli000007", "description":
+ "", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "folderId": "931f8db2-d93d-49af-b62a-3141c57e2bf4"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5742,15 +5607,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '291'
+ - '278'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:56:16 GMT
+ - Wed, 20 May 2026 09:08:48 GMT
Pragma:
- no-cache
RequestId:
- - 2f80249a-1f34-43e8-8536-c29e691315e1
+ - 3e79c0c3-e43c-4878-91ec-0d1542527fd3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5776,17 +5641,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"},
- {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004",
- "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id":
+ "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId":
+ "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"},
+ {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004",
+ "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5799,11 +5664,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:56:18 GMT
+ - Wed, 20 May 2026 09:08:49 GMT
Pragma:
- no-cache
RequestId:
- - b929b311-c592-40af-b4cc-5384a0f956bf
+ - 848d062d-682a-4576-a0fc-31b048d36290
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5829,17 +5694,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"},
- {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004",
- "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id":
+ "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId":
+ "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"},
+ {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004",
+ "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5852,11 +5717,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:56:18 GMT
+ - Wed, 20 May 2026 09:08:50 GMT
Pragma:
- no-cache
RequestId:
- - b9248c63-8924-4e94-ae20-5f317e9f09c5
+ - 53a8cf3c-4d40-4f91-a138-0e2eb8dd116d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5882,17 +5747,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"},
- {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004",
- "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id":
+ "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId":
+ "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"},
+ {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004",
+ "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5905,11 +5770,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:56:19 GMT
+ - Wed, 20 May 2026 09:08:51 GMT
Pragma:
- no-cache
RequestId:
- - 314e384c-fc42-4fe9-915c-e83add2f5f67
+ - b50e2f32-8061-42d8-bec5-d1383259eb3d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5935,16 +5800,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5953,15 +5821,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:56:19 GMT
+ - Wed, 20 May 2026 09:08:51 GMT
Pragma:
- no-cache
RequestId:
- - 2a5b444a-838a-430c-9479-c1fbdc6cd49c
+ - 4ac3cc3b-3816-4151-8c10-f20d56c5dc6c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5987,57 +5855,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
- response:
- body:
- string: '{"requestId": "04c7c7e0-5cf3-491c-bbca-254b823ed312", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 7:57:03 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:56:20 GMT
- RequestId:
- - 04c7c7e0-5cf3-491c-bbca-254b823ed312
- Retry-After:
- - '42'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"},
- {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004",
- "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id":
+ "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId":
+ "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"},
+ {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004",
+ "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -6050,11 +5878,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:57:05 GMT
+ - Wed, 20 May 2026 09:08:52 GMT
Pragma:
- no-cache
RequestId:
- - 4547bf1a-70d8-4a4d-88d8-6887b4eccfe5
+ - 060c8467-df90-467b-99c8-db8671d960ab
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6080,17 +5908,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"},
- {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004",
- "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id":
+ "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId":
+ "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"},
+ {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004",
+ "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -6103,11 +5931,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:57:06 GMT
+ - Wed, 20 May 2026 09:08:53 GMT
Pragma:
- no-cache
RequestId:
- - 8da87230-2ab5-4aa0-bec0-af5dccaf273b
+ - f4d27792-3572-41ee-9eea-9e6df41ed0d3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6133,17 +5961,16 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/items
response:
body:
- string: '{"value": [{"id": "929f0151-40f6-4974-a346-61295f187e4e", "type": "Notebook",
- "displayName": "fabcli000006", "workspaceId":
- "f80ed229-5a94-47c4-b945-151d5c4e1734", "folderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b"},
- {"id": "fb81e7f4-338b-4d77-ac4d-05fb43000131", "type": "SparkJobDefinition",
- "displayName": "fabcli000007", "workspaceId":
- "f80ed229-5a94-47c4-b945-151d5c4e1734", "folderId": "106edf30-9814-456c-a065-61d2ba9ffe11"}]}'
+ string: '{"value": [{"id": "b9b11c90-13eb-48b2-ae6a-944ce04aa42f", "type": "Notebook",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf",
+ "folderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7"}, {"id": "7faf7942-e738-47e7-88f4-3bdbd66dbb02",
+ "type": "SparkJobDefinition", "displayName": "fabcli000007", "description":
+ "", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "folderId": "931f8db2-d93d-49af-b62a-3141c57e2bf4"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -6152,15 +5979,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '291'
+ - '278'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:57:07 GMT
+ - Wed, 20 May 2026 09:08:54 GMT
Pragma:
- no-cache
RequestId:
- - 4638251f-a443-46a2-866a-c8e9de144ee8
+ - c051197d-99ca-4fed-99a4-1c8212900d0c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6186,17 +6013,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"},
- {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004",
- "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id":
+ "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId":
+ "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"},
+ {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004",
+ "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -6209,11 +6036,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:57:08 GMT
+ - Wed, 20 May 2026 09:08:55 GMT
Pragma:
- no-cache
RequestId:
- - 4bc53337-2bc6-4494-8f64-fa2907bd5f8b
+ - 9cda14d0-b727-459e-8f26-97aa602534eb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6239,17 +6066,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"},
- {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004",
- "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id":
+ "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId":
+ "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"},
+ {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004",
+ "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -6262,11 +6089,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:57:09 GMT
+ - Wed, 20 May 2026 09:08:56 GMT
Pragma:
- no-cache
RequestId:
- - 9d5f5a3a-837c-4c50-9805-1b3f33c4ad44
+ - 7e2c8381-6702-4de1-ab44-58ceb3433735
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6292,17 +6119,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"},
- {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004",
- "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id":
+ "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId":
+ "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"},
+ {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004",
+ "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -6315,11 +6142,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:57:10 GMT
+ - Wed, 20 May 2026 09:08:56 GMT
Pragma:
- no-cache
RequestId:
- - 8f859d29-7293-4ad7-aacb-21b2772f7c8e
+ - 5b5f54b1-005e-4e30-b737-57d0a395a1fc
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6345,16 +6172,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -6363,15 +6193,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:57:11 GMT
+ - Wed, 20 May 2026 09:08:57 GMT
Pragma:
- no-cache
RequestId:
- - 4e571a74-848b-4713-95ce-4dc9aa33b88e
+ - 77b79187-12ba-4df7-96c7-18cc800dc549
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6397,17 +6227,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"},
- {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004",
- "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id":
+ "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId":
+ "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"},
+ {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004",
+ "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -6420,11 +6250,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:57:11 GMT
+ - Wed, 20 May 2026 09:08:57 GMT
Pragma:
- no-cache
RequestId:
- - 81f6027e-8e6d-4289-a514-da3a6718773e
+ - 56700b71-8e86-4971-894c-0041698fcf91
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6450,17 +6280,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"},
- {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004",
- "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id":
+ "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId":
+ "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"},
+ {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004",
+ "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -6473,11 +6303,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:57:12 GMT
+ - Wed, 20 May 2026 09:08:57 GMT
Pragma:
- no-cache
RequestId:
- - 09d90219-5f66-4242-9609-9e444a4291d0
+ - 5a6a2d24-9077-4620-9b43-06774d95cc61
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6503,17 +6333,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"},
- {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004",
- "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id":
+ "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId":
+ "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"},
+ {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004",
+ "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -6526,11 +6356,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:57:13 GMT
+ - Wed, 20 May 2026 09:08:58 GMT
Pragma:
- no-cache
RequestId:
- - 448f1c19-afd6-45ca-b65b-b17016d0d749
+ - 0bda5330-9c50-4198-97ff-2390dc1cceae
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6556,17 +6386,16 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/items
response:
body:
- string: '{"value": [{"id": "929f0151-40f6-4974-a346-61295f187e4e", "type": "Notebook",
- "displayName": "fabcli000006", "workspaceId":
- "f80ed229-5a94-47c4-b945-151d5c4e1734", "folderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b"},
- {"id": "fb81e7f4-338b-4d77-ac4d-05fb43000131", "type": "SparkJobDefinition",
- "displayName": "fabcli000007", "workspaceId":
- "f80ed229-5a94-47c4-b945-151d5c4e1734", "folderId": "106edf30-9814-456c-a065-61d2ba9ffe11"}]}'
+ string: '{"value": [{"id": "b9b11c90-13eb-48b2-ae6a-944ce04aa42f", "type": "Notebook",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf",
+ "folderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7"}, {"id": "7faf7942-e738-47e7-88f4-3bdbd66dbb02",
+ "type": "SparkJobDefinition", "displayName": "fabcli000007", "description":
+ "", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "folderId": "931f8db2-d93d-49af-b62a-3141c57e2bf4"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -6575,15 +6404,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '291'
+ - '278'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:57:13 GMT
+ - Wed, 20 May 2026 09:08:59 GMT
Pragma:
- no-cache
RequestId:
- - 19fce5fe-d570-46c0-a3d6-65498ad79307
+ - 30b4ba0d-be1f-46d0-91ad-0c983bc5da7e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6609,17 +6438,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"},
- {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004",
- "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id":
+ "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId":
+ "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"},
+ {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004",
+ "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -6632,11 +6461,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:57:14 GMT
+ - Wed, 20 May 2026 09:09:00 GMT
Pragma:
- no-cache
RequestId:
- - a99ed911-a2d0-4231-b9d7-1f2c7e1d9f96
+ - ba2a4153-bd68-4caf-8f16-2f7c73c8f69f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6662,17 +6491,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"},
- {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004",
- "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id":
+ "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId":
+ "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"},
+ {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004",
+ "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -6685,11 +6514,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:57:15 GMT
+ - Wed, 20 May 2026 09:09:00 GMT
Pragma:
- no-cache
RequestId:
- - 845f4aca-d219-4666-a5fc-ab532314da91
+ - 4879c956-d3ec-4a0c-92d7-0142f3d414a0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6715,57 +6544,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"requestId": "cbddaaa2-181f-49d0-b874-ee919b709588", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 7:58:07 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:57:17 GMT
- RequestId:
- - cbddaaa2-181f-49d0-b874-ee919b709588
- Retry-After:
- - '50'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
- response:
- body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"},
- {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004",
- "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id":
+ "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId":
+ "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"},
+ {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004",
+ "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -6778,11 +6567,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:58:10 GMT
+ - Wed, 20 May 2026 09:09:02 GMT
Pragma:
- no-cache
RequestId:
- - 561fc628-81ac-4226-b2ca-9fea2f690c4c
+ - 31f18656-487e-4344-8108-6b670495e053
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6808,16 +6597,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -6826,15 +6618,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:58:11 GMT
+ - Wed, 20 May 2026 09:09:03 GMT
Pragma:
- no-cache
RequestId:
- - 36faed39-269b-409b-8f99-57a1297800eb
+ - 409a0f4f-35af-41bf-b6b4-acc6930dbba7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6860,15 +6652,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id":
- "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id":
+ "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId":
+ "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -6881,11 +6673,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:58:12 GMT
+ - Wed, 20 May 2026 09:09:03 GMT
Pragma:
- no-cache
RequestId:
- - c4e8c43c-8343-4a34-a3e0-bf03f1a9891e
+ - 300341f2-959f-4d0e-a83f-c7ac41079789
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6911,15 +6703,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id":
- "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id":
+ "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId":
+ "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -6932,11 +6724,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:58:12 GMT
+ - Wed, 20 May 2026 09:09:04 GMT
Pragma:
- no-cache
RequestId:
- - b9cd1235-40ba-4480-9173-90107a10dacf
+ - c5d194f3-53ea-474c-b1b6-2e0f79cd5597
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6962,17 +6754,16 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items
response:
body:
- string: '{"value": [{"id": "92270156-79b2-409b-bd1a-bad40cff71fe", "type": "Notebook",
- "displayName": "fabcli000006", "workspaceId":
- "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe"},
- {"id": "a4517be4-4347-4fc9-9a6a-2dea722c8909", "type": "SparkJobDefinition",
- "displayName": "fabcli000007", "workspaceId":
- "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "b6217fa4-8911-4c8b-98c4-2507fb6fb87c"}]}'
+ string: '{"value": [{"id": "0485d3f6-d4ac-42e9-89da-b1411eb85bf0", "type": "Notebook",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a",
+ "folderId": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb"}, {"id": "e0829343-6e57-4aa6-b665-6913f1c56998",
+ "type": "SparkJobDefinition", "displayName": "fabcli000007", "description":
+ "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "folderId": "170128a0-234a-431b-b133-4fc0dc6c2258"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -6981,15 +6772,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '289'
+ - '277'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:58:13 GMT
+ - Wed, 20 May 2026 09:09:05 GMT
Pragma:
- no-cache
RequestId:
- - b32f1e62-9dca-49fa-a962-fd9cb896fa1a
+ - ada78bef-471c-4a8f-b9ac-2a90d7b45d25
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7015,15 +6806,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id":
- "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id":
+ "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId":
+ "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -7036,11 +6827,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:58:15 GMT
+ - Wed, 20 May 2026 09:09:06 GMT
Pragma:
- no-cache
RequestId:
- - aef7f152-0242-40c7-b995-06e0c6e020f5
+ - 8e6b650e-2b3f-4e53-9425-38208bbf2c14
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7066,15 +6857,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id":
- "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id":
+ "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId":
+ "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -7087,11 +6878,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:58:15 GMT
+ - Wed, 20 May 2026 09:09:07 GMT
Pragma:
- no-cache
RequestId:
- - ecc33e69-948d-4dd8-b9f2-903e71041105
+ - fe96dfc8-f7d4-4d8d-83a4-ee6d27368149
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7119,9 +6910,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/items/a4517be4-4347-4fc9-9a6a-2dea722c8909
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items/e0829343-6e57-4aa6-b665-6913f1c56998
response:
body:
string: ''
@@ -7137,11 +6928,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:58:15 GMT
+ - Wed, 20 May 2026 09:09:07 GMT
Pragma:
- no-cache
RequestId:
- - 48bd7b43-14ed-4b0d-9963-a966392e13ab
+ - 88f31d68-d50e-4d44-922e-5c6b396ab1eb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7167,16 +6958,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -7185,15 +6979,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:58:17 GMT
+ - Wed, 20 May 2026 09:09:08 GMT
Pragma:
- no-cache
RequestId:
- - ebd0646b-8e75-4101-80e7-499e8db8571c
+ - aae0bb5b-c95b-4161-8e06-1c192c0706cc
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7219,15 +7013,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id":
- "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id":
+ "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId":
+ "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -7240,11 +7034,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:58:17 GMT
+ - Wed, 20 May 2026 09:09:09 GMT
Pragma:
- no-cache
RequestId:
- - 4032e33a-e9a9-4f65-829e-c3cdd6c67fc1
+ - 4095079d-a281-449d-9413-d02e2a84dde3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7270,14 +7064,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items
response:
body:
- string: '{"value": [{"id": "92270156-79b2-409b-bd1a-bad40cff71fe", "type": "Notebook",
- "displayName": "fabcli000006", "workspaceId":
- "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe"}]}'
+ string: '{"value": [{"id": "0485d3f6-d4ac-42e9-89da-b1411eb85bf0", "type": "Notebook",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a",
+ "folderId": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -7286,15 +7080,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '209'
+ - '195'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:58:18 GMT
+ - Wed, 20 May 2026 09:09:10 GMT
Pragma:
- no-cache
RequestId:
- - c27d989b-eafc-4a7b-943e-6529735be928
+ - cbdbe3af-b488-4d88-b9a2-b7b23b144f11
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7320,15 +7114,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id":
- "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id":
+ "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId":
+ "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -7341,11 +7135,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:58:19 GMT
+ - Wed, 20 May 2026 09:09:11 GMT
Pragma:
- no-cache
RequestId:
- - 3cf2cf92-10db-4b8e-9053-08afce841e12
+ - b9fdb057-543a-4896-8627-703c031c69d2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7373,9 +7167,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/items/92270156-79b2-409b-bd1a-bad40cff71fe
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items/0485d3f6-d4ac-42e9-89da-b1411eb85bf0
response:
body:
string: ''
@@ -7391,11 +7185,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:58:20 GMT
+ - Wed, 20 May 2026 09:09:12 GMT
Pragma:
- no-cache
RequestId:
- - 722f0be0-ce43-45d6-8aa2-c23004257bf2
+ - 05d5ee70-77bb-4f78-9f89-f2eca44dd0ab
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7421,16 +7215,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -7439,15 +7236,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:58:21 GMT
+ - Wed, 20 May 2026 09:09:12 GMT
Pragma:
- no-cache
RequestId:
- - ce774f3f-5d56-49a8-a6bc-95693f14e7a5
+ - 8350f26c-89a2-43bc-bc44-6d242ee603a0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7473,15 +7270,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id":
- "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id":
+ "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId":
+ "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -7494,11 +7291,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:58:22 GMT
+ - Wed, 20 May 2026 09:09:12 GMT
Pragma:
- no-cache
RequestId:
- - 15972ee7-a983-4c06-8b66-57dbdcee9bb3
+ - d6b94d12-e834-4b33-b6be-e2d4ada4a3cc
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7524,15 +7321,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id":
- "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId":
- "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id":
+ "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId":
+ "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -7545,11 +7342,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:58:23 GMT
+ - Wed, 20 May 2026 09:09:14 GMT
Pragma:
- no-cache
RequestId:
- - 5b0fa4bd-b2df-439d-b3d6-a276fb958de2
+ - d2efac6f-64f8-430b-ab3f-fc23dcac7d16
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7577,9 +7374,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders/b6217fa4-8911-4c8b-98c4-2507fb6fb87c
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders/170128a0-234a-431b-b133-4fc0dc6c2258
response:
body:
string: ''
@@ -7595,11 +7392,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:58:24 GMT
+ - Wed, 20 May 2026 09:09:13 GMT
Pragma:
- no-cache
RequestId:
- - 3991d598-179e-420e-a7cc-df24131653b9
+ - c559173c-94e5-4d72-ae97-eb1c8723e42e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7625,16 +7422,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -7643,15 +7443,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:58:24 GMT
+ - Wed, 20 May 2026 09:09:14 GMT
Pragma:
- no-cache
RequestId:
- - d27590a4-c770-4380-82d2-53982e05ca2e
+ - d9ba8276-35c7-42e1-a37e-6a255f88594f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7677,13 +7477,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName":
- "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}'
+ string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName":
+ "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -7692,15 +7492,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:58:26 GMT
+ - Wed, 20 May 2026 09:09:16 GMT
Pragma:
- no-cache
RequestId:
- - 578c740b-43f9-44f1-92d7-6efce5e96533
+ - e0d891e0-dfea-443a-b0f3-3c50091cee23
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7728,9 +7528,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders/286030e4-8cb5-4735-9b6c-bdda8b2f4dfe
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders/06ca94aa-2456-4ddf-a53e-f41bce88c0bb
response:
body:
string: ''
@@ -7746,11 +7546,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:58:27 GMT
+ - Wed, 20 May 2026 09:09:16 GMT
Pragma:
- no-cache
RequestId:
- - 36cd3597-3751-46a7-99fd-ceb34692da1d
+ - e560f620-ed5a-449f-a001-258acae18155
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7776,16 +7576,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -7794,15 +7597,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:58:27 GMT
+ - Wed, 20 May 2026 09:09:17 GMT
Pragma:
- no-cache
RequestId:
- - 368933cd-626d-4d20-82ed-19c3e76afdaf
+ - d5156e9b-88b7-4ec2-af84-5503c77c874a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7828,9 +7631,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items
response:
body:
string: '{"value": []}'
@@ -7846,11 +7649,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:58:28 GMT
+ - Wed, 20 May 2026 09:09:17 GMT
Pragma:
- no-cache
RequestId:
- - 333967c7-6653-42cc-966e-7eae8627c2fa
+ - c1cb3809-bd00-4bfc-9b9d-3c4020455776
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7878,9 +7681,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e
+ uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a
response:
body:
string: ''
@@ -7896,11 +7699,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:58:29 GMT
+ - Wed, 20 May 2026 09:09:18 GMT
Pragma:
- no-cache
RequestId:
- - def7c6a0-94e9-42eb-b3c8-317b8c0f54fe
+ - 51df5944-9f5c-4c24-9329-bce04d1e05d2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7926,15 +7729,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -7943,15 +7748,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2840'
+ - '2658'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:58:29 GMT
+ - Wed, 20 May 2026 09:09:19 GMT
Pragma:
- no-cache
RequestId:
- - 235d9069-d5e7-4869-bc67-0599468785d0
+ - c9c2ef73-a5d7-4008-897b-4c9203274989
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7977,17 +7782,16 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/items
response:
body:
- string: '{"value": [{"id": "929f0151-40f6-4974-a346-61295f187e4e", "type": "Notebook",
- "displayName": "fabcli000006", "workspaceId":
- "f80ed229-5a94-47c4-b945-151d5c4e1734", "folderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b"},
- {"id": "fb81e7f4-338b-4d77-ac4d-05fb43000131", "type": "SparkJobDefinition",
- "displayName": "fabcli000007", "workspaceId":
- "f80ed229-5a94-47c4-b945-151d5c4e1734", "folderId": "106edf30-9814-456c-a065-61d2ba9ffe11"}]}'
+ string: '{"value": [{"id": "b9b11c90-13eb-48b2-ae6a-944ce04aa42f", "type": "Notebook",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf",
+ "folderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7"}, {"id": "7faf7942-e738-47e7-88f4-3bdbd66dbb02",
+ "type": "SparkJobDefinition", "displayName": "fabcli000007", "description":
+ "", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "folderId": "931f8db2-d93d-49af-b62a-3141c57e2bf4"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -7996,15 +7800,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '291'
+ - '278'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:58:31 GMT
+ - Wed, 20 May 2026 09:09:19 GMT
Pragma:
- no-cache
RequestId:
- - e02c3c91-e7e0-43c6-8c2b-5485b15ec19c
+ - aa24be3d-ef69-4f20-9d07-a2244c8cc548
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -8030,57 +7834,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
- response:
- body:
- string: '{"requestId": "6d71e019-c049-4f98-8fa6-c24d2d532626", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 7:59:11 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:58:31 GMT
- RequestId:
- - 6d71e019-c049-4f98-8fa6-c24d2d532626
- Retry-After:
- - '39'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"},
- {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004",
- "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id":
+ "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId":
+ "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"},
+ {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004",
+ "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -8093,11 +7857,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:59:14 GMT
+ - Wed, 20 May 2026 09:09:20 GMT
Pragma:
- no-cache
RequestId:
- - 82b5a2d5-bf1d-4e7c-ba9d-c2c00b83043a
+ - b7235179-409b-48e2-9256-3d3acb09e940
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -8123,17 +7887,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName":
- "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id":
- "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId":
- "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"},
- {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004",
- "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}'
+ string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName":
+ "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id":
+ "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId":
+ "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"},
+ {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004",
+ "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -8146,11 +7910,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:59:14 GMT
+ - Wed, 20 May 2026 09:09:21 GMT
Pragma:
- no-cache
RequestId:
- - 3ff43611-0635-4f45-a8cc-cf14314f0288
+ - ee0c22d8-1b2c-4896-9dff-7a5fbb50e131
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -8178,9 +7942,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf
response:
body:
string: ''
@@ -8196,11 +7960,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:59:16 GMT
+ - Wed, 20 May 2026 09:09:21 GMT
Pragma:
- no-cache
RequestId:
- - e5fef65a-1f9b-4eaf-90d4-1febefb33637
+ - bfe40a2d-6378-4a9e-bd7e-5a4bcd1488b4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_workspace_non_recursive_failure.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_workspace_non_recursive_failure.yaml
index 43672b1d3..04cde7240 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_workspace_non_recursive_failure.yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_workspace_non_recursive_failure.yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:55 GMT
+ - Wed, 20 May 2026 09:02:27 GMT
Pragma:
- no-cache
RequestId:
- - f3135b1c-3aa0-4b62-a869-2be456d97816
+ - b83b9458-755f-4025-aae2-2896d1c0856c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,14 +62,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -77,15 +79,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:55 GMT
+ - Wed, 20 May 2026 09:02:28 GMT
Pragma:
- no-cache
RequestId:
- - 52e9f3e4-833d-4cdf-9a7d-9ebbb2c6f7f8
+ - 02a3e0f1-a2b2-4fe8-b636-a4fc8b1af991
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -111,7 +113,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -127,15 +129,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '424'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:47:01 GMT
+ - Wed, 20 May 2026 09:02:32 GMT
Pragma:
- no-cache
RequestId:
- - af147cc1-4795-4fb5-8794-9fe10a5c9237
+ - 26f6904d-3d16-4614-bbb1-072e38c691ac
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -160,16 +162,16 @@ interactions:
- keep-alive
Content-Length:
- '89'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "880f932f-0f13-4ad8-8cdb-c678342510a4", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "5b30103a-86b5-4071-b8b6-f46de83fd528", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -178,17 +180,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '165'
+ - '155'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:47:09 GMT
+ - Wed, 20 May 2026 09:02:40 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/880f932f-0f13-4ad8-8cdb-c678342510a4
+ - https://api.fabric.microsoft.com/v1/workspaces/5b30103a-86b5-4071-b8b6-f46de83fd528
Pragma:
- no-cache
RequestId:
- - aa60778d-2ba0-4e0c-9f66-9d6f611a64d4
+ - 345864d6-12c0-483f-96c4-75b22fd13e02
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -214,15 +216,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "880f932f-0f13-4ad8-8cdb-c678342510a4", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "5b30103a-86b5-4071-b8b6-f46de83fd528", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -231,15 +235,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2839'
+ - '2658'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:47:09 GMT
+ - Wed, 20 May 2026 09:02:42 GMT
Pragma:
- no-cache
RequestId:
- - 31ab0201-4848-414f-af3a-6c6487922ff1
+ - 5f2b0a5a-ebe1-4271-8673-c3e8c67ab193
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -265,15 +269,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "880f932f-0f13-4ad8-8cdb-c678342510a4", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "5b30103a-86b5-4071-b8b6-f46de83fd528", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -282,15 +288,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2839'
+ - '2658'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:47:10 GMT
+ - Wed, 20 May 2026 09:02:42 GMT
Pragma:
- no-cache
RequestId:
- - e0bdaea4-9326-4b72-9891-10f0f520b946
+ - 1cba204b-4872-4203-a51f-cb8d3fefe3c9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -316,7 +322,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -332,15 +338,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '424'
+ - '425'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:47:16 GMT
+ - Wed, 20 May 2026 09:02:48 GMT
Pragma:
- no-cache
RequestId:
- - 01cd9f20-f548-42be-bc44-b3d63f041641
+ - 4e9ea1fa-333d-4231-baa2-1add4a27bd95
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -365,16 +371,16 @@ interactions:
- keep-alive
Content-Length:
- '89'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "fed2fb31-d782-4c62-9aec-a03c5a9484d0", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "4a2e78ed-085e-433c-9e07-bd4adfaf4186", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -383,17 +389,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '155'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:47:24 GMT
+ - Wed, 20 May 2026 09:02:56 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/fed2fb31-d782-4c62-9aec-a03c5a9484d0
+ - https://api.fabric.microsoft.com/v1/workspaces/4a2e78ed-085e-433c-9e07-bd4adfaf4186
Pragma:
- no-cache
RequestId:
- - 6f5e1edc-c8c4-45ac-8a66-abc4617e9f2b
+ - e4708f76-1711-4c29-a95c-dfd6685b7be8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -419,16 +425,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "880f932f-0f13-4ad8-8cdb-c678342510a4", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "fed2fb31-d782-4c62-9aec-a03c5a9484d0", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "5b30103a-86b5-4071-b8b6-f46de83fd528", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4a2e78ed-085e-433c-9e07-bd4adfaf4186", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -437,15 +446,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:47:25 GMT
+ - Wed, 20 May 2026 09:02:57 GMT
Pragma:
- no-cache
RequestId:
- - 3a3450b9-1810-4962-b06c-d0d967dd1e81
+ - 0cb7d20e-ec67-4bea-8931-1dba67c3a296
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -471,9 +480,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/880f932f-0f13-4ad8-8cdb-c678342510a4/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5b30103a-86b5-4071-b8b6-f46de83fd528/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -489,11 +498,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:47:25 GMT
+ - Wed, 20 May 2026 09:02:58 GMT
Pragma:
- no-cache
RequestId:
- - def0fe91-46af-493d-9603-d7130e9452c8
+ - afcdff22-43db-47a6-a6df-51123477a409
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -519,9 +528,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/880f932f-0f13-4ad8-8cdb-c678342510a4/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5b30103a-86b5-4071-b8b6-f46de83fd528/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -537,11 +546,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:47:26 GMT
+ - Wed, 20 May 2026 09:02:59 GMT
Pragma:
- no-cache
RequestId:
- - 9bddd753-3931-470d-9668-d715e37fb311
+ - 38e739cf-1d74-45aa-b697-98d15d38a4e9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -565,17 +574,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/880f932f-0f13-4ad8-8cdb-c678342510a4/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5b30103a-86b5-4071-b8b6-f46de83fd528/folders
response:
body:
- string: '{"id": "75141f12-346e-47c5-a201-5c936938c46d", "displayName": "fabcli000003",
- "workspaceId": "880f932f-0f13-4ad8-8cdb-c678342510a4"}'
+ string: '{"id": "7751fe4d-bb45-4b5e-b81b-5bf4e418de8a", "displayName": "fabcli000003",
+ "workspaceId": "5b30103a-86b5-4071-b8b6-f46de83fd528"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -584,17 +593,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '133'
+ - '131'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:47:27 GMT
+ - Wed, 20 May 2026 09:03:00 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/880f932f-0f13-4ad8-8cdb-c678342510a4/folders/75141f12-346e-47c5-a201-5c936938c46d
+ - https://api.fabric.microsoft.com/v1/workspaces/5b30103a-86b5-4071-b8b6-f46de83fd528/folders/7751fe4d-bb45-4b5e-b81b-5bf4e418de8a
Pragma:
- no-cache
RequestId:
- - ab8f4576-35d1-4aaa-a10a-51cbad4a3af8
+ - bdc8362a-ff08-497f-81f2-3daefb46eaf8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -620,16 +629,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "880f932f-0f13-4ad8-8cdb-c678342510a4", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "fed2fb31-d782-4c62-9aec-a03c5a9484d0", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "5b30103a-86b5-4071-b8b6-f46de83fd528", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4a2e78ed-085e-433c-9e07-bd4adfaf4186", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -638,15 +650,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:47:28 GMT
+ - Wed, 20 May 2026 09:03:01 GMT
Pragma:
- no-cache
RequestId:
- - 6da15cd8-0ab5-4e0a-991a-35374145d9e2
+ - 3f3cac84-1795-46f3-9f89-7786a647cb1b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -672,13 +684,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/880f932f-0f13-4ad8-8cdb-c678342510a4/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5b30103a-86b5-4071-b8b6-f46de83fd528/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "75141f12-346e-47c5-a201-5c936938c46d", "displayName":
- "fabcli000003", "workspaceId": "880f932f-0f13-4ad8-8cdb-c678342510a4"}]}'
+ string: '{"value": [{"id": "7751fe4d-bb45-4b5e-b81b-5bf4e418de8a", "displayName":
+ "fabcli000003", "workspaceId": "5b30103a-86b5-4071-b8b6-f46de83fd528"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -687,15 +699,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '142'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:47:28 GMT
+ - Wed, 20 May 2026 09:03:02 GMT
Pragma:
- no-cache
RequestId:
- - 8457418a-3481-4b39-bde9-182236e82368
+ - 44f84fc4-bd75-42c1-9106-513c8bd68dcf
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -721,16 +733,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "880f932f-0f13-4ad8-8cdb-c678342510a4", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "fed2fb31-d782-4c62-9aec-a03c5a9484d0", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "5b30103a-86b5-4071-b8b6-f46de83fd528", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4a2e78ed-085e-433c-9e07-bd4adfaf4186", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -739,15 +754,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:47:29 GMT
+ - Wed, 20 May 2026 09:03:02 GMT
Pragma:
- no-cache
RequestId:
- - ead56177-8790-48b6-8165-df27d89c08f4
+ - 1e520aa7-3aff-4683-ab1c-10e868fc590f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -773,16 +788,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "880f932f-0f13-4ad8-8cdb-c678342510a4", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "fed2fb31-d782-4c62-9aec-a03c5a9484d0", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "5b30103a-86b5-4071-b8b6-f46de83fd528", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4a2e78ed-085e-433c-9e07-bd4adfaf4186", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -791,15 +809,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:47:29 GMT
+ - Wed, 20 May 2026 09:03:04 GMT
Pragma:
- no-cache
RequestId:
- - d558869d-fada-47cc-bff5-ec6b1e7821d0
+ - 3af01b5e-a33a-4258-a151-54cb853132bc
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -825,13 +843,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/880f932f-0f13-4ad8-8cdb-c678342510a4/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5b30103a-86b5-4071-b8b6-f46de83fd528/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "75141f12-346e-47c5-a201-5c936938c46d", "displayName":
- "fabcli000003", "workspaceId": "880f932f-0f13-4ad8-8cdb-c678342510a4"}]}'
+ string: '{"value": [{"id": "7751fe4d-bb45-4b5e-b81b-5bf4e418de8a", "displayName":
+ "fabcli000003", "workspaceId": "5b30103a-86b5-4071-b8b6-f46de83fd528"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -840,15 +858,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '142'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:47:30 GMT
+ - Wed, 20 May 2026 09:03:05 GMT
Pragma:
- no-cache
RequestId:
- - 664de2d2-b70b-4416-9a41-05c0d870bfbe
+ - c9a6dad3-ca7e-4722-8b2e-0b615857628e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -876,9 +894,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/880f932f-0f13-4ad8-8cdb-c678342510a4/folders/75141f12-346e-47c5-a201-5c936938c46d
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5b30103a-86b5-4071-b8b6-f46de83fd528/folders/7751fe4d-bb45-4b5e-b81b-5bf4e418de8a
response:
body:
string: ''
@@ -894,11 +912,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:47:31 GMT
+ - Wed, 20 May 2026 09:03:06 GMT
Pragma:
- no-cache
RequestId:
- - 90521941-ad72-4429-9660-05ca4762955f
+ - a3bedc2f-c68f-4865-afdb-c2e7f22fe402
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -924,16 +942,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "880f932f-0f13-4ad8-8cdb-c678342510a4", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "fed2fb31-d782-4c62-9aec-a03c5a9484d0", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "5b30103a-86b5-4071-b8b6-f46de83fd528", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4a2e78ed-085e-433c-9e07-bd4adfaf4186", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -942,15 +963,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:47:31 GMT
+ - Wed, 20 May 2026 09:03:06 GMT
Pragma:
- no-cache
RequestId:
- - 592f2b33-e86e-44c3-9621-33c0de823b92
+ - b27debd8-27ac-438e-ab20-73a09f8668f4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -976,9 +997,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/880f932f-0f13-4ad8-8cdb-c678342510a4/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5b30103a-86b5-4071-b8b6-f46de83fd528/items
response:
body:
string: '{"value": []}'
@@ -994,11 +1015,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:47:32 GMT
+ - Wed, 20 May 2026 09:03:07 GMT
Pragma:
- no-cache
RequestId:
- - 2307e8e9-ea86-4042-9e2a-e75bf3c8ac29
+ - e34d67bd-18df-4844-b977-99bf9258e6d0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1026,9 +1047,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/880f932f-0f13-4ad8-8cdb-c678342510a4
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5b30103a-86b5-4071-b8b6-f46de83fd528
response:
body:
string: ''
@@ -1044,11 +1065,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:47:33 GMT
+ - Wed, 20 May 2026 09:03:08 GMT
Pragma:
- no-cache
RequestId:
- - 8492b116-172a-4507-b965-428983cc7953
+ - b86e5641-fa32-4ff0-b2ee-b316090adbf1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1074,15 +1095,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "fed2fb31-d782-4c62-9aec-a03c5a9484d0", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4a2e78ed-085e-433c-9e07-bd4adfaf4186", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1091,15 +1114,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2845'
+ - '2659'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:47:34 GMT
+ - Wed, 20 May 2026 09:03:09 GMT
Pragma:
- no-cache
RequestId:
- - 072c0a10-b39f-428c-8323-f00d8e8a507b
+ - f43e8c55-5866-4357-bb61-9c81bf6b4dc9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1125,9 +1148,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/fed2fb31-d782-4c62-9aec-a03c5a9484d0/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4a2e78ed-085e-433c-9e07-bd4adfaf4186/items
response:
body:
string: '{"value": []}'
@@ -1143,11 +1166,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:47:35 GMT
+ - Wed, 20 May 2026 09:03:10 GMT
Pragma:
- no-cache
RequestId:
- - 60899624-3be9-44a4-b135-bf4bd6191bf0
+ - efb9f08e-ab50-45da-b620-e0c11488cf07
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1175,9 +1198,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/fed2fb31-d782-4c62-9aec-a03c5a9484d0
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4a2e78ed-085e-433c-9e07-bd4adfaf4186
response:
body:
string: ''
@@ -1193,11 +1216,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:47:36 GMT
+ - Wed, 20 May 2026 09:03:11 GMT
Pragma:
- no-cache
RequestId:
- - a2d3e594-adea-4ce4-85d4-33bb16754951
+ - cc035251-5b94-424a-96b2-84f35e48d96d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_workspace_sucess.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_workspace_sucess.yaml
index 2e0cbe1dd..f2b0c0e53 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_workspace_sucess.yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_workspace_sucess.yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:47:37 GMT
+ - Wed, 20 May 2026 09:03:12 GMT
Pragma:
- no-cache
RequestId:
- - 420944be-d1bc-4842-b0eb-516cfffd0071
+ - 95688915-3598-43db-ba94-c0fa62e51033
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,14 +62,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -77,15 +79,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:47:37 GMT
+ - Wed, 20 May 2026 09:03:13 GMT
Pragma:
- no-cache
RequestId:
- - eb62193b-b6e8-40b4-ae4b-2ab7bc9d66d2
+ - 39b5a7d1-dd71-4ef9-b922-cd3a1c5990a6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -111,7 +113,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -127,15 +129,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '424'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:47:43 GMT
+ - Wed, 20 May 2026 09:03:19 GMT
Pragma:
- no-cache
RequestId:
- - 1ffdce57-0ee5-4005-b044-2de9df00c130
+ - 1cfcb21c-29bb-4e80-994b-2ddf621be8ba
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -160,16 +162,16 @@ interactions:
- keep-alive
Content-Length:
- '89'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "53297cef-1d90-40ae-88f7-07170438ec2f", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -178,17 +180,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '167'
+ - '154'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:47:51 GMT
+ - Wed, 20 May 2026 09:03:25 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f
+ - https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7
Pragma:
- no-cache
RequestId:
- - 7fbcca60-68b1-4d43-bb5d-021ae4bd0086
+ - f663cecf-04d2-4522-ba12-11b5477d595d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -214,15 +216,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "53297cef-1d90-40ae-88f7-07170438ec2f", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -231,15 +235,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2841'
+ - '2657'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:47:52 GMT
+ - Wed, 20 May 2026 09:03:26 GMT
Pragma:
- no-cache
RequestId:
- - ce6ad327-bfe8-400c-9421-37d61ab26b2c
+ - fb4e3175-63e0-40c0-80d2-4869ac06b9ca
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -265,15 +269,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "53297cef-1d90-40ae-88f7-07170438ec2f", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -282,15 +288,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2841'
+ - '2657'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:47:52 GMT
+ - Wed, 20 May 2026 09:03:26 GMT
Pragma:
- no-cache
RequestId:
- - 4c517a68-cc87-430a-af81-6868787de247
+ - 2e4231ee-206a-4aaa-a6a1-c1724d5c4dc8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -316,7 +322,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -332,15 +338,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '424'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:47:58 GMT
+ - Wed, 20 May 2026 09:03:33 GMT
Pragma:
- no-cache
RequestId:
- - 0c450565-13b7-4faf-a9bf-67ede8deadf9
+ - 9880829f-4308-4e26-86ec-824ff9a761f5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -365,16 +371,16 @@ interactions:
- keep-alive
Content-Length:
- '89'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "b5197fda-1783-4bc7-8b19-657840562dfd", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -383,17 +389,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '155'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:48:05 GMT
+ - Wed, 20 May 2026 09:03:39 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/13bc1b7a-612b-49a6-a134-e09fb0e565a7
+ - https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd
Pragma:
- no-cache
RequestId:
- - cc47ad82-95cc-40fd-94e6-b8ff6e33e680
+ - 011b6921-194a-497f-b4d7-51128bfaf02c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -419,16 +425,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "53297cef-1d90-40ae-88f7-07170438ec2f", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b5197fda-1783-4bc7-8b19-657840562dfd", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -437,15 +446,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:48:07 GMT
+ - Wed, 20 May 2026 09:03:39 GMT
Pragma:
- no-cache
RequestId:
- - ab0c6401-c0cf-4ed5-8425-f6f0c7a9fcff
+ - ae8f6dfa-e0aa-4fbd-9024-678ae2782b35
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -471,9 +480,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -489,11 +498,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:48:07 GMT
+ - Wed, 20 May 2026 09:03:41 GMT
Pragma:
- no-cache
RequestId:
- - 365bec2f-7217-4be3-92dc-c478c8b77828
+ - 07b1346a-48a2-4507-a88d-9f59fb843109
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -519,9 +528,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -537,11 +546,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:48:08 GMT
+ - Wed, 20 May 2026 09:03:41 GMT
Pragma:
- no-cache
RequestId:
- - 63981d71-88b3-405b-8fcf-0872de3c6465
+ - f90a5f11-2b94-4d23-9122-dc09153173a0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -565,17 +574,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/folders
response:
body:
- string: '{"id": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef", "displayName": "fabcli000003",
- "workspaceId": "53297cef-1d90-40ae-88f7-07170438ec2f"}'
+ string: '{"id": "b8e4fdb7-b278-425e-a72b-680794f1f91c", "displayName": "fabcli000003",
+ "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -584,17 +593,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '133'
+ - '132'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:48:08 GMT
+ - Wed, 20 May 2026 09:03:42 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f/folders/4cb417a0-e34f-4733-b1d8-045c6b4e09ef
+ - https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/folders/b8e4fdb7-b278-425e-a72b-680794f1f91c
Pragma:
- no-cache
RequestId:
- - 75d7def9-5073-479f-a8b1-9740d0da0cda
+ - cbd15188-e64b-402c-9d17-9eb5a4277bbe
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -620,16 +629,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "53297cef-1d90-40ae-88f7-07170438ec2f", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b5197fda-1783-4bc7-8b19-657840562dfd", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -638,15 +650,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:48:10 GMT
+ - Wed, 20 May 2026 09:03:43 GMT
Pragma:
- no-cache
RequestId:
- - dfb16298-1516-4b57-9416-78232c015ede
+ - d538806b-c563-419f-88fb-3c5175855991
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -672,13 +684,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef", "displayName":
- "fabcli000003", "workspaceId": "53297cef-1d90-40ae-88f7-07170438ec2f"}]}'
+ string: '{"value": [{"id": "b8e4fdb7-b278-425e-a72b-680794f1f91c", "displayName":
+ "fabcli000003", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -687,15 +699,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '142'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:48:10 GMT
+ - Wed, 20 May 2026 09:03:45 GMT
Pragma:
- no-cache
RequestId:
- - 93873027-27ae-40db-ba3f-fc53b136befe
+ - 3eb10490-8d3c-4ce8-9f09-e86d6f38658a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -721,9 +733,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/items
response:
body:
string: '{"value": []}'
@@ -739,11 +751,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:48:11 GMT
+ - Wed, 20 May 2026 09:03:45 GMT
Pragma:
- no-cache
RequestId:
- - 40229745-a62d-429a-8c21-7e247e32431c
+ - 3b6ecd52-e0a0-40a7-8b4a-f35d0e0c9956
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -769,9 +781,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/items
response:
body:
string: '{"value": []}'
@@ -787,11 +799,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:48:12 GMT
+ - Wed, 20 May 2026 09:03:46 GMT
Pragma:
- no-cache
RequestId:
- - e6543136-90af-4490-abba-2077dfcf1d1d
+ - ccb6cf07-1c4b-41f0-8687-b380f1ec4510
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -806,9 +818,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000004", "type":
- "Notebook", "folderId": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef", "definition":
- {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
+ body: '{"displayName": "fabcli000004", "type": "Notebook", "folderId": "b8e4fdb7-b278-425e-a72b-680794f1f91c",
+ "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
"payloadType": "InlineBase64"}]}}'
headers:
Accept:
@@ -819,13 +830,12 @@ interactions:
- keep-alive
Content-Length:
- '765'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f/notebooks
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/notebooks
response:
body:
string: 'null'
@@ -841,15 +851,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:48:14 GMT
+ - Wed, 20 May 2026 09:03:48 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cb96d310-3f09-46b9-8110-939746f8c493
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/93da45b9-012b-4311-b7e7-46cb8c114366
Pragma:
- no-cache
RequestId:
- - 2a74b63c-6cbe-4e06-b94e-10416e6c754f
+ - a003c285-0547-4e7e-8923-6ef16d011678
Retry-After:
- '20'
Strict-Transport-Security:
@@ -863,7 +873,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - cb96d310-3f09-46b9-8110-939746f8c493
+ - 93da45b9-012b-4311-b7e7-46cb8c114366
status:
code: 202
message: Accepted
@@ -879,13 +889,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cb96d310-3f09-46b9-8110-939746f8c493
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/93da45b9-012b-4311-b7e7-46cb8c114366
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:48:13.8489931",
- "lastUpdatedTimeUtc": "2026-02-06T07:48:17.2711496", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:03:48.0133525",
+ "lastUpdatedTimeUtc": "2026-05-20T09:03:49.6628292", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -899,13 +909,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:48:36 GMT
+ - Wed, 20 May 2026 09:04:09 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cb96d310-3f09-46b9-8110-939746f8c493/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/93da45b9-012b-4311-b7e7-46cb8c114366/result
Pragma:
- no-cache
RequestId:
- - 3a9acdf0-97fd-4abf-87a9-db11954d8432
+ - 465946be-bc00-4ba6-95ed-778d8c99a830
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -913,7 +923,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - cb96d310-3f09-46b9-8110-939746f8c493
+ - 93da45b9-012b-4311-b7e7-46cb8c114366
status:
code: 200
message: OK
@@ -929,14 +939,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cb96d310-3f09-46b9-8110-939746f8c493/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/93da45b9-012b-4311-b7e7-46cb8c114366/result
response:
body:
- string: '{"id": "bf2d1795-59e1-4e4c-a1ea-e07d1fe76b72", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "53297cef-1d90-40ae-88f7-07170438ec2f", "folderId": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef"}'
+ string: '{"id": "1e1ad4c2-6eda-4517-af8a-3b40887b2500", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7",
+ "folderId": "b8e4fdb7-b278-425e-a72b-680794f1f91c"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -947,11 +957,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 07:48:37 GMT
+ - Wed, 20 May 2026 09:04:11 GMT
Pragma:
- no-cache
RequestId:
- - 6e2effd6-3d39-49a5-9ce8-671db9f1eb9c
+ - da4bbb00-a9ff-4511-a420-0696843487a2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -975,16 +985,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "53297cef-1d90-40ae-88f7-07170438ec2f", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b5197fda-1783-4bc7-8b19-657840562dfd", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -993,15 +1006,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:48:38 GMT
+ - Wed, 20 May 2026 09:04:11 GMT
Pragma:
- no-cache
RequestId:
- - b4b151b8-3d39-4c32-bb7c-f892e8217354
+ - 533739b8-d95c-48d4-aa3a-d28d6dcba897
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1027,13 +1040,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef", "displayName":
- "fabcli000003", "workspaceId": "53297cef-1d90-40ae-88f7-07170438ec2f"}]}'
+ string: '{"value": [{"id": "b8e4fdb7-b278-425e-a72b-680794f1f91c", "displayName":
+ "fabcli000003", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1042,15 +1055,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '142'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:48:38 GMT
+ - Wed, 20 May 2026 09:04:12 GMT
Pragma:
- no-cache
RequestId:
- - 1cf9d223-fd85-44dc-89ff-c2d41b443bfc
+ - de6e2a14-fcd9-4113-892b-f15bf96d68f5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1076,16 +1089,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "53297cef-1d90-40ae-88f7-07170438ec2f", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b5197fda-1783-4bc7-8b19-657840562dfd", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1094,15 +1110,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:48:40 GMT
+ - Wed, 20 May 2026 09:04:12 GMT
Pragma:
- no-cache
RequestId:
- - 217332d3-2979-41fa-9b1e-1d088c57df6c
+ - 9a1da0e0-eaeb-4f97-a4cf-dd88b15e8e12
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1128,16 +1144,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "53297cef-1d90-40ae-88f7-07170438ec2f", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b5197fda-1783-4bc7-8b19-657840562dfd", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1146,15 +1165,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:48:40 GMT
+ - Wed, 20 May 2026 09:04:13 GMT
Pragma:
- no-cache
RequestId:
- - 05e0c758-a1e3-4345-86f0-6ee1ea97a28c
+ - e98a6307-8eaa-430e-9df6-9f2ae5c93f2f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1180,9 +1199,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/13bc1b7a-612b-49a6-a134-e09fb0e565a7/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -1198,11 +1217,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:48:41 GMT
+ - Wed, 20 May 2026 09:04:14 GMT
Pragma:
- no-cache
RequestId:
- - 6cbc209e-c3b2-4baa-801f-65885c798581
+ - ce0fd860-6a20-4d59-bb46-2f2db80809a7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1228,9 +1247,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/13bc1b7a-612b-49a6-a134-e09fb0e565a7/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -1246,11 +1265,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:48:42 GMT
+ - Wed, 20 May 2026 09:04:15 GMT
Pragma:
- no-cache
RequestId:
- - 7ce0394d-df82-4a66-ad5d-91ce786eb917
+ - 71b65ec0-7e83-4bd4-b27e-8b8c77f39346
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1274,17 +1293,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/13bc1b7a-612b-49a6-a134-e09fb0e565a7/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/folders
response:
body:
- string: '{"id": "89903e53-6be2-4ffa-9962-cb330ad26313", "displayName": "fabcli000003",
- "workspaceId": "13bc1b7a-612b-49a6-a134-e09fb0e565a7"}'
+ string: '{"id": "d9d3b476-096f-4584-9215-eef82a458f31", "displayName": "fabcli000003",
+ "workspaceId": "b5197fda-1783-4bc7-8b19-657840562dfd"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -1293,17 +1312,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '133'
+ - '134'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:48:43 GMT
+ - Wed, 20 May 2026 09:04:16 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/13bc1b7a-612b-49a6-a134-e09fb0e565a7/folders/89903e53-6be2-4ffa-9962-cb330ad26313
+ - https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/folders/d9d3b476-096f-4584-9215-eef82a458f31
Pragma:
- no-cache
RequestId:
- - 1a55dc8a-da92-43b5-a676-0e9a8789a2b1
+ - 93b905e3-85f7-48bf-8c67-ebe895203493
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1329,14 +1348,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/items
response:
body:
- string: '{"value": [{"id": "bf2d1795-59e1-4e4c-a1ea-e07d1fe76b72", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "53297cef-1d90-40ae-88f7-07170438ec2f", "folderId": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef"}]}'
+ string: '{"value": [{"id": "1e1ad4c2-6eda-4517-af8a-3b40887b2500", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7",
+ "folderId": "b8e4fdb7-b278-425e-a72b-680794f1f91c"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1345,15 +1364,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '208'
+ - '193'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:48:44 GMT
+ - Wed, 20 May 2026 09:04:17 GMT
Pragma:
- no-cache
RequestId:
- - 96b453a9-3385-4c7f-97c9-4eeacc7c4eb6
+ - 1bce4bc0-8df8-4d13-835d-0136cc87075f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1379,13 +1398,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef", "displayName":
- "fabcli000003", "workspaceId": "53297cef-1d90-40ae-88f7-07170438ec2f"}]}'
+ string: '{"value": [{"id": "b8e4fdb7-b278-425e-a72b-680794f1f91c", "displayName":
+ "fabcli000003", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1394,15 +1413,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '142'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:48:45 GMT
+ - Wed, 20 May 2026 09:04:18 GMT
Pragma:
- no-cache
RequestId:
- - 73351387-970f-445c-91a5-d8576c8f79bf
+ - cb6500af-5ea8-405d-b74e-05ab0d2f485d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1428,13 +1447,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef", "displayName":
- "fabcli000003", "workspaceId": "53297cef-1d90-40ae-88f7-07170438ec2f"}]}'
+ string: '{"value": [{"id": "b8e4fdb7-b278-425e-a72b-680794f1f91c", "displayName":
+ "fabcli000003", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1443,15 +1462,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '142'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:48:46 GMT
+ - Wed, 20 May 2026 09:04:19 GMT
Pragma:
- no-cache
RequestId:
- - 8cd008f6-d3ac-4314-ab0d-1857f904f2bd
+ - dce859b0-0a48-45f5-8a03-40deea1a4869
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1477,14 +1496,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/items
response:
body:
- string: '{"value": [{"id": "bf2d1795-59e1-4e4c-a1ea-e07d1fe76b72", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "53297cef-1d90-40ae-88f7-07170438ec2f", "folderId": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef"}]}'
+ string: '{"value": [{"id": "1e1ad4c2-6eda-4517-af8a-3b40887b2500", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7",
+ "folderId": "b8e4fdb7-b278-425e-a72b-680794f1f91c"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1493,15 +1512,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '208'
+ - '193'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:48:47 GMT
+ - Wed, 20 May 2026 09:04:20 GMT
Pragma:
- no-cache
RequestId:
- - 8e76bd7b-808e-4987-9e8f-482a7b1db6f9
+ - 2c80b74a-5a17-4afb-a247-97eaee9cbc25
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1527,13 +1546,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef", "displayName":
- "fabcli000003", "workspaceId": "53297cef-1d90-40ae-88f7-07170438ec2f"}]}'
+ string: '{"value": [{"id": "b8e4fdb7-b278-425e-a72b-680794f1f91c", "displayName":
+ "fabcli000003", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1542,15 +1561,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '142'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:48:47 GMT
+ - Wed, 20 May 2026 09:04:21 GMT
Pragma:
- no-cache
RequestId:
- - 214ab35d-b6b7-4a5c-883c-698bcc5f6f2f
+ - 3e42ec0f-f092-40ae-b709-44ea56e20055
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1576,13 +1595,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef", "displayName":
- "fabcli000003", "workspaceId": "53297cef-1d90-40ae-88f7-07170438ec2f"}]}'
+ string: '{"value": [{"id": "b8e4fdb7-b278-425e-a72b-680794f1f91c", "displayName":
+ "fabcli000003", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1591,15 +1610,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '142'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:48:49 GMT
+ - Wed, 20 May 2026 09:04:22 GMT
Pragma:
- no-cache
RequestId:
- - dba1292c-37b6-4746-ba6a-0ab38c43996b
+ - 0db42a64-d077-4d20-8039-d4b38a25c566
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1625,16 +1644,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "53297cef-1d90-40ae-88f7-07170438ec2f", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b5197fda-1783-4bc7-8b19-657840562dfd", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1643,15 +1665,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:48:49 GMT
+ - Wed, 20 May 2026 09:04:23 GMT
Pragma:
- no-cache
RequestId:
- - d78c02c5-b9fd-40c7-8bdc-a98351f4836d
+ - b4d2864f-68f2-4aeb-a8a3-e7dd49f27046
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1677,13 +1699,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/13bc1b7a-612b-49a6-a134-e09fb0e565a7/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "89903e53-6be2-4ffa-9962-cb330ad26313", "displayName":
- "fabcli000003", "workspaceId": "13bc1b7a-612b-49a6-a134-e09fb0e565a7"}]}'
+ string: '{"value": [{"id": "d9d3b476-096f-4584-9215-eef82a458f31", "displayName":
+ "fabcli000003", "workspaceId": "b5197fda-1783-4bc7-8b19-657840562dfd"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1692,15 +1714,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:48:50 GMT
+ - Wed, 20 May 2026 09:04:24 GMT
Pragma:
- no-cache
RequestId:
- - 9840ac2e-81cf-4fe6-b264-022945185897
+ - cec494a6-cc79-4e37-b2f6-63506ccc1e45
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1726,9 +1748,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/13bc1b7a-612b-49a6-a134-e09fb0e565a7/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/items
response:
body:
string: '{"value": []}'
@@ -1744,11 +1766,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:48:51 GMT
+ - Wed, 20 May 2026 09:04:24 GMT
Pragma:
- no-cache
RequestId:
- - 8e4845fc-b40a-421d-b0e8-30ebaf9d4040
+ - e9255553-7ce9-4dcd-87c0-92be50a896af
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1774,9 +1796,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/13bc1b7a-612b-49a6-a134-e09fb0e565a7/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/items
response:
body:
string: '{"value": []}'
@@ -1792,11 +1814,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:48:52 GMT
+ - Wed, 20 May 2026 09:04:25 GMT
Pragma:
- no-cache
RequestId:
- - d44364bc-1acf-4913-8748-eaa46422edde
+ - 87e04884-076e-4f33-821f-5285accec40a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1822,9 +1844,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/13bc1b7a-612b-49a6-a134-e09fb0e565a7/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/items
response:
body:
string: '{"value": []}'
@@ -1840,11 +1862,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:48:53 GMT
+ - Wed, 20 May 2026 09:04:26 GMT
Pragma:
- no-cache
RequestId:
- - cb271679-34a1-45c4-9ec5-0c82c7deadbc
+ - f951daf1-28f7-4ced-8e90-5d2271c2a332
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1870,14 +1892,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f/items/bf2d1795-59e1-4e4c-a1ea-e07d1fe76b72
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/items/1e1ad4c2-6eda-4517-af8a-3b40887b2500
response:
body:
- string: '{"id": "bf2d1795-59e1-4e4c-a1ea-e07d1fe76b72", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "53297cef-1d90-40ae-88f7-07170438ec2f", "folderId": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef"}'
+ string: '{"id": "1e1ad4c2-6eda-4517-af8a-3b40887b2500", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7",
+ "folderId": "b8e4fdb7-b278-425e-a72b-680794f1f91c"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1886,17 +1908,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '197'
+ - '182'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:48:54 GMT
+ - Wed, 20 May 2026 09:04:27 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - bc4e3852-d82f-47d6-ba29-5fe8cc4a6ab2
+ - 6b32366e-8b8a-488e-b7ea-55751db2429d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1924,9 +1946,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f/items/bf2d1795-59e1-4e4c-a1ea-e07d1fe76b72/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/items/1e1ad4c2-6eda-4517-af8a-3b40887b2500/getDefinition
response:
body:
string: 'null'
@@ -1942,13 +1964,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:48:54 GMT
+ - Wed, 20 May 2026 09:04:29 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5a63d0d5-bcae-4cfe-b6ee-e53fe01f517c
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/056ae957-7046-4ca1-999d-7ead04b2a2a7
Pragma:
- no-cache
RequestId:
- - 6991ea5c-d509-44a2-b519-1ed18846dd37
+ - 09188e82-0f83-479b-960e-549b2620a2ba
Retry-After:
- '20'
Strict-Transport-Security:
@@ -1962,7 +1984,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - 5a63d0d5-bcae-4cfe-b6ee-e53fe01f517c
+ - 056ae957-7046-4ca1-999d-7ead04b2a2a7
status:
code: 202
message: Accepted
@@ -1978,13 +2000,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5a63d0d5-bcae-4cfe-b6ee-e53fe01f517c
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/056ae957-7046-4ca1-999d-7ead04b2a2a7
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:48:55.4673039",
- "lastUpdatedTimeUtc": "2026-02-06T07:48:55.7955942", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:04:30.1982851",
+ "lastUpdatedTimeUtc": "2026-05-20T09:04:31.002453", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -1994,17 +2016,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '131'
+ - '130'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:49:16 GMT
+ - Wed, 20 May 2026 09:04:51 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5a63d0d5-bcae-4cfe-b6ee-e53fe01f517c/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/056ae957-7046-4ca1-999d-7ead04b2a2a7/result
Pragma:
- no-cache
RequestId:
- - d9c31836-eabc-4397-a510-de93ecdd16ca
+ - 73237fa8-8f77-41b5-8885-e3417efd3410
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2012,7 +2034,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - 5a63d0d5-bcae-4cfe-b6ee-e53fe01f517c
+ - 056ae957-7046-4ca1-999d-7ead04b2a2a7
status:
code: 200
message: OK
@@ -2028,14 +2050,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5a63d0d5-bcae-4cfe-b6ee-e53fe01f517c/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/056ae957-7046-4ca1-999d-7ead04b2a2a7/result
response:
body:
string: '{"definition": {"parts": [{"path": "notebook-content.py", "payload":
"IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
"payloadType": "InlineBase64"}]}}'
headers:
Access-Control-Expose-Headers:
@@ -2047,11 +2069,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 07:49:18 GMT
+ - Wed, 20 May 2026 09:04:51 GMT
Pragma:
- no-cache
RequestId:
- - e4bec1f9-a555-4e4f-bb62-28ea37ccec42
+ - 3adc1e4c-3731-4c17-9251-d4c05828c297
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -2064,10 +2086,10 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "Notebook", "displayName": "fabcli000004",
- "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
- "payloadType": "InlineBase64"}]}, "folderId": "89903e53-6be2-4ffa-9962-cb330ad26313"}'
+ body: '{"type": "Notebook", "displayName": "fabcli000004", "definition": {"parts":
+ [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
+ "payloadType": "InlineBase64"}]}, "folderId": "d9d3b476-096f-4584-9215-eef82a458f31"}'
headers:
Accept:
- '*/*'
@@ -2076,14 +2098,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1286'
-
+ - '1238'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/13bc1b7a-612b-49a6-a134-e09fb0e565a7/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/items
response:
body:
string: 'null'
@@ -2099,15 +2120,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:49:20 GMT
+ - Wed, 20 May 2026 09:04:53 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c46bf6b6-ad83-4b6e-8c5d-cca369ed9e7b
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/05e1576e-7c0f-4f5e-afbc-76ec5b0481ef
Pragma:
- no-cache
RequestId:
- - e767b6ea-e92e-4a81-afa9-af92a52fcfee
+ - 7dac3fe9-d18d-44d8-932e-a0adcdb9aaa0
Retry-After:
- '20'
Strict-Transport-Security:
@@ -2121,7 +2142,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - c46bf6b6-ad83-4b6e-8c5d-cca369ed9e7b
+ - 05e1576e-7c0f-4f5e-afbc-76ec5b0481ef
status:
code: 202
message: Accepted
@@ -2137,13 +2158,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c46bf6b6-ad83-4b6e-8c5d-cca369ed9e7b
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/05e1576e-7c0f-4f5e-afbc-76ec5b0481ef
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:49:19.7282426",
- "lastUpdatedTimeUtc": "2026-02-06T07:49:21.2285088", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:04:53.4990045",
+ "lastUpdatedTimeUtc": "2026-05-20T09:04:55.053739", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -2153,17 +2174,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '131'
+ - '130'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:49:42 GMT
+ - Wed, 20 May 2026 09:05:14 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c46bf6b6-ad83-4b6e-8c5d-cca369ed9e7b/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/05e1576e-7c0f-4f5e-afbc-76ec5b0481ef/result
Pragma:
- no-cache
RequestId:
- - cb7b4dc6-8c22-43bf-a360-3a469496c014
+ - 457cb7a8-b5dd-451d-bea3-b2625ef2f152
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2171,7 +2192,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - c46bf6b6-ad83-4b6e-8c5d-cca369ed9e7b
+ - 05e1576e-7c0f-4f5e-afbc-76ec5b0481ef
status:
code: 200
message: OK
@@ -2187,14 +2208,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c46bf6b6-ad83-4b6e-8c5d-cca369ed9e7b/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/05e1576e-7c0f-4f5e-afbc-76ec5b0481ef/result
response:
body:
- string: '{"id": "e6fa6c43-ec05-4374-8cd6-db7fc60e6bd6", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "folderId": "89903e53-6be2-4ffa-9962-cb330ad26313"}'
+ string: '{"id": "fe37a758-3c42-4f8b-b6fd-dd4861d607c1", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "b5197fda-1783-4bc7-8b19-657840562dfd",
+ "folderId": "d9d3b476-096f-4584-9215-eef82a458f31"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2205,11 +2226,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 07:49:43 GMT
+ - Wed, 20 May 2026 09:05:15 GMT
Pragma:
- no-cache
RequestId:
- - aad661c0-d650-4028-ac8f-557892ab97a9
+ - 3def2a22-061b-4451-8617-cd53b6e26e57
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -2233,14 +2254,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/items
response:
body:
- string: '{"value": [{"id": "bf2d1795-59e1-4e4c-a1ea-e07d1fe76b72", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "53297cef-1d90-40ae-88f7-07170438ec2f", "folderId": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef"}]}'
+ string: '{"value": [{"id": "1e1ad4c2-6eda-4517-af8a-3b40887b2500", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7",
+ "folderId": "b8e4fdb7-b278-425e-a72b-680794f1f91c"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2249,15 +2270,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '208'
+ - '193'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:49:43 GMT
+ - Wed, 20 May 2026 09:05:16 GMT
Pragma:
- no-cache
RequestId:
- - cb563e51-164d-43f3-bc65-f3dabe2694ff
+ - 65a2f6f0-b0cf-44f2-8a84-306129ff75b9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2283,13 +2304,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef", "displayName":
- "fabcli000003", "workspaceId": "53297cef-1d90-40ae-88f7-07170438ec2f"}]}'
+ string: '{"value": [{"id": "b8e4fdb7-b278-425e-a72b-680794f1f91c", "displayName":
+ "fabcli000003", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2298,15 +2319,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '142'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:49:44 GMT
+ - Wed, 20 May 2026 09:05:17 GMT
Pragma:
- no-cache
RequestId:
- - 505e9d99-32ad-40f1-9d8e-fa7a1cedbaf0
+ - 866785bd-e37b-4d80-affb-c44cd89a2ec2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2332,13 +2353,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef", "displayName":
- "fabcli000003", "workspaceId": "53297cef-1d90-40ae-88f7-07170438ec2f"}]}'
+ string: '{"value": [{"id": "b8e4fdb7-b278-425e-a72b-680794f1f91c", "displayName":
+ "fabcli000003", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2347,15 +2368,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '142'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:49:46 GMT
+ - Wed, 20 May 2026 09:05:18 GMT
Pragma:
- no-cache
RequestId:
- - ee8054f3-d3fa-4285-8cde-a739dd38fe47
+ - eaeb2a37-2c0a-4f40-99a2-b4a57df95cb5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2381,16 +2402,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "53297cef-1d90-40ae-88f7-07170438ec2f", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b5197fda-1783-4bc7-8b19-657840562dfd", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2399,15 +2423,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:49:46 GMT
+ - Wed, 20 May 2026 09:05:18 GMT
Pragma:
- no-cache
RequestId:
- - 7fbef4f2-255c-4787-a663-5d615e4dc025
+ - 85126088-0260-475f-9535-bc94866d83de
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2433,14 +2457,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/13bc1b7a-612b-49a6-a134-e09fb0e565a7/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/items
response:
body:
- string: '{"value": [{"id": "e6fa6c43-ec05-4374-8cd6-db7fc60e6bd6", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "folderId": "89903e53-6be2-4ffa-9962-cb330ad26313"}]}'
+ string: '{"value": [{"id": "fe37a758-3c42-4f8b-b6fd-dd4861d607c1", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "b5197fda-1783-4bc7-8b19-657840562dfd",
+ "folderId": "d9d3b476-096f-4584-9215-eef82a458f31"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2449,15 +2473,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '208'
+ - '197'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:49:47 GMT
+ - Wed, 20 May 2026 09:05:19 GMT
Pragma:
- no-cache
RequestId:
- - b0df368f-1b50-479d-acec-0bce5cfcb701
+ - b10ec1f0-dc57-427e-811c-a0ce9955afd2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2483,13 +2507,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/13bc1b7a-612b-49a6-a134-e09fb0e565a7/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "89903e53-6be2-4ffa-9962-cb330ad26313", "displayName":
- "fabcli000003", "workspaceId": "13bc1b7a-612b-49a6-a134-e09fb0e565a7"}]}'
+ string: '{"value": [{"id": "d9d3b476-096f-4584-9215-eef82a458f31", "displayName":
+ "fabcli000003", "workspaceId": "b5197fda-1783-4bc7-8b19-657840562dfd"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2498,15 +2522,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:49:48 GMT
+ - Wed, 20 May 2026 09:05:21 GMT
Pragma:
- no-cache
RequestId:
- - ac0578c9-ae42-4977-a5ee-327c4942e02e
+ - ec2beb11-3818-4b9a-a49a-58f8f1d7c7d7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2532,13 +2556,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/13bc1b7a-612b-49a6-a134-e09fb0e565a7/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "89903e53-6be2-4ffa-9962-cb330ad26313", "displayName":
- "fabcli000003", "workspaceId": "13bc1b7a-612b-49a6-a134-e09fb0e565a7"}]}'
+ string: '{"value": [{"id": "d9d3b476-096f-4584-9215-eef82a458f31", "displayName":
+ "fabcli000003", "workspaceId": "b5197fda-1783-4bc7-8b19-657840562dfd"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2547,15 +2571,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:49:49 GMT
+ - Wed, 20 May 2026 09:05:21 GMT
Pragma:
- no-cache
RequestId:
- - 120475c1-1e67-431c-b29a-daa86bc70790
+ - f5fc431f-4b14-400f-8769-4f53e2e63202
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2581,16 +2605,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "53297cef-1d90-40ae-88f7-07170438ec2f", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b5197fda-1783-4bc7-8b19-657840562dfd", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2599,15 +2626,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:49:49 GMT
+ - Wed, 20 May 2026 09:05:22 GMT
Pragma:
- no-cache
RequestId:
- - 1cf29014-9c75-4e81-b353-5d359962daca
+ - 998d5948-35f1-49bd-b318-93a05f4f7a18
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2633,13 +2660,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/13bc1b7a-612b-49a6-a134-e09fb0e565a7/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "89903e53-6be2-4ffa-9962-cb330ad26313", "displayName":
- "fabcli000003", "workspaceId": "13bc1b7a-612b-49a6-a134-e09fb0e565a7"}]}'
+ string: '{"value": [{"id": "d9d3b476-096f-4584-9215-eef82a458f31", "displayName":
+ "fabcli000003", "workspaceId": "b5197fda-1783-4bc7-8b19-657840562dfd"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2648,15 +2675,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:49:50 GMT
+ - Wed, 20 May 2026 09:05:23 GMT
Pragma:
- no-cache
RequestId:
- - e3190498-40ef-4309-9f41-a2cccab278a0
+ - de269419-b700-4af9-9a5b-9a41cb17865e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2682,14 +2709,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/13bc1b7a-612b-49a6-a134-e09fb0e565a7/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/items
response:
body:
- string: '{"value": [{"id": "e6fa6c43-ec05-4374-8cd6-db7fc60e6bd6", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "folderId": "89903e53-6be2-4ffa-9962-cb330ad26313"}]}'
+ string: '{"value": [{"id": "fe37a758-3c42-4f8b-b6fd-dd4861d607c1", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "b5197fda-1783-4bc7-8b19-657840562dfd",
+ "folderId": "d9d3b476-096f-4584-9215-eef82a458f31"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2698,15 +2725,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '208'
+ - '197'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:49:51 GMT
+ - Wed, 20 May 2026 09:05:23 GMT
Pragma:
- no-cache
RequestId:
- - 962a0a6c-e3de-41ee-b8cd-afccdb0700a0
+ - d0dc4416-3954-4973-969b-c8f7995fea14
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2732,13 +2759,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/13bc1b7a-612b-49a6-a134-e09fb0e565a7/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "89903e53-6be2-4ffa-9962-cb330ad26313", "displayName":
- "fabcli000003", "workspaceId": "13bc1b7a-612b-49a6-a134-e09fb0e565a7"}]}'
+ string: '{"value": [{"id": "d9d3b476-096f-4584-9215-eef82a458f31", "displayName":
+ "fabcli000003", "workspaceId": "b5197fda-1783-4bc7-8b19-657840562dfd"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2747,15 +2774,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:49:51 GMT
+ - Wed, 20 May 2026 09:05:24 GMT
Pragma:
- no-cache
RequestId:
- - c74b05bb-a3b5-4569-bbe9-18c1baf07e1f
+ - d285df73-2a5c-4ea0-8a47-3b563f158507
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2781,13 +2808,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/13bc1b7a-612b-49a6-a134-e09fb0e565a7/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "89903e53-6be2-4ffa-9962-cb330ad26313", "displayName":
- "fabcli000003", "workspaceId": "13bc1b7a-612b-49a6-a134-e09fb0e565a7"}]}'
+ string: '{"value": [{"id": "d9d3b476-096f-4584-9215-eef82a458f31", "displayName":
+ "fabcli000003", "workspaceId": "b5197fda-1783-4bc7-8b19-657840562dfd"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2796,15 +2823,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:49:52 GMT
+ - Wed, 20 May 2026 09:05:25 GMT
Pragma:
- no-cache
RequestId:
- - 40a3074a-2a3d-47d5-9eb9-024bffc81266
+ - 4d51f90d-f050-4d59-acde-806f88514d12
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2830,16 +2857,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "53297cef-1d90-40ae-88f7-07170438ec2f", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b5197fda-1783-4bc7-8b19-657840562dfd", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2848,15 +2878,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:49:53 GMT
+ - Wed, 20 May 2026 09:05:26 GMT
Pragma:
- no-cache
RequestId:
- - 4934d0c6-8e8b-4eb6-9a07-d27f3f6f7f90
+ - 4e834014-9d44-452e-91fd-369570db34d0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2882,13 +2912,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/13bc1b7a-612b-49a6-a134-e09fb0e565a7/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "89903e53-6be2-4ffa-9962-cb330ad26313", "displayName":
- "fabcli000003", "workspaceId": "13bc1b7a-612b-49a6-a134-e09fb0e565a7"}]}'
+ string: '{"value": [{"id": "d9d3b476-096f-4584-9215-eef82a458f31", "displayName":
+ "fabcli000003", "workspaceId": "b5197fda-1783-4bc7-8b19-657840562dfd"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2897,15 +2927,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:49:54 GMT
+ - Wed, 20 May 2026 09:05:27 GMT
Pragma:
- no-cache
RequestId:
- - c9665baa-fc1c-4d63-b646-34d3a7de4138
+ - 43dc02d0-0a07-41ce-bd59-523b7639e468
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2931,14 +2961,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/13bc1b7a-612b-49a6-a134-e09fb0e565a7/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/items
response:
body:
- string: '{"value": [{"id": "e6fa6c43-ec05-4374-8cd6-db7fc60e6bd6", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "folderId": "89903e53-6be2-4ffa-9962-cb330ad26313"}]}'
+ string: '{"value": [{"id": "fe37a758-3c42-4f8b-b6fd-dd4861d607c1", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "b5197fda-1783-4bc7-8b19-657840562dfd",
+ "folderId": "d9d3b476-096f-4584-9215-eef82a458f31"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2947,15 +2977,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '208'
+ - '197'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:49:55 GMT
+ - Wed, 20 May 2026 09:05:28 GMT
Pragma:
- no-cache
RequestId:
- - fb66f240-2410-467d-a2eb-92851130313e
+ - 204fbf05-6736-4ae2-9ad0-430c6225349a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2981,13 +3011,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/13bc1b7a-612b-49a6-a134-e09fb0e565a7/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "89903e53-6be2-4ffa-9962-cb330ad26313", "displayName":
- "fabcli000003", "workspaceId": "13bc1b7a-612b-49a6-a134-e09fb0e565a7"}]}'
+ string: '{"value": [{"id": "d9d3b476-096f-4584-9215-eef82a458f31", "displayName":
+ "fabcli000003", "workspaceId": "b5197fda-1783-4bc7-8b19-657840562dfd"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2996,15 +3026,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:49:56 GMT
+ - Wed, 20 May 2026 09:05:28 GMT
Pragma:
- no-cache
RequestId:
- - 30541fea-cb25-4100-b142-11910d6af61c
+ - 3a099473-e810-4e9d-b174-77f0f0a8de6b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3032,9 +3062,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/13bc1b7a-612b-49a6-a134-e09fb0e565a7/items/e6fa6c43-ec05-4374-8cd6-db7fc60e6bd6
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/items/fe37a758-3c42-4f8b-b6fd-dd4861d607c1
response:
body:
string: ''
@@ -3050,11 +3080,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:49:56 GMT
+ - Wed, 20 May 2026 09:05:29 GMT
Pragma:
- no-cache
RequestId:
- - 42c97472-6980-425a-bec0-a0c5e7e692e9
+ - 1e2bc56f-567c-4d01-a5f3-d5578282d2ac
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3080,16 +3110,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "53297cef-1d90-40ae-88f7-07170438ec2f", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b5197fda-1783-4bc7-8b19-657840562dfd", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3098,15 +3131,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:49:57 GMT
+ - Wed, 20 May 2026 09:05:30 GMT
Pragma:
- no-cache
RequestId:
- - 528cf464-68c7-4c63-99bf-55683eecfd52
+ - 0fd938f1-18b6-4b4f-a1a8-eda2efc69e7f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3132,13 +3165,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/13bc1b7a-612b-49a6-a134-e09fb0e565a7/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "89903e53-6be2-4ffa-9962-cb330ad26313", "displayName":
- "fabcli000003", "workspaceId": "13bc1b7a-612b-49a6-a134-e09fb0e565a7"}]}'
+ string: '{"value": [{"id": "d9d3b476-096f-4584-9215-eef82a458f31", "displayName":
+ "fabcli000003", "workspaceId": "b5197fda-1783-4bc7-8b19-657840562dfd"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3147,15 +3180,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:49:58 GMT
+ - Wed, 20 May 2026 09:05:31 GMT
Pragma:
- no-cache
RequestId:
- - a6e1e390-66f8-4158-ad12-a10b8a64d769
+ - 0500dc3a-ee83-4a42-963e-030ca6572546
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3183,9 +3216,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/13bc1b7a-612b-49a6-a134-e09fb0e565a7/folders/89903e53-6be2-4ffa-9962-cb330ad26313
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/folders/d9d3b476-096f-4584-9215-eef82a458f31
response:
body:
string: ''
@@ -3201,11 +3234,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:49:59 GMT
+ - Wed, 20 May 2026 09:05:32 GMT
Pragma:
- no-cache
RequestId:
- - ee87325b-a079-48e6-86ad-ab105986dc94
+ - 7b8d8adf-dbbf-41f2-97cb-bea2c6e1a41a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3231,16 +3264,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "53297cef-1d90-40ae-88f7-07170438ec2f", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b5197fda-1783-4bc7-8b19-657840562dfd", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3249,15 +3285,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:50:00 GMT
+ - Wed, 20 May 2026 09:05:33 GMT
Pragma:
- no-cache
RequestId:
- - acb350ae-6b9f-4bcd-8f59-e88202449d4c
+ - 53213c21-1667-45f4-8b56-af790900f7e8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3283,53 +3319,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f/folders?recursive=True
- response:
- body:
- string: '{"requestId": "96157820-b599-4cee-a523-584404ae9af7", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 7:50:45 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:50:01 GMT
- RequestId:
- - 96157820-b599-4cee-a523-584404ae9af7
- Retry-After:
- - '44'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef", "displayName":
- "fabcli000003", "workspaceId": "53297cef-1d90-40ae-88f7-07170438ec2f"}]}'
+ string: '{"value": [{"id": "b8e4fdb7-b278-425e-a72b-680794f1f91c", "displayName":
+ "fabcli000003", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3338,15 +3334,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '142'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:50:48 GMT
+ - Wed, 20 May 2026 09:05:34 GMT
Pragma:
- no-cache
RequestId:
- - cbe701d9-ac5c-4f85-8a85-31c3e2b8460f
+ - 07212dfa-9ea3-4525-a678-ae5f8fcf7fd9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3372,14 +3368,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/items
response:
body:
- string: '{"value": [{"id": "bf2d1795-59e1-4e4c-a1ea-e07d1fe76b72", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "53297cef-1d90-40ae-88f7-07170438ec2f", "folderId": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef"}]}'
+ string: '{"value": [{"id": "1e1ad4c2-6eda-4517-af8a-3b40887b2500", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7",
+ "folderId": "b8e4fdb7-b278-425e-a72b-680794f1f91c"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3388,15 +3384,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '208'
+ - '193'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:50:49 GMT
+ - Wed, 20 May 2026 09:05:35 GMT
Pragma:
- no-cache
RequestId:
- - d1845735-3359-4db7-aa8b-eefc73ca6233
+ - c416ed3e-107f-4910-af05-ec0b40e69a5d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3422,13 +3418,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef", "displayName":
- "fabcli000003", "workspaceId": "53297cef-1d90-40ae-88f7-07170438ec2f"}]}'
+ string: '{"value": [{"id": "b8e4fdb7-b278-425e-a72b-680794f1f91c", "displayName":
+ "fabcli000003", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3437,15 +3433,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '142'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:50:50 GMT
+ - Wed, 20 May 2026 09:05:35 GMT
Pragma:
- no-cache
RequestId:
- - 0b65eb77-7405-40b8-880a-60394b3ed9ee
+ - ed3a007d-e740-4a23-a1f8-7a045190e965
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3473,9 +3469,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f/items/bf2d1795-59e1-4e4c-a1ea-e07d1fe76b72
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/items/1e1ad4c2-6eda-4517-af8a-3b40887b2500
response:
body:
string: ''
@@ -3491,11 +3487,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:50:51 GMT
+ - Wed, 20 May 2026 09:05:36 GMT
Pragma:
- no-cache
RequestId:
- - 6889ceb8-c177-4b83-aafc-6cbfa50c0ccd
+ - 62129217-56b4-4984-8107-3d309ba544f6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3521,16 +3517,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "53297cef-1d90-40ae-88f7-07170438ec2f", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b5197fda-1783-4bc7-8b19-657840562dfd", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3539,15 +3538,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:50:52 GMT
+ - Wed, 20 May 2026 09:05:38 GMT
Pragma:
- no-cache
RequestId:
- - 6f2f2812-3805-4fbd-9baf-13555d06c9f5
+ - 593306b4-a8e8-4b53-869c-94f88339b38e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3573,13 +3572,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef", "displayName":
- "fabcli000003", "workspaceId": "53297cef-1d90-40ae-88f7-07170438ec2f"}]}'
+ string: '{"value": [{"id": "b8e4fdb7-b278-425e-a72b-680794f1f91c", "displayName":
+ "fabcli000003", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3588,15 +3587,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '142'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:50:53 GMT
+ - Wed, 20 May 2026 09:05:37 GMT
Pragma:
- no-cache
RequestId:
- - 441b7d5a-e37b-424f-9419-13d003791cee
+ - 950f8441-7c0b-4f8b-b5a4-9a2f614e92e8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3624,9 +3623,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f/folders/4cb417a0-e34f-4733-b1d8-045c6b4e09ef
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/folders/b8e4fdb7-b278-425e-a72b-680794f1f91c
response:
body:
string: ''
@@ -3642,11 +3641,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:50:53 GMT
+ - Wed, 20 May 2026 09:05:38 GMT
Pragma:
- no-cache
RequestId:
- - 6a966642-2a9c-43fd-9ca4-1072fe60d2da
+ - 101238b7-f02a-42b0-a106-821cb5e687f4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3672,16 +3671,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "53297cef-1d90-40ae-88f7-07170438ec2f", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b5197fda-1783-4bc7-8b19-657840562dfd", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3690,15 +3692,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:50:54 GMT
+ - Wed, 20 May 2026 09:05:39 GMT
Pragma:
- no-cache
RequestId:
- - 67005f91-c054-4194-8f1e-de50ad9ca314
+ - 6d1476f8-350a-43e6-ae3a-24d8a7e6e779
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3724,9 +3726,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/items
response:
body:
string: '{"value": []}'
@@ -3742,11 +3744,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:50:55 GMT
+ - Wed, 20 May 2026 09:05:40 GMT
Pragma:
- no-cache
RequestId:
- - 1d6ca9a1-902e-49ef-afc4-814681397e92
+ - 5b38fb04-b8bb-40bb-80e7-e5540a0585ec
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3774,9 +3776,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7
response:
body:
string: ''
@@ -3792,11 +3794,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:50:56 GMT
+ - Wed, 20 May 2026 09:05:41 GMT
Pragma:
- no-cache
RequestId:
- - 9f1e8c2b-6ba3-424a-a2a6-6b09a3ac4f04
+ - 548d8995-176e-4305-b064-8917f916daa3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3822,15 +3824,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b5197fda-1783-4bc7-8b19-657840562dfd", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3839,15 +3843,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2840'
+ - '2658'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:50:56 GMT
+ - Wed, 20 May 2026 09:05:42 GMT
Pragma:
- no-cache
RequestId:
- - ed87060d-4a00-4c1d-a253-ce1681b0d2bd
+ - 73204dca-41e8-4263-a37e-e12d3d93b203
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3873,9 +3877,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/13bc1b7a-612b-49a6-a134-e09fb0e565a7/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/items
response:
body:
string: '{"value": []}'
@@ -3891,11 +3895,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:50:58 GMT
+ - Wed, 20 May 2026 09:05:43 GMT
Pragma:
- no-cache
RequestId:
- - 2d041b60-65e5-4ce9-b3f0-9d03d7a1c827
+ - e9090b2e-92c4-4bff-97f5-18984535425c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3923,9 +3927,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/13bc1b7a-612b-49a6-a134-e09fb0e565a7
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd
response:
body:
string: ''
@@ -3941,11 +3945,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:50:59 GMT
+ - Wed, 20 May 2026 09:05:44 GMT
Pragma:
- no-cache
RequestId:
- - 30cb8035-2e92-4369-a3b6-47299e0dfb3c
+ - 906fb433-3937-45bf-87a9-78be6cca65ca
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[CosmosDBDatabase].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[CosmosDBDatabase].yaml
index eefb6a77a..1c512a48b 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[CosmosDBDatabase].yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[CosmosDBDatabase].yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:33:19 GMT
+ - Wed, 20 May 2026 09:31:55 GMT
Pragma:
- no-cache
RequestId:
- - ea7be342-a06f-483f-8c5c-65873f75353f
+ - 24d20f0c-cc9d-4880-af14-866d3a82f217
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,14 +62,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -77,15 +79,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:33:19 GMT
+ - Wed, 20 May 2026 09:31:55 GMT
Pragma:
- no-cache
RequestId:
- - 251252c8-3e10-423f-af61-3a3644095b09
+ - 117e8314-88b8-48f5-b4ee-94027db4330a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -111,7 +113,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -127,15 +129,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '424'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:33:25 GMT
+ - Wed, 20 May 2026 09:31:59 GMT
Pragma:
- no-cache
RequestId:
- - a29dd47b-fa0b-408f-9f73-3be2c9034595
+ - 2b79af7a-030f-4e9a-8f4d-ce8dae46cbef
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -150,8 +152,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000001", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -160,16 +161,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -178,17 +180,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '155'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:33:34 GMT
+ - Wed, 20 May 2026 09:32:08 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d
+ - https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3
Pragma:
- no-cache
RequestId:
- - 8e8858f5-386a-42b4-be79-c6a955520f72
+ - de0960c9-e461-4fcb-802c-88dc2d488bfd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -214,15 +216,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -231,15 +235,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2842'
+ - '2661'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:33:35 GMT
+ - Wed, 20 May 2026 09:32:08 GMT
Pragma:
- no-cache
RequestId:
- - 0f4df12a-e31e-4ac4-8878-264ce622a9f3
+ - dce01d7f-ae3b-4fe1-b50c-9a2b472bcec8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -265,15 +269,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -282,15 +288,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2842'
+ - '2661'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:33:36 GMT
+ - Wed, 20 May 2026 09:32:09 GMT
Pragma:
- no-cache
RequestId:
- - 476ffc44-27f6-424c-bf99-f186ace94a72
+ - b02134e5-4dc7-4b4b-b887-9b7d187c4138
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -316,7 +322,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -332,15 +338,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '424'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:33:42 GMT
+ - Wed, 20 May 2026 09:32:14 GMT
Pragma:
- no-cache
RequestId:
- - bd25330e-03e9-46bd-aa85-e6d8a69ac0f6
+ - 62d092b4-cdcf-49ca-bf37-7c58ce323196
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -355,8 +361,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000002", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -365,16 +370,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "663c8802-1a86-4500-aa99-666f57823e08", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "1be9b197-3830-4d86-be77-c38ed1c9b370", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -383,17 +389,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '155'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:33:49 GMT
+ - Wed, 20 May 2026 09:32:21 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/663c8802-1a86-4500-aa99-666f57823e08
+ - https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370
Pragma:
- no-cache
RequestId:
- - db8ebdab-8446-42bf-95d5-4a51e6b16190
+ - f1c6917a-c160-42fa-9ea8-219fc1756452
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -419,16 +425,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "663c8802-1a86-4500-aa99-666f57823e08", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1be9b197-3830-4d86-be77-c38ed1c9b370", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -437,15 +446,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:33:50 GMT
+ - Wed, 20 May 2026 09:32:21 GMT
Pragma:
- no-cache
RequestId:
- - 6fdf37ad-8099-4c2a-ab8e-2f93d67dbcd8
+ - 00d40ea8-cf1f-4bac-8bbd-ac272ce3b591
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -471,9 +480,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -489,11 +498,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:33:51 GMT
+ - Wed, 20 May 2026 09:32:23 GMT
Pragma:
- no-cache
RequestId:
- - 7d87a7db-301b-41dc-b02d-c0efaa35b716
+ - ee2fa700-fd49-4f34-a8ce-ab33073b4d6f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -519,9 +528,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -537,11 +546,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:33:52 GMT
+ - Wed, 20 May 2026 09:32:23 GMT
Pragma:
- no-cache
RequestId:
- - 3837e4cc-4961-4c48-9c8f-69ebab6c5b57
+ - 5fd358a0-45df-412a-a2f4-f8af6702b97d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -565,17 +574,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders
response:
body:
- string: '{"id": "92de4c19-548f-430f-9778-e87a0a663d84", "displayName": "fabcli000003",
- "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d"}'
+ string: '{"id": "2ce042fb-c657-44b2-85a9-be114cc17493", "displayName": "fabcli000003",
+ "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -584,17 +593,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '131'
+ - '133'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:33:52 GMT
+ - Wed, 20 May 2026 09:32:25 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders/92de4c19-548f-430f-9778-e87a0a663d84
+ - https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders/2ce042fb-c657-44b2-85a9-be114cc17493
Pragma:
- no-cache
RequestId:
- - ec13044b-58b0-4d4f-80e9-b700f3af0f7a
+ - 6ed7ca38-2c5a-47e8-8a5e-25462bb254f2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -620,16 +629,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "663c8802-1a86-4500-aa99-666f57823e08", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1be9b197-3830-4d86-be77-c38ed1c9b370", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -638,15 +650,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:33:53 GMT
+ - Wed, 20 May 2026 09:32:25 GMT
Pragma:
- no-cache
RequestId:
- - 52d38c24-0a51-4a2a-a03b-2cca5f0fa321
+ - 708f5f15-487d-4eac-961d-9c286161040b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -672,13 +684,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "92de4c19-548f-430f-9778-e87a0a663d84", "displayName":
- "fabcli000003", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d"}]}'
+ string: '{"value": [{"id": "2ce042fb-c657-44b2-85a9-be114cc17493", "displayName":
+ "fabcli000003", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -691,11 +703,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:33:54 GMT
+ - Wed, 20 May 2026 09:32:26 GMT
Pragma:
- no-cache
RequestId:
- - 925fd9be-4897-40a8-ad2e-f6c23f026c6d
+ - 18bb407e-d954-499c-835c-739596300d44
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -721,9 +733,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/items
response:
body:
string: '{"value": []}'
@@ -739,11 +751,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:33:55 GMT
+ - Wed, 20 May 2026 09:32:27 GMT
Pragma:
- no-cache
RequestId:
- - c8b73454-e3dd-4f14-b856-3353b86f3004
+ - c53b5c97-38cc-4eca-8254-25f0b35af003
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -769,9 +781,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/items
response:
body:
string: '{"value": []}'
@@ -787,11 +799,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:33:55 GMT
+ - Wed, 20 May 2026 09:32:27 GMT
Pragma:
- no-cache
RequestId:
- - 3182cb09-bcf8-4bed-921f-f22908d0aadb
+ - 4f46dd28-e107-48ea-91bb-8ca2520931cd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -806,8 +818,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000004", "type":
- "CosmosDBDatabase", "folderId": "92de4c19-548f-430f-9778-e87a0a663d84"}'
+ body: '{"displayName": "fabcli000004", "type": "CosmosDBDatabase", "folderId":
+ "2ce042fb-c657-44b2-85a9-be114cc17493"}'
headers:
Accept:
- '*/*'
@@ -816,13 +828,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '148'
+ - '115'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/cosmosDbDatabases
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/cosmosDbDatabases
response:
body:
string: 'null'
@@ -838,15 +850,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:34:09 GMT
+ - Wed, 20 May 2026 09:32:29 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b6006268-073f-45e2-b4f8-64015c20edc5
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3c3f5083-7e5d-4084-b6cd-fd6c486720d6
Pragma:
- no-cache
RequestId:
- - 1a1b3369-6d53-4611-a4f3-987867717a70
+ - 3c727c42-8efc-466e-916d-36eb7ea68428
Retry-After:
- '20'
Strict-Transport-Security:
@@ -860,7 +872,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - b6006268-073f-45e2-b4f8-64015c20edc5
+ - 3c3f5083-7e5d-4084-b6cd-fd6c486720d6
status:
code: 202
message: Accepted
@@ -876,13 +888,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b6006268-073f-45e2-b4f8-64015c20edc5
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3c3f5083-7e5d-4084-b6cd-fd6c486720d6
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:33:57.5025274",
- "lastUpdatedTimeUtc": "2026-02-06T08:34:18.4315259", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:32:29.4014396",
+ "lastUpdatedTimeUtc": "2026-05-20T09:32:38.6163162", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -892,17 +904,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '133'
+ - '131'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:34:31 GMT
+ - Wed, 20 May 2026 09:32:50 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b6006268-073f-45e2-b4f8-64015c20edc5/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3c3f5083-7e5d-4084-b6cd-fd6c486720d6/result
Pragma:
- no-cache
RequestId:
- - c82f68bf-b483-4354-9170-e95dfc66129f
+ - 74893325-adbe-4f6d-8de6-1694be1ef129
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -910,7 +922,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - b6006268-073f-45e2-b4f8-64015c20edc5
+ - 3c3f5083-7e5d-4084-b6cd-fd6c486720d6
status:
code: 200
message: OK
@@ -926,14 +938,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b6006268-073f-45e2-b4f8-64015c20edc5/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3c3f5083-7e5d-4084-b6cd-fd6c486720d6/result
response:
body:
- string: '{"id": "fa0c9832-d9ba-43e8-9d4b-3abf4f1436f5", "type": "CosmosDBDatabase",
- "displayName": "fabcli000004", "workspaceId":
- "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "folderId": "92de4c19-548f-430f-9778-e87a0a663d84"}'
+ string: '{"id": "024305ac-06b1-4d39-a83e-3cf0bd50a65e", "type": "CosmosDBDatabase",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3",
+ "folderId": "2ce042fb-c657-44b2-85a9-be114cc17493"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -944,11 +956,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 08:34:32 GMT
+ - Wed, 20 May 2026 09:32:52 GMT
Pragma:
- no-cache
RequestId:
- - 3d550f9f-cd88-492c-b1bb-32d42baeb069
+ - d0202e8b-5ae0-40bd-adf7-0e0d35baacc4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -972,16 +984,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "663c8802-1a86-4500-aa99-666f57823e08", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1be9b197-3830-4d86-be77-c38ed1c9b370", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -990,15 +1005,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:34:33 GMT
+ - Wed, 20 May 2026 09:32:53 GMT
Pragma:
- no-cache
RequestId:
- - 4bc13363-3165-4a56-baf4-1b4e5bbf3d9c
+ - 75c426b3-ac1d-410a-b7ee-c7c846a88bf5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1024,13 +1039,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "92de4c19-548f-430f-9778-e87a0a663d84", "displayName":
- "fabcli000003", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d"}]}'
+ string: '{"value": [{"id": "2ce042fb-c657-44b2-85a9-be114cc17493", "displayName":
+ "fabcli000003", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1043,11 +1058,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:34:34 GMT
+ - Wed, 20 May 2026 09:32:53 GMT
Pragma:
- no-cache
RequestId:
- - 37e1caf4-c3d0-48e2-bb37-52634dacdee5
+ - 9aed208f-b4eb-4b42-89d6-8b2aba17f35e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1073,16 +1088,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "663c8802-1a86-4500-aa99-666f57823e08", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1be9b197-3830-4d86-be77-c38ed1c9b370", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1091,15 +1109,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:34:35 GMT
+ - Wed, 20 May 2026 09:32:54 GMT
Pragma:
- no-cache
RequestId:
- - 1f78e48d-94ea-4986-9c52-2cb4f5de5f0e
+ - 4abcc4e8-f4a7-4999-87b3-ed5aef960062
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1125,16 +1143,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "663c8802-1a86-4500-aa99-666f57823e08", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1be9b197-3830-4d86-be77-c38ed1c9b370", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1143,15 +1164,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:34:36 GMT
+ - Wed, 20 May 2026 09:32:55 GMT
Pragma:
- no-cache
RequestId:
- - 8bb4180c-430e-4dc5-b7c4-ac9435ac9e86
+ - 4f4b6405-a3f4-4bcd-a9e7-820f4001a978
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1177,9 +1198,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/663c8802-1a86-4500-aa99-666f57823e08/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -1195,11 +1216,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:34:37 GMT
+ - Wed, 20 May 2026 09:32:56 GMT
Pragma:
- no-cache
RequestId:
- - 2e049832-1042-4510-bd99-c7ff65f62bdc
+ - a9a87187-2bc2-4bf0-b11c-6ae60c83468f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1225,9 +1246,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/663c8802-1a86-4500-aa99-666f57823e08/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -1243,11 +1264,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:34:37 GMT
+ - Wed, 20 May 2026 09:32:57 GMT
Pragma:
- no-cache
RequestId:
- - e1a34eba-6b9b-4bf4-889e-e8c09dbb65c3
+ - e89388ef-f1fa-42cb-8402-9495a83cbfa9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1271,17 +1292,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/663c8802-1a86-4500-aa99-666f57823e08/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/folders
response:
body:
- string: '{"id": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2", "displayName": "fabcli000003",
- "workspaceId": "663c8802-1a86-4500-aa99-666f57823e08"}'
+ string: '{"id": "221f066b-5f19-48b1-8833-357e29b0c051", "displayName": "fabcli000003",
+ "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -1290,17 +1311,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '133'
+ - '134'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:34:38 GMT
+ - Wed, 20 May 2026 09:32:58 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/663c8802-1a86-4500-aa99-666f57823e08/folders/ec965fb9-2de0-40fe-a41e-73d3a79c8df2
+ - https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/folders/221f066b-5f19-48b1-8833-357e29b0c051
Pragma:
- no-cache
RequestId:
- - af713adb-fa88-43bb-8da3-d0a833c4c6b3
+ - 82824d99-58be-4238-8b4e-6415263ad04d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1326,14 +1347,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/items
response:
body:
- string: '{"value": [{"id": "fa0c9832-d9ba-43e8-9d4b-3abf4f1436f5", "type": "CosmosDBDatabase",
- "displayName": "fabcli000004", "workspaceId":
- "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "folderId": "92de4c19-548f-430f-9778-e87a0a663d84"}]}'
+ string: '{"value": [{"id": "024305ac-06b1-4d39-a83e-3cf0bd50a65e", "type": "CosmosDBDatabase",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3",
+ "folderId": "2ce042fb-c657-44b2-85a9-be114cc17493"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1342,15 +1363,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '215'
+ - '206'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:34:39 GMT
+ - Wed, 20 May 2026 09:32:58 GMT
Pragma:
- no-cache
RequestId:
- - 78811538-ea2d-43b9-8076-da257fa9c47d
+ - 518f9a5e-1c04-4463-a7c4-3859e9a9e449
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1376,13 +1397,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "92de4c19-548f-430f-9778-e87a0a663d84", "displayName":
- "fabcli000003", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d"}]}'
+ string: '{"value": [{"id": "2ce042fb-c657-44b2-85a9-be114cc17493", "displayName":
+ "fabcli000003", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1395,11 +1416,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:34:40 GMT
+ - Wed, 20 May 2026 09:33:00 GMT
Pragma:
- no-cache
RequestId:
- - 04388baf-b707-490d-b762-e5867dadc1a8
+ - e8d6dc5a-e42e-40c9-9a8b-e68cef67d79f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1425,13 +1446,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "92de4c19-548f-430f-9778-e87a0a663d84", "displayName":
- "fabcli000003", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d"}]}'
+ string: '{"value": [{"id": "2ce042fb-c657-44b2-85a9-be114cc17493", "displayName":
+ "fabcli000003", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1444,11 +1465,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:34:41 GMT
+ - Wed, 20 May 2026 09:33:01 GMT
Pragma:
- no-cache
RequestId:
- - 64bdbca0-7d41-4133-af93-3cb0f68b9536
+ - 48557f62-161a-4100-9ef1-bb2fc270eabb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1474,14 +1495,16 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/items
response:
body:
- string: '{"value": [{"id": "fa0c9832-d9ba-43e8-9d4b-3abf4f1436f5", "type": "CosmosDBDatabase",
- "displayName": "fabcli000004", "workspaceId":
- "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "folderId": "92de4c19-548f-430f-9778-e87a0a663d84"}]}'
+ string: '{"value": [{"id": "359d312d-1c20-4498-8545-59b5a1acfc65", "type": "SQLEndpoint",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3",
+ "folderId": "2ce042fb-c657-44b2-85a9-be114cc17493"}, {"id": "024305ac-06b1-4d39-a83e-3cf0bd50a65e",
+ "type": "CosmosDBDatabase", "displayName": "fabcli000004", "description":
+ "", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "folderId": "2ce042fb-c657-44b2-85a9-be114cc17493"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1490,15 +1513,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '215'
+ - '251'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:34:42 GMT
+ - Wed, 20 May 2026 09:33:02 GMT
Pragma:
- no-cache
RequestId:
- - 1ea76add-318b-4646-a2e4-f6cf82b58627
+ - 54389e6e-885f-4f9c-a66b-78881362c962
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1524,13 +1547,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "92de4c19-548f-430f-9778-e87a0a663d84", "displayName":
- "fabcli000003", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d"}]}'
+ string: '{"value": [{"id": "2ce042fb-c657-44b2-85a9-be114cc17493", "displayName":
+ "fabcli000003", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1543,11 +1566,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:34:42 GMT
+ - Wed, 20 May 2026 09:33:02 GMT
Pragma:
- no-cache
RequestId:
- - 22950a17-d65f-4849-bbbf-69da32204dd2
+ - 52690fae-06e6-4fcb-91c0-747f59f814dc
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1573,13 +1596,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "92de4c19-548f-430f-9778-e87a0a663d84", "displayName":
- "fabcli000003", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d"}]}'
+ string: '{"value": [{"id": "2ce042fb-c657-44b2-85a9-be114cc17493", "displayName":
+ "fabcli000003", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1592,11 +1615,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:34:44 GMT
+ - Wed, 20 May 2026 09:33:03 GMT
Pragma:
- no-cache
RequestId:
- - 7ba5ca4b-0bc8-4560-9ff5-5bd98018fb80
+ - 02ee136f-c9cb-4904-8e16-afa2f56d8e56
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1622,16 +1645,68 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
+ method: GET
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders?recursive=True
+ response:
+ body:
+ string: '{"value": [{"id": "2ce042fb-c657-44b2-85a9-be114cc17493", "displayName":
+ "fabcli000003", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3"}]}'
+ headers:
+ Access-Control-Expose-Headers:
+ - RequestId
+ Cache-Control:
+ - no-store, must-revalidate, no-cache
+ Content-Encoding:
+ - gzip
+ Content-Length:
+ - '144'
+ Content-Type:
+ - application/json; charset=utf-8
+ Date:
+ - Wed, 20 May 2026 09:33:03 GMT
+ Pragma:
+ - no-cache
+ RequestId:
+ - 4b7df644-0829-4505-851c-758d86207011
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - deny
+ home-cluster-uri:
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
+ request-redirected:
+ - 'true'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "663c8802-1a86-4500-aa99-666f57823e08", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1be9b197-3830-4d86-be77-c38ed1c9b370", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1640,15 +1715,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:34:45 GMT
+ - Wed, 20 May 2026 09:33:05 GMT
Pragma:
- no-cache
RequestId:
- - 44d99c6c-28c2-42f2-b11c-6cfd55c64436
+ - 146f59e1-b012-4203-9a18-bc92b5883c12
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1674,13 +1749,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/663c8802-1a86-4500-aa99-666f57823e08/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2", "displayName":
- "fabcli000003", "workspaceId": "663c8802-1a86-4500-aa99-666f57823e08"}]}'
+ string: '{"value": [{"id": "221f066b-5f19-48b1-8833-357e29b0c051", "displayName":
+ "fabcli000003", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1689,15 +1764,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:34:45 GMT
+ - Wed, 20 May 2026 09:33:06 GMT
Pragma:
- no-cache
RequestId:
- - ae7dae60-86c6-46fd-92eb-296c61de8dd2
+ - 38d0e3c8-b28b-475b-8668-fef6248f5386
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1723,9 +1798,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/663c8802-1a86-4500-aa99-666f57823e08/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/items
response:
body:
string: '{"value": []}'
@@ -1741,11 +1816,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:34:46 GMT
+ - Wed, 20 May 2026 09:33:07 GMT
Pragma:
- no-cache
RequestId:
- - 9d31ca17-b1d3-4444-9d35-f9bc762cf8c5
+ - c078b83e-dc44-4fb4-981c-0bdc4dc28635
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1771,9 +1846,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/663c8802-1a86-4500-aa99-666f57823e08/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/items
response:
body:
string: '{"value": []}'
@@ -1789,11 +1864,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:34:47 GMT
+ - Wed, 20 May 2026 09:33:07 GMT
Pragma:
- no-cache
RequestId:
- - 02a744ff-e576-43de-bc6f-aa906fa15e27
+ - e072dd19-c15d-4c51-814b-1af2529148d7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1819,9 +1894,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/663c8802-1a86-4500-aa99-666f57823e08/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/items
response:
body:
string: '{"value": []}'
@@ -1837,11 +1912,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:34:48 GMT
+ - Wed, 20 May 2026 09:33:08 GMT
Pragma:
- no-cache
RequestId:
- - 3830632e-61ac-493f-8683-751a243d45f8
+ - 751d5d0d-ea4d-4a40-9d78-08f3fa454b9b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1867,14 +1942,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/items/fa0c9832-d9ba-43e8-9d4b-3abf4f1436f5
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/items/024305ac-06b1-4d39-a83e-3cf0bd50a65e
response:
body:
- string: '{"id": "fa0c9832-d9ba-43e8-9d4b-3abf4f1436f5", "type": "CosmosDBDatabase",
- "displayName": "fabcli000004", "workspaceId":
- "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "folderId": "92de4c19-548f-430f-9778-e87a0a663d84"}'
+ string: '{"id": "024305ac-06b1-4d39-a83e-3cf0bd50a65e", "type": "CosmosDBDatabase",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3",
+ "folderId": "2ce042fb-c657-44b2-85a9-be114cc17493"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1883,17 +1958,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '202'
+ - '195'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:34:48 GMT
+ - Wed, 20 May 2026 09:33:10 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - ddd1066c-bc1d-4c19-920e-6e163d3ee061
+ - 652157cf-3d22-471b-b158-4c83f8df7b0e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1921,9 +1996,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/items/fa0c9832-d9ba-43e8-9d4b-3abf4f1436f5/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/items/024305ac-06b1-4d39-a83e-3cf0bd50a65e/getDefinition
response:
body:
string: 'null'
@@ -1939,13 +2014,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:34:49 GMT
+ - Wed, 20 May 2026 09:33:11 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cc0b5f97-aea0-4d18-aff2-6badcdc70247
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cbec2339-e3dd-46bc-95eb-f8600822cac8
Pragma:
- no-cache
RequestId:
- - 94f5acea-e082-4821-ba69-2949d23301ea
+ - b652654e-95c1-44fd-952e-8630917886f0
Retry-After:
- '20'
Strict-Transport-Security:
@@ -1959,7 +2034,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - cc0b5f97-aea0-4d18-aff2-6badcdc70247
+ - cbec2339-e3dd-46bc-95eb-f8600822cac8
status:
code: 202
message: Accepted
@@ -1975,13 +2050,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cc0b5f97-aea0-4d18-aff2-6badcdc70247
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cbec2339-e3dd-46bc-95eb-f8600822cac8
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:34:50.3296944",
- "lastUpdatedTimeUtc": "2026-02-06T08:34:51.0640792", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:33:11.4952402",
+ "lastUpdatedTimeUtc": "2026-05-20T09:33:12.3007295", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -1991,17 +2066,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '131'
+ - '130'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:35:12 GMT
+ - Wed, 20 May 2026 09:33:31 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cc0b5f97-aea0-4d18-aff2-6badcdc70247/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cbec2339-e3dd-46bc-95eb-f8600822cac8/result
Pragma:
- no-cache
RequestId:
- - 2df5f342-ecc2-4bf2-947a-e83164333221
+ - a300fac5-fa73-489b-b2bd-f69e4cacc460
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2009,7 +2084,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - cc0b5f97-aea0-4d18-aff2-6badcdc70247
+ - cbec2339-e3dd-46bc-95eb-f8600822cac8
status:
code: 200
message: OK
@@ -2025,13 +2100,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cc0b5f97-aea0-4d18-aff2-6badcdc70247/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cbec2339-e3dd-46bc-95eb-f8600822cac8/result
response:
body:
string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL0Nvc21vc0RCL2RlZmluaXRpb24vQ29zbW9zREIvMi4wLjAvc2NoZW1hLmpzb24iLAogICJjb250YWluZXJzIjogW10KfQ==",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkNvc21vc0RCRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwNCIsCiAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkNvc21vc0RCRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwNCIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
"payloadType": "InlineBase64"}]}}'
headers:
Access-Control-Expose-Headers:
@@ -2043,11 +2118,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 08:35:12 GMT
+ - Wed, 20 May 2026 09:33:32 GMT
Pragma:
- no-cache
RequestId:
- - 9e0a507e-c294-43fe-a85c-2b53f1daf012
+ - fa681711-f4cd-4f79-90ac-8cb3094deaf8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -2060,11 +2135,10 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "CosmosDBDatabase", "displayName":
- "fabcli000004", "definition": {"parts": [{"path": "definition.json", "payload":
- "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL0Nvc21vc0RCL2RlZmluaXRpb24vQ29zbW9zREIvMi4wLjAvc2NoZW1hLmpzb24iLAogICJjb250YWluZXJzIjogW10KfQ==",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkNvc21vc0RCRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwNCIsCiAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
- "payloadType": "InlineBase64"}]}, "folderId": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2"}'
+ body: '{"type": "CosmosDBDatabase", "displayName": "fabcli000004", "definition":
+ {"parts": [{"path": "definition.json", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL0Nvc21vc0RCL2RlZmluaXRpb24vQ29zbW9zREIvMi4wLjAvc2NoZW1hLmpzb24iLAogICJjb250YWluZXJzIjogW10KfQ==",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkNvc21vc0RCRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwNCIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
+ "payloadType": "InlineBase64"}]}, "folderId": "221f066b-5f19-48b1-8833-357e29b0c051"}'
headers:
Accept:
- '*/*'
@@ -2073,13 +2147,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '975'
+ - '894'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/663c8802-1a86-4500-aa99-666f57823e08/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/items
response:
body:
string: 'null'
@@ -2095,15 +2169,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:35:14 GMT
+ - Wed, 20 May 2026 09:33:35 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aa8a03a4-7f67-4a41-a369-1fafaebec146
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c25e7a7a-e71d-4130-bbc7-09d93993524b
Pragma:
- no-cache
RequestId:
- - 2456f0ad-5568-4266-aa24-0adb295d6335
+ - d03923fe-596b-4b1c-bf3e-925416b57f07
Retry-After:
- '20'
Strict-Transport-Security:
@@ -2117,7 +2191,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - aa8a03a4-7f67-4a41-a369-1fafaebec146
+ - c25e7a7a-e71d-4130-bbc7-09d93993524b
status:
code: 202
message: Accepted
@@ -2133,13 +2207,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aa8a03a4-7f67-4a41-a369-1fafaebec146
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c25e7a7a-e71d-4130-bbc7-09d93993524b
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:35:14.1944951",
- "lastUpdatedTimeUtc": "2026-02-06T08:35:33.7887645", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:33:34.3518948",
+ "lastUpdatedTimeUtc": "2026-05-20T09:33:54.9996715", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -2153,13 +2227,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:35:36 GMT
+ - Wed, 20 May 2026 09:33:56 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aa8a03a4-7f67-4a41-a369-1fafaebec146/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c25e7a7a-e71d-4130-bbc7-09d93993524b/result
Pragma:
- no-cache
RequestId:
- - 039b4cb9-44c7-4dd2-b288-d3a6c38e6ab6
+ - b3a993c1-4f34-43bc-b8cb-20996c6cbf72
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2167,7 +2241,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - aa8a03a4-7f67-4a41-a369-1fafaebec146
+ - c25e7a7a-e71d-4130-bbc7-09d93993524b
status:
code: 200
message: OK
@@ -2183,14 +2257,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aa8a03a4-7f67-4a41-a369-1fafaebec146/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c25e7a7a-e71d-4130-bbc7-09d93993524b/result
response:
body:
- string: '{"id": "f88a16d6-4032-4758-a41b-375bae1c6681", "type": "CosmosDBDatabase",
- "displayName": "fabcli000004", "workspaceId":
- "663c8802-1a86-4500-aa99-666f57823e08", "folderId": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2"}'
+ string: '{"id": "1735cac3-1016-489f-9af2-5cfea3748ac3", "type": "CosmosDBDatabase",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370",
+ "folderId": "221f066b-5f19-48b1-8833-357e29b0c051"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2201,11 +2275,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 08:35:37 GMT
+ - Wed, 20 May 2026 09:33:57 GMT
Pragma:
- no-cache
RequestId:
- - b1d36381-3076-49d0-b68f-787a018c5978
+ - 093c283f-ec1d-4f1c-8a3e-607976e5bbbd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -2229,16 +2303,16 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/items
response:
body:
- string: '{"value": [{"id": "3f8e2ecf-f3d1-4627-bc61-daf66505ef16", "type": "SQLEndpoint",
- "displayName": "fabcli000004", "description": "", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d",
- "folderId": "92de4c19-548f-430f-9778-e87a0a663d84"}, {"id": "fa0c9832-d9ba-43e8-9d4b-3abf4f1436f5",
- "type": "CosmosDBDatabase", "displayName": "fabcli000004", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "folderId":
- "92de4c19-548f-430f-9778-e87a0a663d84"}]}'
+ string: '{"value": [{"id": "359d312d-1c20-4498-8545-59b5a1acfc65", "type": "SQLEndpoint",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3",
+ "folderId": "2ce042fb-c657-44b2-85a9-be114cc17493"}, {"id": "024305ac-06b1-4d39-a83e-3cf0bd50a65e",
+ "type": "CosmosDBDatabase", "displayName": "fabcli000004", "description":
+ "", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "folderId": "2ce042fb-c657-44b2-85a9-be114cc17493"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2247,15 +2321,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '263'
+ - '251'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:35:38 GMT
+ - Wed, 20 May 2026 09:33:57 GMT
Pragma:
- no-cache
RequestId:
- - dc495b0d-0f1b-4ec8-ab4c-63fe3f87a3e5
+ - 69bfa841-6895-4f52-95c2-3017d1677f90
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2281,13 +2355,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "92de4c19-548f-430f-9778-e87a0a663d84", "displayName":
- "fabcli000003", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d"}]}'
+ string: '{"value": [{"id": "2ce042fb-c657-44b2-85a9-be114cc17493", "displayName":
+ "fabcli000003", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2300,11 +2374,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:35:39 GMT
+ - Wed, 20 May 2026 09:33:59 GMT
Pragma:
- no-cache
RequestId:
- - 4c1bb255-a14c-4bb3-bef1-8544ac47d487
+ - 4e7f13a8-c2a4-4331-8469-5480178b8616
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2330,13 +2404,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "92de4c19-548f-430f-9778-e87a0a663d84", "displayName":
- "fabcli000003", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d"}]}'
+ string: '{"value": [{"id": "2ce042fb-c657-44b2-85a9-be114cc17493", "displayName":
+ "fabcli000003", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2349,11 +2423,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:35:39 GMT
+ - Wed, 20 May 2026 09:34:00 GMT
Pragma:
- no-cache
RequestId:
- - 239b6e33-d37d-4a75-8877-c50a1e2b4e28
+ - ce695b17-688a-4bbe-b032-3ae58c172380
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2379,13 +2453,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "92de4c19-548f-430f-9778-e87a0a663d84", "displayName":
- "fabcli000003", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d"}]}'
+ string: '{"value": [{"id": "2ce042fb-c657-44b2-85a9-be114cc17493", "displayName":
+ "fabcli000003", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2398,11 +2472,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:35:40 GMT
+ - Wed, 20 May 2026 09:34:00 GMT
Pragma:
- no-cache
RequestId:
- - 8fd179dc-b592-4e96-8187-1331897d1a22
+ - eb37af3a-c118-4b0f-be09-cff934b3c504
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2428,16 +2502,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "663c8802-1a86-4500-aa99-666f57823e08", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1be9b197-3830-4d86-be77-c38ed1c9b370", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2446,15 +2523,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:35:41 GMT
+ - Wed, 20 May 2026 09:34:01 GMT
Pragma:
- no-cache
RequestId:
- - b991bca9-acba-459e-9746-6af16acd90a5
+ - 25d1a146-3a4e-46f3-8f62-af9224dbb1f2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2480,14 +2557,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/663c8802-1a86-4500-aa99-666f57823e08/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/items
response:
body:
- string: '{"value": [{"id": "f88a16d6-4032-4758-a41b-375bae1c6681", "type": "CosmosDBDatabase",
- "displayName": "fabcli000004", "workspaceId":
- "663c8802-1a86-4500-aa99-666f57823e08", "folderId": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2"}]}'
+ string: '{"value": [{"id": "1735cac3-1016-489f-9af2-5cfea3748ac3", "type": "CosmosDBDatabase",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370",
+ "folderId": "221f066b-5f19-48b1-8833-357e29b0c051"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2496,15 +2573,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '215'
+ - '206'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:35:42 GMT
+ - Wed, 20 May 2026 09:34:02 GMT
Pragma:
- no-cache
RequestId:
- - 2096642f-7efd-41f3-a4b7-c42e188fe4e3
+ - aeb3df57-9652-4431-b5e3-de4c25fcac6e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2530,13 +2607,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/663c8802-1a86-4500-aa99-666f57823e08/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2", "displayName":
- "fabcli000003", "workspaceId": "663c8802-1a86-4500-aa99-666f57823e08"}]}'
+ string: '{"value": [{"id": "221f066b-5f19-48b1-8833-357e29b0c051", "displayName":
+ "fabcli000003", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2545,15 +2622,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:35:43 GMT
+ - Wed, 20 May 2026 09:34:03 GMT
Pragma:
- no-cache
RequestId:
- - a5e1dfff-23e9-40e3-9ba6-24ce8e642ffc
+ - 5d1b8f0f-dd2a-4164-8058-5b02dda38823
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2579,13 +2656,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/663c8802-1a86-4500-aa99-666f57823e08/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2", "displayName":
- "fabcli000003", "workspaceId": "663c8802-1a86-4500-aa99-666f57823e08"}]}'
+ string: '{"value": [{"id": "221f066b-5f19-48b1-8833-357e29b0c051", "displayName":
+ "fabcli000003", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2594,15 +2671,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:35:44 GMT
+ - Wed, 20 May 2026 09:34:04 GMT
Pragma:
- no-cache
RequestId:
- - 2fa841fb-d24c-478c-87a5-1dcc0fb59e1d
+ - b2d577fa-d9ca-472a-ab06-bdd2a949d834
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2628,16 +2705,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "663c8802-1a86-4500-aa99-666f57823e08", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1be9b197-3830-4d86-be77-c38ed1c9b370", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2646,15 +2726,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:35:44 GMT
+ - Wed, 20 May 2026 09:34:05 GMT
Pragma:
- no-cache
RequestId:
- - 6584b12a-fda8-4c33-aeb1-9d9052aa13fb
+ - 4c8e6d9d-5827-4389-bec5-fa6f297c065b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2680,13 +2760,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/663c8802-1a86-4500-aa99-666f57823e08/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2", "displayName":
- "fabcli000003", "workspaceId": "663c8802-1a86-4500-aa99-666f57823e08"}]}'
+ string: '{"value": [{"id": "221f066b-5f19-48b1-8833-357e29b0c051", "displayName":
+ "fabcli000003", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2695,15 +2775,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:35:45 GMT
+ - Wed, 20 May 2026 09:34:05 GMT
Pragma:
- no-cache
RequestId:
- - 98f3429d-345b-4d8f-a5a3-717119a72aa4
+ - 2c1eff95-8198-4b74-916a-00c01745b984
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2729,16 +2809,16 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/663c8802-1a86-4500-aa99-666f57823e08/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/items
response:
body:
- string: '{"value": [{"id": "e9cf5569-e6fd-46e9-a211-e58ea25be022", "type": "SQLEndpoint",
- "displayName": "fabcli000004", "description": "", "workspaceId": "663c8802-1a86-4500-aa99-666f57823e08",
- "folderId": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2"}, {"id": "f88a16d6-4032-4758-a41b-375bae1c6681",
- "type": "CosmosDBDatabase", "displayName": "fabcli000004", "workspaceId": "663c8802-1a86-4500-aa99-666f57823e08", "folderId":
- "ec965fb9-2de0-40fe-a41e-73d3a79c8df2"}]}'
+ string: '{"value": [{"id": "7e23b2f0-ca5e-4c9f-9f43-5ba06117649c", "type": "SQLEndpoint",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370",
+ "folderId": "221f066b-5f19-48b1-8833-357e29b0c051"}, {"id": "1735cac3-1016-489f-9af2-5cfea3748ac3",
+ "type": "CosmosDBDatabase", "displayName": "fabcli000004", "description":
+ "", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370", "folderId": "221f066b-5f19-48b1-8833-357e29b0c051"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2747,15 +2827,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '263'
+ - '250'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:35:46 GMT
+ - Wed, 20 May 2026 09:34:06 GMT
Pragma:
- no-cache
RequestId:
- - 5f4fc3e3-34bf-4339-b686-b9f554bfa3bc
+ - e53f59a9-3b17-40fc-9fed-4ac189c1ee0c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2781,13 +2861,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/663c8802-1a86-4500-aa99-666f57823e08/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2", "displayName":
- "fabcli000003", "workspaceId": "663c8802-1a86-4500-aa99-666f57823e08"}]}'
+ string: '{"value": [{"id": "221f066b-5f19-48b1-8833-357e29b0c051", "displayName":
+ "fabcli000003", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2796,15 +2876,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:35:47 GMT
+ - Wed, 20 May 2026 09:34:07 GMT
Pragma:
- no-cache
RequestId:
- - d93e0ed3-03c7-4889-9b81-b547e13e67dd
+ - 261a826e-c88e-4fb2-a0cb-9c321e9681bb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2830,13 +2910,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/663c8802-1a86-4500-aa99-666f57823e08/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2", "displayName":
- "fabcli000003", "workspaceId": "663c8802-1a86-4500-aa99-666f57823e08"}]}'
+ string: '{"value": [{"id": "221f066b-5f19-48b1-8833-357e29b0c051", "displayName":
+ "fabcli000003", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2845,15 +2925,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:35:47 GMT
+ - Wed, 20 May 2026 09:34:08 GMT
Pragma:
- no-cache
RequestId:
- - d95d1370-7a81-455c-8581-714ceb9b3410
+ - 2dc64659-7b47-4210-b2d4-5285ca4afc0b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2879,13 +2959,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/663c8802-1a86-4500-aa99-666f57823e08/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2", "displayName":
- "fabcli000003", "workspaceId": "663c8802-1a86-4500-aa99-666f57823e08"}]}'
+ string: '{"value": [{"id": "221f066b-5f19-48b1-8833-357e29b0c051", "displayName":
+ "fabcli000003", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2894,15 +2974,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:35:48 GMT
+ - Wed, 20 May 2026 09:34:09 GMT
Pragma:
- no-cache
RequestId:
- - cdb95b09-7a0c-4338-81fa-b217eeebfe3a
+ - a47600ce-6d63-4e0e-88fe-e1009c6e1a72
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2928,16 +3008,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "663c8802-1a86-4500-aa99-666f57823e08", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1be9b197-3830-4d86-be77-c38ed1c9b370", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2946,15 +3029,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:35:50 GMT
+ - Wed, 20 May 2026 09:34:10 GMT
Pragma:
- no-cache
RequestId:
- - 16335a5e-5267-4372-a6a0-e8ccd28d88e0
+ - 1aae7c11-4b93-455c-84ec-c19e8c51e09c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2980,13 +3063,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/663c8802-1a86-4500-aa99-666f57823e08/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2", "displayName":
- "fabcli000003", "workspaceId": "663c8802-1a86-4500-aa99-666f57823e08"}]}'
+ string: '{"value": [{"id": "221f066b-5f19-48b1-8833-357e29b0c051", "displayName":
+ "fabcli000003", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2995,15 +3078,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:35:50 GMT
+ - Wed, 20 May 2026 09:34:11 GMT
Pragma:
- no-cache
RequestId:
- - d805ffd3-bde2-4139-b5f6-a304fc1d2831
+ - 1bab0d78-3bc5-4c56-9bc8-3657029bcb25
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3029,16 +3112,16 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/663c8802-1a86-4500-aa99-666f57823e08/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/items
response:
body:
- string: '{"value": [{"id": "e9cf5569-e6fd-46e9-a211-e58ea25be022", "type": "SQLEndpoint",
- "displayName": "fabcli000004", "description": "", "workspaceId": "663c8802-1a86-4500-aa99-666f57823e08",
- "folderId": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2"}, {"id": "f88a16d6-4032-4758-a41b-375bae1c6681",
- "type": "CosmosDBDatabase", "displayName": "fabcli000004", "workspaceId": "663c8802-1a86-4500-aa99-666f57823e08", "folderId":
- "ec965fb9-2de0-40fe-a41e-73d3a79c8df2"}]}'
+ string: '{"value": [{"id": "7e23b2f0-ca5e-4c9f-9f43-5ba06117649c", "type": "SQLEndpoint",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370",
+ "folderId": "221f066b-5f19-48b1-8833-357e29b0c051"}, {"id": "1735cac3-1016-489f-9af2-5cfea3748ac3",
+ "type": "CosmosDBDatabase", "displayName": "fabcli000004", "description":
+ "", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370", "folderId": "221f066b-5f19-48b1-8833-357e29b0c051"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3047,15 +3130,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '263'
+ - '250'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:35:50 GMT
+ - Wed, 20 May 2026 09:34:11 GMT
Pragma:
- no-cache
RequestId:
- - 127651b1-8adb-4af6-a894-967e8988a60b
+ - 92a957f1-e6c7-4818-94bd-d9e1e86a523e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3081,53 +3164,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/663c8802-1a86-4500-aa99-666f57823e08/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/folders?recursive=True
response:
body:
- string: '{"requestId": "369563a2-ddd0-411d-8a38-84eac5b6f154", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 8:36:39 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 08:35:51 GMT
- RequestId:
- - 369563a2-ddd0-411d-8a38-84eac5b6f154
- Retry-After:
- - '47'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/663c8802-1a86-4500-aa99-666f57823e08/folders?recursive=True
- response:
- body:
- string: '{"value": [{"id": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2", "displayName":
- "fabcli000003", "workspaceId": "663c8802-1a86-4500-aa99-666f57823e08"}]}'
+ string: '{"value": [{"id": "221f066b-5f19-48b1-8833-357e29b0c051", "displayName":
+ "fabcli000003", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3136,15 +3179,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:36:42 GMT
+ - Wed, 20 May 2026 09:34:12 GMT
Pragma:
- no-cache
RequestId:
- - 6aca3854-13e4-40b9-9253-21a104658422
+ - 9c5018ea-2e0b-44fe-a388-6f2ea8f116b4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3170,13 +3213,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/663c8802-1a86-4500-aa99-666f57823e08/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2", "displayName":
- "fabcli000003", "workspaceId": "663c8802-1a86-4500-aa99-666f57823e08"}]}'
+ string: '{"value": [{"id": "221f066b-5f19-48b1-8833-357e29b0c051", "displayName":
+ "fabcli000003", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3185,15 +3228,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:36:42 GMT
+ - Wed, 20 May 2026 09:34:14 GMT
Pragma:
- no-cache
RequestId:
- - c707c679-49d8-4ada-b502-4069aacd8598
+ - ad52a29f-568b-46fb-90d9-505f1706c19b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3221,9 +3264,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/663c8802-1a86-4500-aa99-666f57823e08/items/f88a16d6-4032-4758-a41b-375bae1c6681
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/items/1735cac3-1016-489f-9af2-5cfea3748ac3
response:
body:
string: ''
@@ -3239,11 +3282,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:36:44 GMT
+ - Wed, 20 May 2026 09:34:14 GMT
Pragma:
- no-cache
RequestId:
- - c743e75a-b6bd-458f-ae1d-6b3370a79eef
+ - f7c625b0-fbe5-40e7-8b2c-6f94ad882c5b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3269,16 +3312,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "663c8802-1a86-4500-aa99-666f57823e08", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1be9b197-3830-4d86-be77-c38ed1c9b370", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3287,15 +3333,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:36:44 GMT
+ - Wed, 20 May 2026 09:34:15 GMT
Pragma:
- no-cache
RequestId:
- - 14560d90-7e14-450c-abc2-0600b7e6eb82
+ - 67166eb9-120f-4724-bdba-20d99a1b7b66
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3321,13 +3367,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/663c8802-1a86-4500-aa99-666f57823e08/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2", "displayName":
- "fabcli000003", "workspaceId": "663c8802-1a86-4500-aa99-666f57823e08"}]}'
+ string: '{"value": [{"id": "221f066b-5f19-48b1-8833-357e29b0c051", "displayName":
+ "fabcli000003", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3336,15 +3382,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:36:45 GMT
+ - Wed, 20 May 2026 09:34:16 GMT
Pragma:
- no-cache
RequestId:
- - 2821506f-6c13-4d93-9dfb-6aa32f4bd0cc
+ - e82a065f-1ea2-47d3-b17d-df1984173851
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3372,9 +3418,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/663c8802-1a86-4500-aa99-666f57823e08/folders/ec965fb9-2de0-40fe-a41e-73d3a79c8df2
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/folders/221f066b-5f19-48b1-8833-357e29b0c051
response:
body:
string: ''
@@ -3390,11 +3436,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:36:46 GMT
+ - Wed, 20 May 2026 09:34:18 GMT
Pragma:
- no-cache
RequestId:
- - 7cc9d12b-7e4d-4b19-aa52-0b2ff4465421
+ - 3f2a87ea-c796-4778-ba07-78ef0e6af25f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3420,16 +3466,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "663c8802-1a86-4500-aa99-666f57823e08", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1be9b197-3830-4d86-be77-c38ed1c9b370", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3438,15 +3487,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:36:46 GMT
+ - Wed, 20 May 2026 09:34:18 GMT
Pragma:
- no-cache
RequestId:
- - 8996a096-fff8-48df-ad01-1066573b8c3a
+ - 1201a965-204a-414e-b5d6-95d8f1053c8a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3472,13 +3521,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "92de4c19-548f-430f-9778-e87a0a663d84", "displayName":
- "fabcli000003", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d"}]}'
+ string: '{"value": [{"id": "2ce042fb-c657-44b2-85a9-be114cc17493", "displayName":
+ "fabcli000003", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3491,11 +3540,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:36:47 GMT
+ - Wed, 20 May 2026 09:34:19 GMT
Pragma:
- no-cache
RequestId:
- - 3976a8f3-df31-4f0a-84ad-79f5250614f7
+ - c63c1696-a733-4b7c-96c4-e886cf26a472
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3521,16 +3570,16 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/items
response:
body:
- string: '{"value": [{"id": "3f8e2ecf-f3d1-4627-bc61-daf66505ef16", "type": "SQLEndpoint",
- "displayName": "fabcli000004", "description": "", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d",
- "folderId": "92de4c19-548f-430f-9778-e87a0a663d84"}, {"id": "fa0c9832-d9ba-43e8-9d4b-3abf4f1436f5",
- "type": "CosmosDBDatabase", "displayName": "fabcli000004", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "folderId":
- "92de4c19-548f-430f-9778-e87a0a663d84"}]}'
+ string: '{"value": [{"id": "359d312d-1c20-4498-8545-59b5a1acfc65", "type": "SQLEndpoint",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3",
+ "folderId": "2ce042fb-c657-44b2-85a9-be114cc17493"}, {"id": "024305ac-06b1-4d39-a83e-3cf0bd50a65e",
+ "type": "CosmosDBDatabase", "displayName": "fabcli000004", "description":
+ "", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "folderId": "2ce042fb-c657-44b2-85a9-be114cc17493"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3539,15 +3588,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '263'
+ - '251'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:36:48 GMT
+ - Wed, 20 May 2026 09:34:20 GMT
Pragma:
- no-cache
RequestId:
- - 553fff0f-9e04-4ebd-a10a-060bb8ffe454
+ - 7e654a35-93a8-49a2-aed2-ecd46b866465
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3573,13 +3622,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "92de4c19-548f-430f-9778-e87a0a663d84", "displayName":
- "fabcli000003", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d"}]}'
+ string: '{"value": [{"id": "2ce042fb-c657-44b2-85a9-be114cc17493", "displayName":
+ "fabcli000003", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3592,11 +3641,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:36:49 GMT
+ - Wed, 20 May 2026 09:34:20 GMT
Pragma:
- no-cache
RequestId:
- - a5ae90d0-280d-4dd9-8ede-a7a46c420d45
+ - 067ee4ca-8cd4-4d6f-a460-b532104426d2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3622,13 +3671,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "92de4c19-548f-430f-9778-e87a0a663d84", "displayName":
- "fabcli000003", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d"}]}'
+ string: '{"value": [{"id": "2ce042fb-c657-44b2-85a9-be114cc17493", "displayName":
+ "fabcli000003", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3641,11 +3690,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:36:50 GMT
+ - Wed, 20 May 2026 09:34:22 GMT
Pragma:
- no-cache
RequestId:
- - be27381e-fec4-4d61-97a2-9bf2524f1526
+ - 52380e3a-bf38-4a7b-bd1e-de9328baa38b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3673,9 +3722,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/items/fa0c9832-d9ba-43e8-9d4b-3abf4f1436f5
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/items/024305ac-06b1-4d39-a83e-3cf0bd50a65e
response:
body:
string: ''
@@ -3691,11 +3740,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:36:50 GMT
+ - Wed, 20 May 2026 09:34:23 GMT
Pragma:
- no-cache
RequestId:
- - 92705afd-9e1a-486f-b573-eb1acb490200
+ - 9cc15a57-d8a9-4e04-a4e8-d37b73689841
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3721,16 +3770,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "663c8802-1a86-4500-aa99-666f57823e08", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1be9b197-3830-4d86-be77-c38ed1c9b370", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3739,15 +3791,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:36:52 GMT
+ - Wed, 20 May 2026 09:34:24 GMT
Pragma:
- no-cache
RequestId:
- - 5beaaf5e-be16-4a64-a945-e881a174d942
+ - 8d49cc12-5dad-4688-b3be-8e8a2ac6168a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3773,13 +3825,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "92de4c19-548f-430f-9778-e87a0a663d84", "displayName":
- "fabcli000003", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d"}]}'
+ string: '{"value": [{"id": "2ce042fb-c657-44b2-85a9-be114cc17493", "displayName":
+ "fabcli000003", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3792,11 +3844,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:36:53 GMT
+ - Wed, 20 May 2026 09:34:25 GMT
Pragma:
- no-cache
RequestId:
- - 8bbba3fa-1911-430d-915c-58a8904ba653
+ - 79c0b4f7-6178-4d62-af2a-7149e7416f9d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3824,9 +3876,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders/92de4c19-548f-430f-9778-e87a0a663d84
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders/2ce042fb-c657-44b2-85a9-be114cc17493
response:
body:
string: ''
@@ -3842,11 +3894,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:36:54 GMT
+ - Wed, 20 May 2026 09:34:26 GMT
Pragma:
- no-cache
RequestId:
- - 4b7092a7-6f4d-42cc-9a2b-cd3318961b9b
+ - e9cac8f9-7e97-44b1-8f2a-94f2c3d2ec1f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3872,16 +3924,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "663c8802-1a86-4500-aa99-666f57823e08", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1be9b197-3830-4d86-be77-c38ed1c9b370", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3890,15 +3945,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:36:54 GMT
+ - Wed, 20 May 2026 09:34:27 GMT
Pragma:
- no-cache
RequestId:
- - a97ee7ea-b1bd-4f8b-9ed5-a9e8fc52cab7
+ - 72e93c53-8487-44cc-9685-b110ae4d076d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3924,9 +3979,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/items
response:
body:
string: '{"value": []}'
@@ -3942,11 +3997,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:36:55 GMT
+ - Wed, 20 May 2026 09:34:28 GMT
Pragma:
- no-cache
RequestId:
- - 584b11ce-f95d-42c0-8cfd-79b6bb6495a8
+ - fb6211c3-9d24-4685-94ce-8418b990ce96
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3974,9 +4029,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3
response:
body:
string: ''
@@ -3992,11 +4047,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:36:56 GMT
+ - Wed, 20 May 2026 09:34:28 GMT
Pragma:
- no-cache
RequestId:
- - 5902bb64-f6f1-48b3-bdfa-64e26119e810
+ - fc26fe05-b581-4ee3-8a76-f22eb3d1ea8c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4022,15 +4077,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "663c8802-1a86-4500-aa99-666f57823e08", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1be9b197-3830-4d86-be77-c38ed1c9b370", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4039,15 +4096,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2841'
+ - '2658'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:36:57 GMT
+ - Wed, 20 May 2026 09:34:29 GMT
Pragma:
- no-cache
RequestId:
- - 85df337f-22ae-4612-97bc-977cf842fd93
+ - c54099ad-c57b-4824-b488-f35021f8908c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4073,9 +4130,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/663c8802-1a86-4500-aa99-666f57823e08/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/items
response:
body:
string: '{"value": []}'
@@ -4091,11 +4148,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:36:58 GMT
+ - Wed, 20 May 2026 09:34:30 GMT
Pragma:
- no-cache
RequestId:
- - a5ddb74a-c1b2-4846-935b-c0735a924ab7
+ - f7719255-e871-488a-92cf-a7232d224841
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4123,9 +4180,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/663c8802-1a86-4500-aa99-666f57823e08
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370
response:
body:
string: ''
@@ -4141,11 +4198,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:36:58 GMT
+ - Wed, 20 May 2026 09:34:30 GMT
Pragma:
- no-cache
RequestId:
- - 2167818a-256e-46d5-899a-8b4b1f6c28f3
+ - 04497257-1216-49d4-960f-4b598f54b4b3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[DataPipeline].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[DataPipeline].yaml
index 18f581f7c..a1bf09b7e 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[DataPipeline].yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[DataPipeline].yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:27 GMT
+ - Wed, 20 May 2026 09:21:00 GMT
Pragma:
- no-cache
RequestId:
- - 5631c736-d2ac-4597-aaf5-ca767f56c4e4
+ - 571d4c48-36d8-4b2f-9acc-b0e3ba3e506f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,14 +62,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -77,15 +79,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:28 GMT
+ - Wed, 20 May 2026 09:21:00 GMT
Pragma:
- no-cache
RequestId:
- - 467ec3d3-0c4d-4146-8a42-e8f1464a81f5
+ - b07602cf-8371-421d-b825-0f6b6c5406ce
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -111,7 +113,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -127,15 +129,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '427'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:32 GMT
+ - Wed, 20 May 2026 09:21:06 GMT
Pragma:
- no-cache
RequestId:
- - 7a494747-9b8a-4a1a-9d92-738088338a7f
+ - 786fc079-ff3c-4d7e-a350-7a442f037d51
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -150,8 +152,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000001", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -160,16 +161,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "d1df1cf9-4071-451f-b495-9990506dc8ec", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "700bae06-c673-4d92-bafd-8ff89d4059e2", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -178,17 +180,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '154'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:39 GMT
+ - Wed, 20 May 2026 09:21:14 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/d1df1cf9-4071-451f-b495-9990506dc8ec
+ - https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2
Pragma:
- no-cache
RequestId:
- - b5b4ff5c-6668-4171-9e30-b3d8dea75d44
+ - 16f4913d-3e83-494c-9616-27f512980b29
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -214,15 +216,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d1df1cf9-4071-451f-b495-9990506dc8ec", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "700bae06-c673-4d92-bafd-8ff89d4059e2", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -231,15 +235,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2847'
+ - '2656'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:40 GMT
+ - Wed, 20 May 2026 09:21:15 GMT
Pragma:
- no-cache
RequestId:
- - 2078e768-917f-4dfe-b660-a9b7a915e1fa
+ - b021624f-b325-44ed-a41e-5f6380f150ba
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -265,15 +269,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d1df1cf9-4071-451f-b495-9990506dc8ec", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "700bae06-c673-4d92-bafd-8ff89d4059e2", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -282,15 +288,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2847'
+ - '2656'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:41 GMT
+ - Wed, 20 May 2026 09:21:16 GMT
Pragma:
- no-cache
RequestId:
- - 2470e8a3-d8c9-4f5a-833f-3e5227ed898b
+ - 32b56a86-29b7-49a8-8929-e5f77be716e9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -316,7 +322,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -332,15 +338,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '424'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:46 GMT
+ - Wed, 20 May 2026 09:21:21 GMT
Pragma:
- no-cache
RequestId:
- - 24918917-0872-46cc-ac9e-3f15e9a794c5
+ - d6c78748-bc15-43ac-a117-c788c2c07eda
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -355,8 +361,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000002", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -365,16 +370,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -383,17 +389,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '154'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:53 GMT
+ - Wed, 20 May 2026 09:21:29 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/86a7832d-1baa-4ad4-a1b4-5313dc823f31
+ - https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a
Pragma:
- no-cache
RequestId:
- - 00e1979e-6ee4-41b5-8684-d493e88604db
+ - f6bda62b-a275-4fcd-b40b-7031aa40d959
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -419,16 +425,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d1df1cf9-4071-451f-b495-9990506dc8ec", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "700bae06-c673-4d92-bafd-8ff89d4059e2", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -437,15 +446,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2883'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:54 GMT
+ - Wed, 20 May 2026 09:21:30 GMT
Pragma:
- no-cache
RequestId:
- - a61636ee-e512-4f4c-a5a3-91855919389b
+ - 97a5d098-6c19-49f2-b47d-57927ebb1a99
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -471,9 +480,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d1df1cf9-4071-451f-b495-9990506dc8ec/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -489,11 +498,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:55 GMT
+ - Wed, 20 May 2026 09:21:31 GMT
Pragma:
- no-cache
RequestId:
- - eb56277b-ef0f-4c61-b40b-5c7ffe6dcea6
+ - 7ed76f53-aa73-4e1e-a03f-da0a84090786
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -519,9 +528,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d1df1cf9-4071-451f-b495-9990506dc8ec/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -537,11 +546,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:56 GMT
+ - Wed, 20 May 2026 09:21:31 GMT
Pragma:
- no-cache
RequestId:
- - e1667d39-f98d-4eeb-9290-1eee5c6c11c0
+ - 5b801c55-30eb-4fe1-bd9d-a6f89c1aac72
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -565,17 +574,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/d1df1cf9-4071-451f-b495-9990506dc8ec/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/folders
response:
body:
- string: '{"id": "464163de-4664-4347-8124-4b18c93a5f6e", "displayName": "fabcli000003",
- "workspaceId": "d1df1cf9-4071-451f-b495-9990506dc8ec"}'
+ string: '{"id": "8d913a12-565d-41e5-aa9b-1a0a42bcb001", "displayName": "fabcli000003",
+ "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -584,17 +593,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '132'
+ - '133'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:56 GMT
+ - Wed, 20 May 2026 09:21:33 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/d1df1cf9-4071-451f-b495-9990506dc8ec/folders/464163de-4664-4347-8124-4b18c93a5f6e
+ - https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/folders/8d913a12-565d-41e5-aa9b-1a0a42bcb001
Pragma:
- no-cache
RequestId:
- - d653c700-c677-4351-86e4-a1fca697a439
+ - 587aeb0a-dc25-4125-913c-572f80844166
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -620,16 +629,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d1df1cf9-4071-451f-b495-9990506dc8ec", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "700bae06-c673-4d92-bafd-8ff89d4059e2", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -638,15 +650,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2883'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:58 GMT
+ - Wed, 20 May 2026 09:21:34 GMT
Pragma:
- no-cache
RequestId:
- - a5ac5845-926f-4844-a7a0-56de754542d5
+ - c0c08a71-c842-4a82-85af-40ca3fa1000e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -672,13 +684,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d1df1cf9-4071-451f-b495-9990506dc8ec/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "464163de-4664-4347-8124-4b18c93a5f6e", "displayName":
- "fabcli000003", "workspaceId": "d1df1cf9-4071-451f-b495-9990506dc8ec"}]}'
+ string: '{"value": [{"id": "8d913a12-565d-41e5-aa9b-1a0a42bcb001", "displayName":
+ "fabcli000003", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -691,11 +703,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:59 GMT
+ - Wed, 20 May 2026 09:21:35 GMT
Pragma:
- no-cache
RequestId:
- - 89fad134-eb67-4c65-8baf-7a5a9dbea671
+ - 033a8e5a-f144-45ab-968f-cb13e0a0ff77
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -721,9 +733,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d1df1cf9-4071-451f-b495-9990506dc8ec/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/items
response:
body:
string: '{"value": []}'
@@ -739,11 +751,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:15:00 GMT
+ - Wed, 20 May 2026 09:21:35 GMT
Pragma:
- no-cache
RequestId:
- - 90a99cce-638a-4140-8d03-58d50dfab9a2
+ - 8ee56181-f241-4c3e-965c-99b9ab3448bf
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -769,9 +781,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d1df1cf9-4071-451f-b495-9990506dc8ec/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/items
response:
body:
string: '{"value": []}'
@@ -787,11 +799,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:15:00 GMT
+ - Wed, 20 May 2026 09:21:36 GMT
Pragma:
- no-cache
RequestId:
- - 8499b3f1-dea0-4531-9edd-c13c4bc6573b
+ - 997e42f9-76a4-4eb0-be9e-90555f0d9d43
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -806,8 +818,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000004", "type":
- "DataPipeline", "folderId": "464163de-4664-4347-8124-4b18c93a5f6e"}'
+ body: '{"displayName": "fabcli000004", "type": "DataPipeline", "folderId": "8d913a12-565d-41e5-aa9b-1a0a42bcb001"}'
headers:
Accept:
- '*/*'
@@ -816,18 +827,18 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '144'
+ - '111'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/d1df1cf9-4071-451f-b495-9990506dc8ec/dataPipelines
+ uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/dataPipelines
response:
body:
- string: '{"id": "58ed4d14-805b-4dc7-98f9-e55428c3e5f0", "type": "DataPipeline",
- "displayName": "fabcli000004", "workspaceId":
- "d1df1cf9-4071-451f-b495-9990506dc8ec", "folderId": "464163de-4664-4347-8124-4b18c93a5f6e"}'
+ string: '{"id": "ed4a761f-99a3-4751-bcc2-e2251febc610", "type": "DataPipeline",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2",
+ "folderId": "8d913a12-565d-41e5-aa9b-1a0a42bcb001"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -836,17 +847,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '203'
+ - '190'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:15:07 GMT
+ - Wed, 20 May 2026 09:21:42 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - a56a25f9-6623-4716-a8b8-0da2a39e83af
+ - 6e8e94bd-9283-4e89-b1ae-1f9340f07f47
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -872,16 +883,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d1df1cf9-4071-451f-b495-9990506dc8ec", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "700bae06-c673-4d92-bafd-8ff89d4059e2", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -890,15 +904,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2883'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:15:07 GMT
+ - Wed, 20 May 2026 09:21:43 GMT
Pragma:
- no-cache
RequestId:
- - 7b922003-4398-4b95-b19d-5a1125261605
+ - 8c01c935-3a72-45f4-9c5b-18052ce765ec
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -924,13 +938,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d1df1cf9-4071-451f-b495-9990506dc8ec/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "464163de-4664-4347-8124-4b18c93a5f6e", "displayName":
- "fabcli000003", "workspaceId": "d1df1cf9-4071-451f-b495-9990506dc8ec"}]}'
+ string: '{"value": [{"id": "8d913a12-565d-41e5-aa9b-1a0a42bcb001", "displayName":
+ "fabcli000003", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -943,11 +957,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:15:08 GMT
+ - Wed, 20 May 2026 09:21:44 GMT
Pragma:
- no-cache
RequestId:
- - e66c8d28-f20c-4620-9b11-b4316046c621
+ - 1646dc4c-06d5-4c04-a601-4b5ef2d4965c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -973,16 +987,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d1df1cf9-4071-451f-b495-9990506dc8ec", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "700bae06-c673-4d92-bafd-8ff89d4059e2", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -991,15 +1008,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2883'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:15:09 GMT
+ - Wed, 20 May 2026 09:21:44 GMT
Pragma:
- no-cache
RequestId:
- - 54114ad1-5936-46a3-9692-2c5ba94a80da
+ - b23ed152-ebba-49d9-ad73-0a77b0cc39a9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1025,16 +1042,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d1df1cf9-4071-451f-b495-9990506dc8ec", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "700bae06-c673-4d92-bafd-8ff89d4059e2", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1043,15 +1063,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2883'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:15:09 GMT
+ - Wed, 20 May 2026 09:21:44 GMT
Pragma:
- no-cache
RequestId:
- - 3d1bb147-177c-417f-b636-a406fb9d3667
+ - 2287d2ed-0da8-4a37-98a6-0359c28b54f0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1077,9 +1097,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/86a7832d-1baa-4ad4-a1b4-5313dc823f31/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -1095,11 +1115,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:15:11 GMT
+ - Wed, 20 May 2026 09:21:46 GMT
Pragma:
- no-cache
RequestId:
- - 379247c0-707e-4cb2-b28e-78d820b72abb
+ - 8235b4be-1c3e-40d7-b146-59572c5dd515
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1125,9 +1145,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/86a7832d-1baa-4ad4-a1b4-5313dc823f31/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -1143,11 +1163,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:15:11 GMT
+ - Wed, 20 May 2026 09:21:47 GMT
Pragma:
- no-cache
RequestId:
- - 6c6275dc-548c-4759-93df-d50d625d7be2
+ - 170f712a-0891-4da0-b1d4-d77d5d081918
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1171,17 +1191,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/86a7832d-1baa-4ad4-a1b4-5313dc823f31/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/folders
response:
body:
- string: '{"id": "5eba2120-30b0-461d-94de-a9a80ec43e93", "displayName": "fabcli000003",
- "workspaceId": "86a7832d-1baa-4ad4-a1b4-5313dc823f31"}'
+ string: '{"id": "6d420ad2-6618-410a-9d9d-7ca4dd3aad28", "displayName": "fabcli000003",
+ "workspaceId": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -1190,17 +1210,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '132'
+ - '130'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:15:12 GMT
+ - Wed, 20 May 2026 09:21:47 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/86a7832d-1baa-4ad4-a1b4-5313dc823f31/folders/5eba2120-30b0-461d-94de-a9a80ec43e93
+ - https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/folders/6d420ad2-6618-410a-9d9d-7ca4dd3aad28
Pragma:
- no-cache
RequestId:
- - 19c8fe02-936b-4559-8b94-3480e7172ff9
+ - d8927378-a39e-42b8-9261-0f7ff4706ca2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1226,14 +1246,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d1df1cf9-4071-451f-b495-9990506dc8ec/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/items
response:
body:
- string: '{"value": [{"id": "58ed4d14-805b-4dc7-98f9-e55428c3e5f0", "type": "DataPipeline",
- "displayName": "fabcli000004", "workspaceId":
- "d1df1cf9-4071-451f-b495-9990506dc8ec", "folderId": "464163de-4664-4347-8124-4b18c93a5f6e"}]}'
+ string: '{"value": [{"id": "ed4a761f-99a3-4751-bcc2-e2251febc610", "type": "DataPipeline",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2",
+ "folderId": "8d913a12-565d-41e5-aa9b-1a0a42bcb001"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1242,15 +1262,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '214'
+ - '201'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:15:13 GMT
+ - Wed, 20 May 2026 09:21:48 GMT
Pragma:
- no-cache
RequestId:
- - cb6e73db-d0f1-4e14-b694-21f59968ad5f
+ - 0ee0dd77-52b3-4409-bc8d-9e9a7dca2a52
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1276,13 +1296,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d1df1cf9-4071-451f-b495-9990506dc8ec/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "464163de-4664-4347-8124-4b18c93a5f6e", "displayName":
- "fabcli000003", "workspaceId": "d1df1cf9-4071-451f-b495-9990506dc8ec"}]}'
+ string: '{"value": [{"id": "8d913a12-565d-41e5-aa9b-1a0a42bcb001", "displayName":
+ "fabcli000003", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1295,11 +1315,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:15:14 GMT
+ - Wed, 20 May 2026 09:21:50 GMT
Pragma:
- no-cache
RequestId:
- - e0586982-f261-4ece-a0fb-290216516c35
+ - 61d27c06-6ed6-42fd-8a4d-3aa6ab7b4ca8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1325,13 +1345,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d1df1cf9-4071-451f-b495-9990506dc8ec/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "464163de-4664-4347-8124-4b18c93a5f6e", "displayName":
- "fabcli000003", "workspaceId": "d1df1cf9-4071-451f-b495-9990506dc8ec"}]}'
+ string: '{"value": [{"id": "8d913a12-565d-41e5-aa9b-1a0a42bcb001", "displayName":
+ "fabcli000003", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1344,11 +1364,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:15:15 GMT
+ - Wed, 20 May 2026 09:21:50 GMT
Pragma:
- no-cache
RequestId:
- - 32fa2616-64b8-4454-ab9f-9e533eb0ea4f
+ - 8a391b68-23f5-4333-8195-d8f804b66695
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1374,14 +1394,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d1df1cf9-4071-451f-b495-9990506dc8ec/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/items
response:
body:
- string: '{"value": [{"id": "58ed4d14-805b-4dc7-98f9-e55428c3e5f0", "type": "DataPipeline",
- "displayName": "fabcli000004", "workspaceId":
- "d1df1cf9-4071-451f-b495-9990506dc8ec", "folderId": "464163de-4664-4347-8124-4b18c93a5f6e"}]}'
+ string: '{"value": [{"id": "ed4a761f-99a3-4751-bcc2-e2251febc610", "type": "DataPipeline",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2",
+ "folderId": "8d913a12-565d-41e5-aa9b-1a0a42bcb001"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1390,15 +1410,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '214'
+ - '201'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:15:16 GMT
+ - Wed, 20 May 2026 09:21:51 GMT
Pragma:
- no-cache
RequestId:
- - 580249de-f163-438a-97fb-9f58bcaaac74
+ - accd6c89-539d-4a07-8b82-768086ce62a7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1424,13 +1444,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d1df1cf9-4071-451f-b495-9990506dc8ec/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "464163de-4664-4347-8124-4b18c93a5f6e", "displayName":
- "fabcli000003", "workspaceId": "d1df1cf9-4071-451f-b495-9990506dc8ec"}]}'
+ string: '{"value": [{"id": "8d913a12-565d-41e5-aa9b-1a0a42bcb001", "displayName":
+ "fabcli000003", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1443,11 +1463,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:15:16 GMT
+ - Wed, 20 May 2026 09:21:52 GMT
Pragma:
- no-cache
RequestId:
- - 5d3af147-9e21-48ce-a5c5-3bc8931bb8db
+ - 42d69a24-278f-4a11-a7a4-c609e9d2af71
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1473,13 +1493,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d1df1cf9-4071-451f-b495-9990506dc8ec/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "464163de-4664-4347-8124-4b18c93a5f6e", "displayName":
- "fabcli000003", "workspaceId": "d1df1cf9-4071-451f-b495-9990506dc8ec"}]}'
+ string: '{"value": [{"id": "8d913a12-565d-41e5-aa9b-1a0a42bcb001", "displayName":
+ "fabcli000003", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1492,11 +1512,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:15:16 GMT
+ - Wed, 20 May 2026 09:21:52 GMT
Pragma:
- no-cache
RequestId:
- - 284579b9-08e3-4834-8afd-10fef3894f56
+ - ae997c32-132d-4fa9-a09e-c6970e499a49
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1522,16 +1542,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d1df1cf9-4071-451f-b495-9990506dc8ec", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "700bae06-c673-4d92-bafd-8ff89d4059e2", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1540,15 +1563,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2883'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:15:18 GMT
+ - Wed, 20 May 2026 09:21:53 GMT
Pragma:
- no-cache
RequestId:
- - 528909e9-c4af-4146-8c74-b05f528538bb
+ - a283c437-1fdd-465b-8e59-266b02ff2ba4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1574,53 +1597,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/86a7832d-1baa-4ad4-a1b4-5313dc823f31/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/folders?recursive=True
response:
body:
- string: '{"requestId": "d0133f3c-b6f8-4631-a131-63ffba6959ce", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 8:15:56 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 08:15:18 GMT
- RequestId:
- - d0133f3c-b6f8-4631-a131-63ffba6959ce
- Retry-After:
- - '37'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/86a7832d-1baa-4ad4-a1b4-5313dc823f31/folders?recursive=True
- response:
- body:
- string: '{"value": [{"id": "5eba2120-30b0-461d-94de-a9a80ec43e93", "displayName":
- "fabcli000003", "workspaceId": "86a7832d-1baa-4ad4-a1b4-5313dc823f31"}]}'
+ string: '{"value": [{"id": "6d420ad2-6618-410a-9d9d-7ca4dd3aad28", "displayName":
+ "fabcli000003", "workspaceId": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1629,15 +1612,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '141'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:15:58 GMT
+ - Wed, 20 May 2026 09:21:54 GMT
Pragma:
- no-cache
RequestId:
- - 738ee5e2-66ca-4e4e-b13f-21e3d87c4ad5
+ - 669bb874-fbbd-46ba-b03b-dc8684d8a413
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1663,9 +1646,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/86a7832d-1baa-4ad4-a1b4-5313dc823f31/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/items
response:
body:
string: '{"value": []}'
@@ -1681,11 +1664,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:15:59 GMT
+ - Wed, 20 May 2026 09:21:55 GMT
Pragma:
- no-cache
RequestId:
- - 6c239580-5f23-42ac-a5a5-c88f621b51b3
+ - 713bf944-55ee-484a-8714-3ec7a5ebca46
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1711,9 +1694,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/86a7832d-1baa-4ad4-a1b4-5313dc823f31/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/items
response:
body:
string: '{"value": []}'
@@ -1729,11 +1712,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:16:00 GMT
+ - Wed, 20 May 2026 09:21:55 GMT
Pragma:
- no-cache
RequestId:
- - 4beab00d-395b-4b4c-a2ed-d9b1720851ec
+ - de195ce0-b64f-497f-b76f-f58ccfd425fd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1759,9 +1742,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/86a7832d-1baa-4ad4-a1b4-5313dc823f31/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/items
response:
body:
string: '{"value": []}'
@@ -1777,11 +1760,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:16:01 GMT
+ - Wed, 20 May 2026 09:21:56 GMT
Pragma:
- no-cache
RequestId:
- - 2265c51b-0c5f-4b41-8154-025680d7ef00
+ - 88c54ab7-9951-4993-88d4-bb4f20d420c9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1807,14 +1790,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d1df1cf9-4071-451f-b495-9990506dc8ec/items/58ed4d14-805b-4dc7-98f9-e55428c3e5f0
+ uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/items/ed4a761f-99a3-4751-bcc2-e2251febc610
response:
body:
- string: '{"id": "58ed4d14-805b-4dc7-98f9-e55428c3e5f0", "type": "DataPipeline",
- "displayName": "fabcli000004", "workspaceId":
- "d1df1cf9-4071-451f-b495-9990506dc8ec", "folderId": "464163de-4664-4347-8124-4b18c93a5f6e"}'
+ string: '{"id": "ed4a761f-99a3-4751-bcc2-e2251febc610", "type": "DataPipeline",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2",
+ "folderId": "8d913a12-565d-41e5-aa9b-1a0a42bcb001"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1823,17 +1806,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '203'
+ - '190'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:16:01 GMT
+ - Wed, 20 May 2026 09:21:57 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - e3fd5ce9-3400-40f4-bf8e-c36152778324
+ - bf1e1254-684f-4513-b3b0-b55707c79da5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1861,14 +1844,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/d1df1cf9-4071-451f-b495-9990506dc8ec/items/58ed4d14-805b-4dc7-98f9-e55428c3e5f0/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/items/ed4a761f-99a3-4751-bcc2-e2251febc610/getDefinition
response:
body:
string: '{"definition": {"parts": [{"path": "pipeline-content.json", "payload":
"ewogICJwcm9wZXJ0aWVzIjogewogICAgImFjdGl2aXRpZXMiOiBbXQogIH0KfQ==", "payloadType":
- "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
+ "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
"payloadType": "InlineBase64"}]}}'
headers:
Access-Control-Expose-Headers:
@@ -1878,15 +1861,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '456'
+ - '440'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:16:03 GMT
+ - Wed, 20 May 2026 09:21:58 GMT
Pragma:
- no-cache
RequestId:
- - 37bd3a46-4d3a-4f28-8f0d-baede00bd4aa
+ - 966dd047-655d-4156-bf73-16d875d69f84
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1901,11 +1884,10 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "DataPipeline", "displayName":
- "fabcli000004", "definition": {"parts": [{"path": "pipeline-content.json", "payload":
- "ewogICJwcm9wZXJ0aWVzIjogewogICAgImFjdGl2aXRpZXMiOiBbXQogIH0KfQ==", "payloadType":
- "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
- "payloadType": "InlineBase64"}]}, "folderId": "5eba2120-30b0-461d-94de-a9a80ec43e93"}'
+ body: '{"type": "DataPipeline", "displayName": "fabcli000004", "definition": {"parts":
+ [{"path": "pipeline-content.json", "payload": "ewogICJwcm9wZXJ0aWVzIjogewogICAgImFjdGl2aXRpZXMiOiBbXQogIH0KfQ==",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
+ "payloadType": "InlineBase64"}]}, "folderId": "6d420ad2-6618-410a-9d9d-7ca4dd3aad28"}'
headers:
Accept:
- '*/*'
@@ -1914,18 +1896,18 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '845'
+ - '760'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/86a7832d-1baa-4ad4-a1b4-5313dc823f31/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/items
response:
body:
- string: '{"id": "3cd19cee-8bb0-4093-b573-ed8395d5a2b1", "type": "DataPipeline",
- "displayName": "fabcli000004", "workspaceId":
- "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "folderId": "5eba2120-30b0-461d-94de-a9a80ec43e93"}'
+ string: '{"id": "fa24e991-299f-4695-904b-d467c00d5597", "type": "DataPipeline",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a",
+ "folderId": "6d420ad2-6618-410a-9d9d-7ca4dd3aad28"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1934,17 +1916,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '199'
+ - '187'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:16:10 GMT
+ - Wed, 20 May 2026 09:22:05 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - bc3c7b2d-d5e1-4a70-a7a4-85911b2c4c87
+ - 829e8211-bef5-4be9-a5e5-0d9e2104511c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1970,14 +1952,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d1df1cf9-4071-451f-b495-9990506dc8ec/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/items
response:
body:
- string: '{"value": [{"id": "58ed4d14-805b-4dc7-98f9-e55428c3e5f0", "type": "DataPipeline",
- "displayName": "fabcli000004", "workspaceId":
- "d1df1cf9-4071-451f-b495-9990506dc8ec", "folderId": "464163de-4664-4347-8124-4b18c93a5f6e"}]}'
+ string: '{"value": [{"id": "ed4a761f-99a3-4751-bcc2-e2251febc610", "type": "DataPipeline",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2",
+ "folderId": "8d913a12-565d-41e5-aa9b-1a0a42bcb001"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1986,15 +1968,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '214'
+ - '201'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:16:11 GMT
+ - Wed, 20 May 2026 09:22:06 GMT
Pragma:
- no-cache
RequestId:
- - 4d04ecf1-b7fc-469b-add1-adbf884d1eb3
+ - 43438a7c-735d-495c-8504-66d390a28190
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2020,13 +2002,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d1df1cf9-4071-451f-b495-9990506dc8ec/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "464163de-4664-4347-8124-4b18c93a5f6e", "displayName":
- "fabcli000003", "workspaceId": "d1df1cf9-4071-451f-b495-9990506dc8ec"}]}'
+ string: '{"value": [{"id": "8d913a12-565d-41e5-aa9b-1a0a42bcb001", "displayName":
+ "fabcli000003", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2039,11 +2021,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:16:12 GMT
+ - Wed, 20 May 2026 09:22:06 GMT
Pragma:
- no-cache
RequestId:
- - 31d5d48f-1718-4fba-994f-58c9a7bb975b
+ - 4ee55e05-4f12-4b3c-a5dc-bb6969908d71
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2069,13 +2051,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d1df1cf9-4071-451f-b495-9990506dc8ec/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "464163de-4664-4347-8124-4b18c93a5f6e", "displayName":
- "fabcli000003", "workspaceId": "d1df1cf9-4071-451f-b495-9990506dc8ec"}]}'
+ string: '{"value": [{"id": "8d913a12-565d-41e5-aa9b-1a0a42bcb001", "displayName":
+ "fabcli000003", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2088,11 +2070,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:16:13 GMT
+ - Wed, 20 May 2026 09:22:07 GMT
Pragma:
- no-cache
RequestId:
- - 5abd0ccf-5df9-4f78-b2a1-14495ed3d989
+ - d77cd298-e0a1-4db3-900e-e222abd4de1b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2118,16 +2100,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d1df1cf9-4071-451f-b495-9990506dc8ec", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "700bae06-c673-4d92-bafd-8ff89d4059e2", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2136,15 +2121,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2883'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:16:13 GMT
+ - Wed, 20 May 2026 09:22:08 GMT
Pragma:
- no-cache
RequestId:
- - cae0f7da-b383-4925-b2f5-55ec479d1120
+ - 729ca08f-bacf-4300-9a4b-6816b7ae7a0a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2170,14 +2155,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/86a7832d-1baa-4ad4-a1b4-5313dc823f31/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/items
response:
body:
- string: '{"value": [{"id": "3cd19cee-8bb0-4093-b573-ed8395d5a2b1", "type": "DataPipeline",
- "displayName": "fabcli000004", "workspaceId":
- "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "folderId": "5eba2120-30b0-461d-94de-a9a80ec43e93"}]}'
+ string: '{"value": [{"id": "fa24e991-299f-4695-904b-d467c00d5597", "type": "DataPipeline",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a",
+ "folderId": "6d420ad2-6618-410a-9d9d-7ca4dd3aad28"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2186,15 +2171,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '211'
+ - '200'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:16:14 GMT
+ - Wed, 20 May 2026 09:22:09 GMT
Pragma:
- no-cache
RequestId:
- - 317e9b39-b919-4a28-b74c-bb5372438107
+ - 2cbbac11-ecf6-47d6-afa7-2b3a8f92edf5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2220,13 +2205,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/86a7832d-1baa-4ad4-a1b4-5313dc823f31/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5eba2120-30b0-461d-94de-a9a80ec43e93", "displayName":
- "fabcli000003", "workspaceId": "86a7832d-1baa-4ad4-a1b4-5313dc823f31"}]}'
+ string: '{"value": [{"id": "6d420ad2-6618-410a-9d9d-7ca4dd3aad28", "displayName":
+ "fabcli000003", "workspaceId": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2235,15 +2220,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '141'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:16:14 GMT
+ - Wed, 20 May 2026 09:22:10 GMT
Pragma:
- no-cache
RequestId:
- - 83b7c799-ece6-468a-a32d-16d669c399ec
+ - 24ed8447-76e3-4ca0-9103-2dfa6c8d1423
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2269,13 +2254,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/86a7832d-1baa-4ad4-a1b4-5313dc823f31/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5eba2120-30b0-461d-94de-a9a80ec43e93", "displayName":
- "fabcli000003", "workspaceId": "86a7832d-1baa-4ad4-a1b4-5313dc823f31"}]}'
+ string: '{"value": [{"id": "6d420ad2-6618-410a-9d9d-7ca4dd3aad28", "displayName":
+ "fabcli000003", "workspaceId": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2284,15 +2269,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '141'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:16:15 GMT
+ - Wed, 20 May 2026 09:22:10 GMT
Pragma:
- no-cache
RequestId:
- - 3276afef-a258-43b7-9407-1b12da2a4f94
+ - e1bdd50b-2da1-43d0-9391-1ed41c2afa17
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2318,16 +2303,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d1df1cf9-4071-451f-b495-9990506dc8ec", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "700bae06-c673-4d92-bafd-8ff89d4059e2", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2336,15 +2324,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2883'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:16:16 GMT
+ - Wed, 20 May 2026 09:22:12 GMT
Pragma:
- no-cache
RequestId:
- - b817dc91-ad18-4e02-bf30-bf96d11ae13a
+ - 76740411-510d-4e32-adbe-de3f6dcbda3f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2370,13 +2358,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/86a7832d-1baa-4ad4-a1b4-5313dc823f31/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5eba2120-30b0-461d-94de-a9a80ec43e93", "displayName":
- "fabcli000003", "workspaceId": "86a7832d-1baa-4ad4-a1b4-5313dc823f31"}]}'
+ string: '{"value": [{"id": "6d420ad2-6618-410a-9d9d-7ca4dd3aad28", "displayName":
+ "fabcli000003", "workspaceId": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2385,15 +2373,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '141'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:16:17 GMT
+ - Wed, 20 May 2026 09:22:12 GMT
Pragma:
- no-cache
RequestId:
- - 406b034c-c8d5-4083-8b12-b184fd7093c8
+ - c4eb2879-9abf-4c7a-a568-98055a58d908
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2419,14 +2407,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/86a7832d-1baa-4ad4-a1b4-5313dc823f31/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/items
response:
body:
- string: '{"value": [{"id": "3cd19cee-8bb0-4093-b573-ed8395d5a2b1", "type": "DataPipeline",
- "displayName": "fabcli000004", "workspaceId":
- "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "folderId": "5eba2120-30b0-461d-94de-a9a80ec43e93"}]}'
+ string: '{"value": [{"id": "fa24e991-299f-4695-904b-d467c00d5597", "type": "DataPipeline",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a",
+ "folderId": "6d420ad2-6618-410a-9d9d-7ca4dd3aad28"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2435,15 +2423,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '211'
+ - '200'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:16:17 GMT
+ - Wed, 20 May 2026 09:22:13 GMT
Pragma:
- no-cache
RequestId:
- - faf47687-412d-4d48-a90f-1c4d456c59e6
+ - bf088bd4-a8ad-40cf-8f4d-320de920fe24
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2469,13 +2457,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/86a7832d-1baa-4ad4-a1b4-5313dc823f31/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5eba2120-30b0-461d-94de-a9a80ec43e93", "displayName":
- "fabcli000003", "workspaceId": "86a7832d-1baa-4ad4-a1b4-5313dc823f31"}]}'
+ string: '{"value": [{"id": "6d420ad2-6618-410a-9d9d-7ca4dd3aad28", "displayName":
+ "fabcli000003", "workspaceId": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2484,15 +2472,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '141'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:16:18 GMT
+ - Wed, 20 May 2026 09:22:14 GMT
Pragma:
- no-cache
RequestId:
- - e29c80e6-f1fe-46c6-bc6e-9d1a806e2479
+ - 6fdce840-b4a4-4ede-aa60-e915ccfd5b7d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2518,13 +2506,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/86a7832d-1baa-4ad4-a1b4-5313dc823f31/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5eba2120-30b0-461d-94de-a9a80ec43e93", "displayName":
- "fabcli000003", "workspaceId": "86a7832d-1baa-4ad4-a1b4-5313dc823f31"}]}'
+ string: '{"value": [{"id": "6d420ad2-6618-410a-9d9d-7ca4dd3aad28", "displayName":
+ "fabcli000003", "workspaceId": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2533,15 +2521,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '141'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:16:19 GMT
+ - Wed, 20 May 2026 09:22:14 GMT
Pragma:
- no-cache
RequestId:
- - e17edcff-033d-47d3-9f70-9a8df3ed4e1c
+ - 7b2860a8-4f52-47f0-b6e6-5aa1b87b2f00
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2567,16 +2555,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d1df1cf9-4071-451f-b495-9990506dc8ec", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "700bae06-c673-4d92-bafd-8ff89d4059e2", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2585,15 +2576,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2883'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:16:20 GMT
+ - Wed, 20 May 2026 09:22:16 GMT
Pragma:
- no-cache
RequestId:
- - ff90a011-a42d-459f-8d03-b187a2383fb8
+ - 27e96a0f-098c-4681-abc9-95fe01385c6d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2619,13 +2610,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/86a7832d-1baa-4ad4-a1b4-5313dc823f31/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5eba2120-30b0-461d-94de-a9a80ec43e93", "displayName":
- "fabcli000003", "workspaceId": "86a7832d-1baa-4ad4-a1b4-5313dc823f31"}]}'
+ string: '{"value": [{"id": "6d420ad2-6618-410a-9d9d-7ca4dd3aad28", "displayName":
+ "fabcli000003", "workspaceId": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2634,15 +2625,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '141'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:16:21 GMT
+ - Wed, 20 May 2026 09:22:17 GMT
Pragma:
- no-cache
RequestId:
- - b83b8d01-4273-46fa-a6c7-a1fe82c17a59
+ - 5e6e8748-025d-463c-b245-413984f56e4b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2668,14 +2659,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/86a7832d-1baa-4ad4-a1b4-5313dc823f31/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/items
response:
body:
- string: '{"value": [{"id": "3cd19cee-8bb0-4093-b573-ed8395d5a2b1", "type": "DataPipeline",
- "displayName": "fabcli000004", "workspaceId":
- "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "folderId": "5eba2120-30b0-461d-94de-a9a80ec43e93"}]}'
+ string: '{"value": [{"id": "fa24e991-299f-4695-904b-d467c00d5597", "type": "DataPipeline",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a",
+ "folderId": "6d420ad2-6618-410a-9d9d-7ca4dd3aad28"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2684,15 +2675,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '211'
+ - '200'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:16:22 GMT
+ - Wed, 20 May 2026 09:22:17 GMT
Pragma:
- no-cache
RequestId:
- - ea86a0a3-8255-4279-9521-65901cd8f96b
+ - 0f036b9e-6ade-44bb-9130-47d8235732d8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2718,13 +2709,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/86a7832d-1baa-4ad4-a1b4-5313dc823f31/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5eba2120-30b0-461d-94de-a9a80ec43e93", "displayName":
- "fabcli000003", "workspaceId": "86a7832d-1baa-4ad4-a1b4-5313dc823f31"}]}'
+ string: '{"value": [{"id": "6d420ad2-6618-410a-9d9d-7ca4dd3aad28", "displayName":
+ "fabcli000003", "workspaceId": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2733,15 +2724,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '141'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:16:22 GMT
+ - Wed, 20 May 2026 09:22:18 GMT
Pragma:
- no-cache
RequestId:
- - 0f16f64f-b00e-4180-ac05-4eb0520a2aef
+ - 77231d2f-42b6-41c3-91ce-90a851adda1f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2769,9 +2760,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/86a7832d-1baa-4ad4-a1b4-5313dc823f31/items/3cd19cee-8bb0-4093-b573-ed8395d5a2b1
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/items/fa24e991-299f-4695-904b-d467c00d5597
response:
body:
string: ''
@@ -2787,11 +2778,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:16:22 GMT
+ - Wed, 20 May 2026 09:22:19 GMT
Pragma:
- no-cache
RequestId:
- - cf3168c4-5faa-4ebe-a381-6f5683b9ffa3
+ - 1ca79b20-0683-4cee-87bd-cf8b16eb1a72
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2817,16 +2808,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d1df1cf9-4071-451f-b495-9990506dc8ec", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "700bae06-c673-4d92-bafd-8ff89d4059e2", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2835,15 +2829,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2883'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:16:24 GMT
+ - Wed, 20 May 2026 09:22:19 GMT
Pragma:
- no-cache
RequestId:
- - 3403ab97-5ff7-4b1a-bbd9-622c784d1f18
+ - 40deef1f-2381-4e45-9563-fc56d8b0d4b1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2869,53 +2863,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/86a7832d-1baa-4ad4-a1b4-5313dc823f31/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/folders?recursive=True
response:
body:
- string: '{"requestId": "bed8f620-7407-454d-88b7-927722b2883c", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 8:16:59 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 08:16:25 GMT
- RequestId:
- - bed8f620-7407-454d-88b7-927722b2883c
- Retry-After:
- - '34'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/86a7832d-1baa-4ad4-a1b4-5313dc823f31/folders?recursive=True
- response:
- body:
- string: '{"value": [{"id": "5eba2120-30b0-461d-94de-a9a80ec43e93", "displayName":
- "fabcli000003", "workspaceId": "86a7832d-1baa-4ad4-a1b4-5313dc823f31"}]}'
+ string: '{"value": [{"id": "6d420ad2-6618-410a-9d9d-7ca4dd3aad28", "displayName":
+ "fabcli000003", "workspaceId": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2924,15 +2878,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '141'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:01 GMT
+ - Wed, 20 May 2026 09:22:20 GMT
Pragma:
- no-cache
RequestId:
- - 37be5f6a-f13a-4dd4-8ab3-ba1ed18e8cbb
+ - bbb88d4a-9055-4d19-832c-8dd31447c321
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2960,9 +2914,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/86a7832d-1baa-4ad4-a1b4-5313dc823f31/folders/5eba2120-30b0-461d-94de-a9a80ec43e93
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/folders/6d420ad2-6618-410a-9d9d-7ca4dd3aad28
response:
body:
string: ''
@@ -2978,11 +2932,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:17:02 GMT
+ - Wed, 20 May 2026 09:22:21 GMT
Pragma:
- no-cache
RequestId:
- - 163fabcc-6fd5-4622-8350-2e77b2363d3d
+ - 4a9cd742-d6d6-4d27-bc9e-120d79843729
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3008,16 +2962,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d1df1cf9-4071-451f-b495-9990506dc8ec", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "700bae06-c673-4d92-bafd-8ff89d4059e2", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3026,15 +2983,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2883'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:03 GMT
+ - Wed, 20 May 2026 09:22:22 GMT
Pragma:
- no-cache
RequestId:
- - 9ffcab16-2016-46e8-8d02-e55ea7e7d91b
+ - 062638aa-df81-4ca8-8e3b-f3d7011510b3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3060,13 +3017,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d1df1cf9-4071-451f-b495-9990506dc8ec/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "464163de-4664-4347-8124-4b18c93a5f6e", "displayName":
- "fabcli000003", "workspaceId": "d1df1cf9-4071-451f-b495-9990506dc8ec"}]}'
+ string: '{"value": [{"id": "8d913a12-565d-41e5-aa9b-1a0a42bcb001", "displayName":
+ "fabcli000003", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3079,11 +3036,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:03 GMT
+ - Wed, 20 May 2026 09:22:23 GMT
Pragma:
- no-cache
RequestId:
- - e20e6974-2431-4b15-a93a-b78fc4fae174
+ - 322cb9ac-4746-4628-a058-f178d607110c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3109,14 +3066,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d1df1cf9-4071-451f-b495-9990506dc8ec/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/items
response:
body:
- string: '{"value": [{"id": "58ed4d14-805b-4dc7-98f9-e55428c3e5f0", "type": "DataPipeline",
- "displayName": "fabcli000004", "workspaceId":
- "d1df1cf9-4071-451f-b495-9990506dc8ec", "folderId": "464163de-4664-4347-8124-4b18c93a5f6e"}]}'
+ string: '{"value": [{"id": "ed4a761f-99a3-4751-bcc2-e2251febc610", "type": "DataPipeline",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2",
+ "folderId": "8d913a12-565d-41e5-aa9b-1a0a42bcb001"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3125,15 +3082,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '214'
+ - '201'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:05 GMT
+ - Wed, 20 May 2026 09:22:23 GMT
Pragma:
- no-cache
RequestId:
- - 6c674953-9083-44d5-befc-ad78cca885a9
+ - 361ba42a-8691-4dbb-93ea-ab5f564c2b55
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3159,13 +3116,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d1df1cf9-4071-451f-b495-9990506dc8ec/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "464163de-4664-4347-8124-4b18c93a5f6e", "displayName":
- "fabcli000003", "workspaceId": "d1df1cf9-4071-451f-b495-9990506dc8ec"}]}'
+ string: '{"value": [{"id": "8d913a12-565d-41e5-aa9b-1a0a42bcb001", "displayName":
+ "fabcli000003", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3178,11 +3135,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:06 GMT
+ - Wed, 20 May 2026 09:22:24 GMT
Pragma:
- no-cache
RequestId:
- - 4b01a49b-076c-4063-8cee-c70556413dd9
+ - 8fdbbb0c-79c3-4ce7-be37-768269aa1461
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3210,9 +3167,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/d1df1cf9-4071-451f-b495-9990506dc8ec/items/58ed4d14-805b-4dc7-98f9-e55428c3e5f0
+ uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/items/ed4a761f-99a3-4751-bcc2-e2251febc610
response:
body:
string: ''
@@ -3228,11 +3185,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:17:06 GMT
+ - Wed, 20 May 2026 09:22:25 GMT
Pragma:
- no-cache
RequestId:
- - f6851ca5-b14c-46b5-8920-4a429353e827
+ - e4be5666-c50a-47b9-8fca-9516a0cfad3f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3258,16 +3215,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d1df1cf9-4071-451f-b495-9990506dc8ec", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "700bae06-c673-4d92-bafd-8ff89d4059e2", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3276,15 +3236,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2883'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:07 GMT
+ - Wed, 20 May 2026 09:22:26 GMT
Pragma:
- no-cache
RequestId:
- - a09a7960-29aa-4a15-9c79-aa96ba807fda
+ - 00be6144-2791-435e-b384-7cded957c047
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3310,13 +3270,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d1df1cf9-4071-451f-b495-9990506dc8ec/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "464163de-4664-4347-8124-4b18c93a5f6e", "displayName":
- "fabcli000003", "workspaceId": "d1df1cf9-4071-451f-b495-9990506dc8ec"}]}'
+ string: '{"value": [{"id": "8d913a12-565d-41e5-aa9b-1a0a42bcb001", "displayName":
+ "fabcli000003", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3329,11 +3289,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:08 GMT
+ - Wed, 20 May 2026 09:22:26 GMT
Pragma:
- no-cache
RequestId:
- - 3c83abf2-6d72-4efc-9ec9-bc63c164a179
+ - fa58f72d-682e-488f-b441-8744b67dbc6c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3361,9 +3321,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/d1df1cf9-4071-451f-b495-9990506dc8ec/folders/464163de-4664-4347-8124-4b18c93a5f6e
+ uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/folders/8d913a12-565d-41e5-aa9b-1a0a42bcb001
response:
body:
string: ''
@@ -3379,11 +3339,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:17:09 GMT
+ - Wed, 20 May 2026 09:22:26 GMT
Pragma:
- no-cache
RequestId:
- - 9fa82921-b38c-4da1-a758-4766ac8f80c7
+ - 571563a0-acda-4edc-912e-1ecc01c3a66b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3409,16 +3369,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d1df1cf9-4071-451f-b495-9990506dc8ec", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "700bae06-c673-4d92-bafd-8ff89d4059e2", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3427,15 +3390,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2883'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:10 GMT
+ - Wed, 20 May 2026 09:22:28 GMT
Pragma:
- no-cache
RequestId:
- - ff7f6c76-e7d1-4b3e-9be3-7d9e7db1cb1f
+ - 8f4dece5-c2e8-4f9f-b911-0cbc7fedf7bf
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3461,9 +3424,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d1df1cf9-4071-451f-b495-9990506dc8ec/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/items
response:
body:
string: '{"value": []}'
@@ -3479,11 +3442,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:10 GMT
+ - Wed, 20 May 2026 09:22:28 GMT
Pragma:
- no-cache
RequestId:
- - 2ae7ae16-38b8-4684-a6ef-7baf2f1dde9f
+ - 80252902-30e1-4291-ad6a-697c5dde08b0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3511,9 +3474,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/d1df1cf9-4071-451f-b495-9990506dc8ec
+ uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2
response:
body:
string: ''
@@ -3529,11 +3492,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:17:11 GMT
+ - Wed, 20 May 2026 09:22:29 GMT
Pragma:
- no-cache
RequestId:
- - 42c6d815-a14c-49a3-8226-1ede543b7139
+ - e0beead2-7f1e-4320-9dc1-5a500f6de651
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3559,15 +3522,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3576,15 +3541,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2842'
+ - '2658'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:12 GMT
+ - Wed, 20 May 2026 09:22:29 GMT
Pragma:
- no-cache
RequestId:
- - 348eb395-4458-4c06-8b96-54ed584da4d7
+ - 8ca28af9-5763-48e6-9d71-746f3367a13b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3610,9 +3575,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/86a7832d-1baa-4ad4-a1b4-5313dc823f31/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/items
response:
body:
string: '{"value": []}'
@@ -3628,11 +3593,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:13 GMT
+ - Wed, 20 May 2026 09:22:31 GMT
Pragma:
- no-cache
RequestId:
- - 4d74ca35-c0ca-4f53-ac0a-f14253790f84
+ - 87e89066-5014-489b-8602-69848b865570
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3660,9 +3625,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/86a7832d-1baa-4ad4-a1b4-5313dc823f31
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a
response:
body:
string: ''
@@ -3678,11 +3643,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:17:14 GMT
+ - Wed, 20 May 2026 09:22:31 GMT
Pragma:
- no-cache
RequestId:
- - 611fd3e8-a342-4049-b9a9-74ff7fa32a83
+ - be108678-7003-497a-86fa-977fab3d7540
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[KQLDashboard].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[KQLDashboard].yaml
index 62184e7d1..9526ea048 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[KQLDashboard].yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[KQLDashboard].yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:15 GMT
+ - Wed, 20 May 2026 09:22:31 GMT
Pragma:
- no-cache
RequestId:
- - 057b0b9b-9976-4c17-8743-c42e246f6292
+ - 9c7a67d6-c04c-4ec7-ba6b-4c11496d7f64
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,14 +62,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -77,15 +79,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:15 GMT
+ - Wed, 20 May 2026 09:22:32 GMT
Pragma:
- no-cache
RequestId:
- - a8a1b072-d405-4aa7-9e2a-21a5d409ca9a
+ - b1ed706f-0701-4265-96f5-406f6bec44aa
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -111,7 +113,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -127,15 +129,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '427'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:20 GMT
+ - Wed, 20 May 2026 09:22:38 GMT
Pragma:
- no-cache
RequestId:
- - a6c4cfe8-c0d9-4ac5-93b9-1b994b08d5ae
+ - 6eb4d7fa-e49b-4aab-a53b-9050e5b1b334
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -150,8 +152,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000001", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -160,16 +161,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "b8d8b914-dc78-478b-ad97-dc80db117062", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "11f21749-0869-409c-84ea-531f5afe92e3", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -178,17 +180,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '165'
+ - '155'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:27 GMT
+ - Wed, 20 May 2026 09:22:46 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062
+ - https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3
Pragma:
- no-cache
RequestId:
- - 836a2caa-6a05-4b3b-9be6-312506fc720d
+ - 717f8bca-9369-407a-9c0c-515b210034b0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -214,15 +216,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b8d8b914-dc78-478b-ad97-dc80db117062", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "11f21749-0869-409c-84ea-531f5afe92e3", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -231,15 +235,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2843'
+ - '2659'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:28 GMT
+ - Wed, 20 May 2026 09:22:46 GMT
Pragma:
- no-cache
RequestId:
- - 63b2c04b-870e-4aa4-be21-4f622e076028
+ - 46daa184-3c34-4475-ab72-4e8379b2ef1b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -265,15 +269,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b8d8b914-dc78-478b-ad97-dc80db117062", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "11f21749-0869-409c-84ea-531f5afe92e3", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -282,15 +288,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2843'
+ - '2659'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:28 GMT
+ - Wed, 20 May 2026 09:22:47 GMT
Pragma:
- no-cache
RequestId:
- - 54dcdd36-7d60-4de5-8315-056dd1af443c
+ - 6fb32999-e62a-4dad-ac61-d99adecc8e3b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -316,7 +322,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -332,15 +338,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '429'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:34 GMT
+ - Wed, 20 May 2026 09:22:51 GMT
Pragma:
- no-cache
RequestId:
- - 704a7897-78b7-4138-b346-f8f33bc8ab0f
+ - 6796c827-3824-45d0-84d6-8c0c0f0e3c3e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -355,8 +361,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000002", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -365,16 +370,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "82f63520-4c38-40af-a97e-a9c550d666d5", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "4f842531-9348-4d09-a84f-d4e7cb7a9829", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -383,17 +389,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '155'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:41 GMT
+ - Wed, 20 May 2026 09:23:00 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/82f63520-4c38-40af-a97e-a9c550d666d5
+ - https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829
Pragma:
- no-cache
RequestId:
- - c29eecd9-f880-476b-9fd7-b2a86a31e29a
+ - 18371326-c4ac-4f62-ae56-6d6c6f6d7a1c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -419,16 +425,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b8d8b914-dc78-478b-ad97-dc80db117062", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "82f63520-4c38-40af-a97e-a9c550d666d5", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "11f21749-0869-409c-84ea-531f5afe92e3", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4f842531-9348-4d09-a84f-d4e7cb7a9829", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -437,15 +446,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:42 GMT
+ - Wed, 20 May 2026 09:23:01 GMT
Pragma:
- no-cache
RequestId:
- - 24d63f02-a4aa-4379-9b8e-749ec2f840b9
+ - 9c653df6-e4fd-47f5-9ac2-b45e07083f55
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -471,9 +480,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -489,11 +498,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:43 GMT
+ - Wed, 20 May 2026 09:23:01 GMT
Pragma:
- no-cache
RequestId:
- - 86cb0759-b128-409c-8f8a-47301f507306
+ - 412c8043-03e9-46f1-b95f-a68d6af32074
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -519,9 +528,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -537,11 +546,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:44 GMT
+ - Wed, 20 May 2026 09:23:03 GMT
Pragma:
- no-cache
RequestId:
- - 8e5f670d-64cf-4bd0-8071-29240b6a26e2
+ - 06bc9e90-c4bc-4797-af3f-229c008b8ceb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -565,17 +574,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/folders
response:
body:
- string: '{"id": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0", "displayName": "fabcli000003",
- "workspaceId": "b8d8b914-dc78-478b-ad97-dc80db117062"}'
+ string: '{"id": "e1e51593-ca57-4875-80d7-5b12e7ef2644", "displayName": "fabcli000003",
+ "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -584,17 +593,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '132'
+ - '134'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:45 GMT
+ - Wed, 20 May 2026 09:23:03 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062/folders/b9b12f64-d37b-4273-b0f7-1cc083db5ee0
+ - https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/folders/e1e51593-ca57-4875-80d7-5b12e7ef2644
Pragma:
- no-cache
RequestId:
- - 09db2ad6-7201-4515-8bf7-6e7de10fc77e
+ - 7acd989c-fba3-44b7-b790-d0a3509cf560
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -620,16 +629,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b8d8b914-dc78-478b-ad97-dc80db117062", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "82f63520-4c38-40af-a97e-a9c550d666d5", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "11f21749-0869-409c-84ea-531f5afe92e3", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4f842531-9348-4d09-a84f-d4e7cb7a9829", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -638,15 +650,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:45 GMT
+ - Wed, 20 May 2026 09:23:04 GMT
Pragma:
- no-cache
RequestId:
- - 53819fa2-0346-4363-836f-9a489eadcaa3
+ - b1b026d3-7ff8-43be-87a6-ef75669ddb1c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -672,13 +684,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0", "displayName":
- "fabcli000003", "workspaceId": "b8d8b914-dc78-478b-ad97-dc80db117062"}]}'
+ string: '{"value": [{"id": "e1e51593-ca57-4875-80d7-5b12e7ef2644", "displayName":
+ "fabcli000003", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -687,15 +699,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:46 GMT
+ - Wed, 20 May 2026 09:23:05 GMT
Pragma:
- no-cache
RequestId:
- - a6d75c96-775d-4d40-8f99-d5f9ca72643f
+ - 577b96d8-8443-4c15-b30b-4b6b800d8486
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -721,9 +733,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/items
response:
body:
string: '{"value": []}'
@@ -739,11 +751,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:47 GMT
+ - Wed, 20 May 2026 09:23:06 GMT
Pragma:
- no-cache
RequestId:
- - bb98cdd3-11e8-4517-8ba6-3a08f9858fb7
+ - 3363723c-0f20-4efc-82ce-24e6f2bde2cb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -769,9 +781,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/items
response:
body:
string: '{"value": []}'
@@ -787,11 +799,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:48 GMT
+ - Wed, 20 May 2026 09:23:06 GMT
Pragma:
- no-cache
RequestId:
- - a8bf9b13-db29-4d60-a5ec-67aa54b48df8
+ - 760997bc-df91-4e2c-a4e4-98a3cde9e121
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -806,8 +818,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000004", "type":
- "KQLDashboard", "folderId": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0"}'
+ body: '{"displayName": "fabcli000004", "type": "KQLDashboard", "folderId": "e1e51593-ca57-4875-80d7-5b12e7ef2644"}'
headers:
Accept:
- '*/*'
@@ -816,18 +827,18 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '144'
+ - '111'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062/kqlDashboards
+ uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/kqlDashboards
response:
body:
- string: '{"id": "d97f6b0d-db51-42c0-8a88-4e39d275e06f", "type": "KQLDashboard",
- "displayName": "fabcli000004", "workspaceId":
- "b8d8b914-dc78-478b-ad97-dc80db117062", "folderId": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0"}'
+ string: '{"id": "49987fbb-d079-4f50-93cc-dd9260c34850", "type": "KQLDashboard",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3",
+ "folderId": "e1e51593-ca57-4875-80d7-5b12e7ef2644"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -836,17 +847,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '202'
+ - '193'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:50 GMT
+ - Wed, 20 May 2026 09:23:10 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 8294c98d-07cb-4d12-a6df-5d2657da45c8
+ - 3cdf1e49-d353-40eb-be2b-e04c4fd6559d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -872,16 +883,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b8d8b914-dc78-478b-ad97-dc80db117062", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "82f63520-4c38-40af-a97e-a9c550d666d5", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "11f21749-0869-409c-84ea-531f5afe92e3", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4f842531-9348-4d09-a84f-d4e7cb7a9829", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -890,15 +904,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:50 GMT
+ - Wed, 20 May 2026 09:23:11 GMT
Pragma:
- no-cache
RequestId:
- - cb136af0-f95f-4215-ae3e-a27b2f9f511f
+ - 662ef676-68dd-467c-94b0-a109eaaef77b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -924,13 +938,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0", "displayName":
- "fabcli000003", "workspaceId": "b8d8b914-dc78-478b-ad97-dc80db117062"}]}'
+ string: '{"value": [{"id": "e1e51593-ca57-4875-80d7-5b12e7ef2644", "displayName":
+ "fabcli000003", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -939,15 +953,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:52 GMT
+ - Wed, 20 May 2026 09:23:11 GMT
Pragma:
- no-cache
RequestId:
- - d89bb4b9-03f6-4a44-8ca4-b1d04fa984f5
+ - 25693a15-ab39-4080-af2a-706417b8fa8c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -973,16 +987,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b8d8b914-dc78-478b-ad97-dc80db117062", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "82f63520-4c38-40af-a97e-a9c550d666d5", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "11f21749-0869-409c-84ea-531f5afe92e3", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4f842531-9348-4d09-a84f-d4e7cb7a9829", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -991,15 +1008,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:52 GMT
+ - Wed, 20 May 2026 09:23:12 GMT
Pragma:
- no-cache
RequestId:
- - 15216104-a7f9-4b9a-9c4e-9b616add9c78
+ - ab34d407-5eaf-43fe-bd31-a4990ac70c8a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1025,16 +1042,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b8d8b914-dc78-478b-ad97-dc80db117062", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "82f63520-4c38-40af-a97e-a9c550d666d5", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "11f21749-0869-409c-84ea-531f5afe92e3", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4f842531-9348-4d09-a84f-d4e7cb7a9829", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1043,15 +1063,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:53 GMT
+ - Wed, 20 May 2026 09:23:13 GMT
Pragma:
- no-cache
RequestId:
- - 512896cc-6555-4a87-a5a1-f264080f5db5
+ - 8a7ba27c-2324-4fba-b198-1135b0505c17
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1077,9 +1097,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/82f63520-4c38-40af-a97e-a9c550d666d5/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -1095,11 +1115,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:55 GMT
+ - Wed, 20 May 2026 09:23:14 GMT
Pragma:
- no-cache
RequestId:
- - 496a4bdb-b5f0-488e-9313-5eaf8c365b51
+ - d07e75ba-a87d-4c70-8054-ee69a373938f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1125,9 +1145,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/82f63520-4c38-40af-a97e-a9c550d666d5/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -1143,11 +1163,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:55 GMT
+ - Wed, 20 May 2026 09:23:15 GMT
Pragma:
- no-cache
RequestId:
- - 8a7d5877-073d-44a5-8315-6dba0c8d45d6
+ - 9aa345dc-35cc-4e21-9d16-555508a10672
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1171,17 +1191,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/82f63520-4c38-40af-a97e-a9c550d666d5/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/folders
response:
body:
- string: '{"id": "3c11c78a-9cd8-48bc-8cfe-2909668e2067", "displayName": "fabcli000003",
- "workspaceId": "82f63520-4c38-40af-a97e-a9c550d666d5"}'
+ string: '{"id": "7e697fa0-38e8-4eba-8858-fca4c8111ca5", "displayName": "fabcli000003",
+ "workspaceId": "4f842531-9348-4d09-a84f-d4e7cb7a9829"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -1190,17 +1210,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '132'
+ - '133'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:55 GMT
+ - Wed, 20 May 2026 09:23:15 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/82f63520-4c38-40af-a97e-a9c550d666d5/folders/3c11c78a-9cd8-48bc-8cfe-2909668e2067
+ - https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/folders/7e697fa0-38e8-4eba-8858-fca4c8111ca5
Pragma:
- no-cache
RequestId:
- - aa9c542f-2be6-44c2-9aa3-51c7801b2943
+ - 48c798d8-32c6-4afc-9139-04e2103c0af0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1226,14 +1246,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/items
response:
body:
- string: '{"value": [{"id": "d97f6b0d-db51-42c0-8a88-4e39d275e06f", "type": "KQLDashboard",
- "displayName": "fabcli000004", "workspaceId":
- "b8d8b914-dc78-478b-ad97-dc80db117062", "folderId": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0"}]}'
+ string: '{"value": [{"id": "49987fbb-d079-4f50-93cc-dd9260c34850", "type": "KQLDashboard",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3",
+ "folderId": "e1e51593-ca57-4875-80d7-5b12e7ef2644"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1242,15 +1262,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '213'
+ - '204'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:17:56 GMT
+ - Wed, 20 May 2026 09:23:16 GMT
Pragma:
- no-cache
RequestId:
- - 825a1ca0-c4f5-4bab-995a-4577ae963f4c
+ - 76975a63-c920-4073-9ad3-cb7d69487e26
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1276,53 +1296,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/folders?recursive=True
response:
body:
- string: '{"requestId": "2f2d9502-e189-44af-8052-1d7544199a21", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 8:18:02 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 08:17:57 GMT
- RequestId:
- - 2f2d9502-e189-44af-8052-1d7544199a21
- Retry-After:
- - '4'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062/folders?recursive=True
- response:
- body:
- string: '{"value": [{"id": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0", "displayName":
- "fabcli000003", "workspaceId": "b8d8b914-dc78-478b-ad97-dc80db117062"}]}'
+ string: '{"value": [{"id": "e1e51593-ca57-4875-80d7-5b12e7ef2644", "displayName":
+ "fabcli000003", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1331,15 +1311,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:18:03 GMT
+ - Wed, 20 May 2026 09:23:17 GMT
Pragma:
- no-cache
RequestId:
- - 4518c24f-fb74-48bf-9e99-2ae2f1a79a19
+ - 9616b635-ffc7-4d29-8ffb-b003a6d12bc2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1365,13 +1345,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0", "displayName":
- "fabcli000003", "workspaceId": "b8d8b914-dc78-478b-ad97-dc80db117062"}]}'
+ string: '{"value": [{"id": "e1e51593-ca57-4875-80d7-5b12e7ef2644", "displayName":
+ "fabcli000003", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1380,15 +1360,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:18:03 GMT
+ - Wed, 20 May 2026 09:23:18 GMT
Pragma:
- no-cache
RequestId:
- - 3e756c95-c3fd-40db-bf22-de4565367ba9
+ - d81c2e78-24bb-42ec-8ab7-ae69bb17df60
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1414,14 +1394,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/items
response:
body:
- string: '{"value": [{"id": "d97f6b0d-db51-42c0-8a88-4e39d275e06f", "type": "KQLDashboard",
- "displayName": "fabcli000004", "workspaceId":
- "b8d8b914-dc78-478b-ad97-dc80db117062", "folderId": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0"}]}'
+ string: '{"value": [{"id": "49987fbb-d079-4f50-93cc-dd9260c34850", "type": "KQLDashboard",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3",
+ "folderId": "e1e51593-ca57-4875-80d7-5b12e7ef2644"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1430,15 +1410,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '213'
+ - '204'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:18:04 GMT
+ - Wed, 20 May 2026 09:23:19 GMT
Pragma:
- no-cache
RequestId:
- - f0091949-4456-4812-b5ef-5057353c94d1
+ - d933b5aa-67bc-4f61-94ca-1c2f0dc032ea
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1464,13 +1444,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0", "displayName":
- "fabcli000003", "workspaceId": "b8d8b914-dc78-478b-ad97-dc80db117062"}]}'
+ string: '{"value": [{"id": "e1e51593-ca57-4875-80d7-5b12e7ef2644", "displayName":
+ "fabcli000003", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1479,15 +1459,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:18:04 GMT
+ - Wed, 20 May 2026 09:23:20 GMT
Pragma:
- no-cache
RequestId:
- - 2b5f09a9-51bf-4e51-9160-26a77696aaf4
+ - c7b36c74-b3a5-499b-aa04-3739bf8c9ba2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1513,13 +1493,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0", "displayName":
- "fabcli000003", "workspaceId": "b8d8b914-dc78-478b-ad97-dc80db117062"}]}'
+ string: '{"value": [{"id": "e1e51593-ca57-4875-80d7-5b12e7ef2644", "displayName":
+ "fabcli000003", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1528,15 +1508,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:18:06 GMT
+ - Wed, 20 May 2026 09:23:21 GMT
Pragma:
- no-cache
RequestId:
- - 220f3ad0-78e1-4ee1-9781-c5e4f9d282dd
+ - bfca2e79-b3f8-4d0d-a281-fea442c7e4c6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1562,16 +1542,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b8d8b914-dc78-478b-ad97-dc80db117062", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "82f63520-4c38-40af-a97e-a9c550d666d5", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "11f21749-0869-409c-84ea-531f5afe92e3", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4f842531-9348-4d09-a84f-d4e7cb7a9829", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1580,15 +1563,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:18:06 GMT
+ - Wed, 20 May 2026 09:23:21 GMT
Pragma:
- no-cache
RequestId:
- - 69e1b655-a92c-4b2d-ab49-32928c4298f7
+ - 164005be-4b7c-4170-b666-8f7ddb4152ab
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1614,13 +1597,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/82f63520-4c38-40af-a97e-a9c550d666d5/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "3c11c78a-9cd8-48bc-8cfe-2909668e2067", "displayName":
- "fabcli000003", "workspaceId": "82f63520-4c38-40af-a97e-a9c550d666d5"}]}'
+ string: '{"value": [{"id": "7e697fa0-38e8-4eba-8858-fca4c8111ca5", "displayName":
+ "fabcli000003", "workspaceId": "4f842531-9348-4d09-a84f-d4e7cb7a9829"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1629,15 +1612,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:18:08 GMT
+ - Wed, 20 May 2026 09:23:22 GMT
Pragma:
- no-cache
RequestId:
- - a77b9f78-a496-4fc4-bbf2-acd2b98bfb9e
+ - 7f615b67-8067-4af7-9edb-3f7211823d7c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1663,9 +1646,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/82f63520-4c38-40af-a97e-a9c550d666d5/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/items
response:
body:
string: '{"value": []}'
@@ -1681,11 +1664,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:18:08 GMT
+ - Wed, 20 May 2026 09:23:23 GMT
Pragma:
- no-cache
RequestId:
- - dfb30c8b-73f9-4ee6-98cd-fc14306743fd
+ - f62a06af-33b2-4f3d-8ba7-adf8ea759b30
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1711,9 +1694,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/82f63520-4c38-40af-a97e-a9c550d666d5/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/items
response:
body:
string: '{"value": []}'
@@ -1729,11 +1712,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:18:09 GMT
+ - Wed, 20 May 2026 09:23:24 GMT
Pragma:
- no-cache
RequestId:
- - ff02e755-9fd3-4acf-979e-26f8c97b5687
+ - 6647069e-3566-47f5-a9b5-6b19890639b7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1759,9 +1742,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/82f63520-4c38-40af-a97e-a9c550d666d5/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/items
response:
body:
string: '{"value": []}'
@@ -1777,11 +1760,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:18:10 GMT
+ - Wed, 20 May 2026 09:23:24 GMT
Pragma:
- no-cache
RequestId:
- - a1e3cb13-e08d-486d-bf1a-468a3c5169fd
+ - 5d54b793-dc6f-452f-b20c-e29b148287a2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1807,14 +1790,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062/items/d97f6b0d-db51-42c0-8a88-4e39d275e06f
+ uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/items/49987fbb-d079-4f50-93cc-dd9260c34850
response:
body:
- string: '{"id": "d97f6b0d-db51-42c0-8a88-4e39d275e06f", "type": "KQLDashboard",
- "displayName": "fabcli000004", "workspaceId":
- "b8d8b914-dc78-478b-ad97-dc80db117062", "folderId": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0"}'
+ string: '{"id": "49987fbb-d079-4f50-93cc-dd9260c34850", "type": "KQLDashboard",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3",
+ "folderId": "e1e51593-ca57-4875-80d7-5b12e7ef2644"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1823,17 +1806,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '202'
+ - '193'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:18:10 GMT
+ - Wed, 20 May 2026 09:23:26 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - cc627602-ffd7-4040-b98d-c541cc5ee048
+ - 65ef6e50-df8c-449a-891d-17e0187a9ade
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1861,13 +1844,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062/items/d97f6b0d-db51-42c0-8a88-4e39d275e06f/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/items/49987fbb-d079-4f50-93cc-dd9260c34850/getDefinition
response:
body:
string: '{"definition": {"parts": [{"path": "RealTimeDashboard.json", "payload":
- "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTERhc2hib2FyZCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
+ "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTERhc2hib2FyZCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
"payloadType": "InlineBase64"}]}}'
headers:
Access-Control-Expose-Headers:
@@ -1877,15 +1860,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '434'
+ - '407'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:18:12 GMT
+ - Wed, 20 May 2026 09:23:27 GMT
Pragma:
- no-cache
RequestId:
- - 6e1b72ca-3179-45df-8071-633ac3e73048
+ - 24e55907-86f9-44f1-a5f2-559869c44719
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1900,11 +1883,10 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "KQLDashboard", "displayName":
- "fabcli000004", "definition": {"parts": [{"path": "RealTimeDashboard.json",
- "payload": "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload":
- "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTERhc2hib2FyZCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
- "payloadType": "InlineBase64"}]}, "folderId": "3c11c78a-9cd8-48bc-8cfe-2909668e2067"}'
+ body: '{"type": "KQLDashboard", "displayName": "fabcli000004", "definition": {"parts":
+ [{"path": "RealTimeDashboard.json", "payload": "e30=", "payloadType": "InlineBase64"},
+ {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTERhc2hib2FyZCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
+ "payloadType": "InlineBase64"}]}, "folderId": "7e697fa0-38e8-4eba-8858-fca4c8111ca5"}'
headers:
Accept:
- '*/*'
@@ -1913,18 +1895,18 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '786'
+ - '701'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/82f63520-4c38-40af-a97e-a9c550d666d5/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/items
response:
body:
- string: '{"id": "b4a24af6-2bf5-4ec8-8a91-9d6e3fdd16ae", "type": "KQLDashboard",
- "displayName": "fabcli000004", "workspaceId":
- "82f63520-4c38-40af-a97e-a9c550d666d5", "folderId": "3c11c78a-9cd8-48bc-8cfe-2909668e2067"}'
+ string: '{"id": "f8ae11e0-b87d-49d4-997f-e93495d56996", "type": "KQLDashboard",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "4f842531-9348-4d09-a84f-d4e7cb7a9829",
+ "folderId": "7e697fa0-38e8-4eba-8858-fca4c8111ca5"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1933,17 +1915,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '202'
+ - '192'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:18:16 GMT
+ - Wed, 20 May 2026 09:23:30 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - bae1c4dc-3ad8-4fbc-b474-1bc49e09e7c9
+ - 0d265722-3c2c-47b6-9328-a7dd3e2e3b67
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1969,14 +1951,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/items
response:
body:
- string: '{"value": [{"id": "d97f6b0d-db51-42c0-8a88-4e39d275e06f", "type": "KQLDashboard",
- "displayName": "fabcli000004", "workspaceId":
- "b8d8b914-dc78-478b-ad97-dc80db117062", "folderId": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0"}]}'
+ string: '{"value": [{"id": "49987fbb-d079-4f50-93cc-dd9260c34850", "type": "KQLDashboard",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3",
+ "folderId": "e1e51593-ca57-4875-80d7-5b12e7ef2644"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1985,15 +1967,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '213'
+ - '204'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:18:17 GMT
+ - Wed, 20 May 2026 09:23:31 GMT
Pragma:
- no-cache
RequestId:
- - 5c38cfe3-26d9-43d4-a63a-d5099df4a518
+ - 88526337-5db4-469f-aad4-15a8578f2f5c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2019,13 +2001,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0", "displayName":
- "fabcli000003", "workspaceId": "b8d8b914-dc78-478b-ad97-dc80db117062"}]}'
+ string: '{"value": [{"id": "e1e51593-ca57-4875-80d7-5b12e7ef2644", "displayName":
+ "fabcli000003", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2034,15 +2016,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:18:18 GMT
+ - Wed, 20 May 2026 09:23:32 GMT
Pragma:
- no-cache
RequestId:
- - 6b0f14d1-4eb9-4820-907f-78b8b5e45672
+ - 52edf2d4-3191-4979-b290-af04309ba405
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2068,13 +2050,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0", "displayName":
- "fabcli000003", "workspaceId": "b8d8b914-dc78-478b-ad97-dc80db117062"}]}'
+ string: '{"value": [{"id": "e1e51593-ca57-4875-80d7-5b12e7ef2644", "displayName":
+ "fabcli000003", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2083,15 +2065,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:18:19 GMT
+ - Wed, 20 May 2026 09:23:32 GMT
Pragma:
- no-cache
RequestId:
- - 57435b87-ead9-4443-b80c-8a08a982ff77
+ - 81fb5606-eb0c-4b88-b7e2-e6d83f59b9dc
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2117,16 +2099,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b8d8b914-dc78-478b-ad97-dc80db117062", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "82f63520-4c38-40af-a97e-a9c550d666d5", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "11f21749-0869-409c-84ea-531f5afe92e3", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4f842531-9348-4d09-a84f-d4e7cb7a9829", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2135,15 +2120,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:18:20 GMT
+ - Wed, 20 May 2026 09:23:33 GMT
Pragma:
- no-cache
RequestId:
- - 5134f61b-aa1b-41d9-8bdf-15d0e4e6caea
+ - 459ab48c-b453-4c1b-b5c0-4abbce3afa72
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2169,14 +2154,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/82f63520-4c38-40af-a97e-a9c550d666d5/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/items
response:
body:
- string: '{"value": [{"id": "b4a24af6-2bf5-4ec8-8a91-9d6e3fdd16ae", "type": "KQLDashboard",
- "displayName": "fabcli000004", "workspaceId":
- "82f63520-4c38-40af-a97e-a9c550d666d5", "folderId": "3c11c78a-9cd8-48bc-8cfe-2909668e2067"}]}'
+ string: '{"value": [{"id": "f8ae11e0-b87d-49d4-997f-e93495d56996", "type": "KQLDashboard",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "4f842531-9348-4d09-a84f-d4e7cb7a9829",
+ "folderId": "7e697fa0-38e8-4eba-8858-fca4c8111ca5"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2185,15 +2170,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '215'
+ - '204'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:18:20 GMT
+ - Wed, 20 May 2026 09:23:34 GMT
Pragma:
- no-cache
RequestId:
- - 4fab3639-1079-4b45-a9bd-bd64462d8506
+ - f9b687ef-16dc-4963-84b0-e3f71bf2fd7a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2219,13 +2204,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/82f63520-4c38-40af-a97e-a9c550d666d5/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "3c11c78a-9cd8-48bc-8cfe-2909668e2067", "displayName":
- "fabcli000003", "workspaceId": "82f63520-4c38-40af-a97e-a9c550d666d5"}]}'
+ string: '{"value": [{"id": "7e697fa0-38e8-4eba-8858-fca4c8111ca5", "displayName":
+ "fabcli000003", "workspaceId": "4f842531-9348-4d09-a84f-d4e7cb7a9829"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2234,15 +2219,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:18:21 GMT
+ - Wed, 20 May 2026 09:23:34 GMT
Pragma:
- no-cache
RequestId:
- - ff389cf1-56c5-43b3-aecd-0258b93d8ab5
+ - dc688943-a0cb-49d0-b24c-2e2e81a6a591
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2268,13 +2253,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/82f63520-4c38-40af-a97e-a9c550d666d5/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "3c11c78a-9cd8-48bc-8cfe-2909668e2067", "displayName":
- "fabcli000003", "workspaceId": "82f63520-4c38-40af-a97e-a9c550d666d5"}]}'
+ string: '{"value": [{"id": "7e697fa0-38e8-4eba-8858-fca4c8111ca5", "displayName":
+ "fabcli000003", "workspaceId": "4f842531-9348-4d09-a84f-d4e7cb7a9829"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2283,15 +2268,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:18:21 GMT
+ - Wed, 20 May 2026 09:23:35 GMT
Pragma:
- no-cache
RequestId:
- - a1f51ec5-e765-4918-8afc-a9940a9dd528
+ - 88226efb-8b4a-4ae8-a4dc-031dd664b8cd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2317,16 +2302,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b8d8b914-dc78-478b-ad97-dc80db117062", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "82f63520-4c38-40af-a97e-a9c550d666d5", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "11f21749-0869-409c-84ea-531f5afe92e3", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4f842531-9348-4d09-a84f-d4e7cb7a9829", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2335,15 +2323,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:18:23 GMT
+ - Wed, 20 May 2026 09:23:35 GMT
Pragma:
- no-cache
RequestId:
- - 1a22d6ac-53d8-49d6-8f8a-41a3caec0354
+ - 3cd8bfbe-87e6-43ef-acf8-d91df47d39b2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2369,13 +2357,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/82f63520-4c38-40af-a97e-a9c550d666d5/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "3c11c78a-9cd8-48bc-8cfe-2909668e2067", "displayName":
- "fabcli000003", "workspaceId": "82f63520-4c38-40af-a97e-a9c550d666d5"}]}'
+ string: '{"value": [{"id": "7e697fa0-38e8-4eba-8858-fca4c8111ca5", "displayName":
+ "fabcli000003", "workspaceId": "4f842531-9348-4d09-a84f-d4e7cb7a9829"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2384,15 +2372,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:18:23 GMT
+ - Wed, 20 May 2026 09:23:36 GMT
Pragma:
- no-cache
RequestId:
- - 569e8c2a-cd73-4bb0-af88-fae105773594
+ - 17950979-e4e3-4506-8f01-93fbde38c9ec
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2418,14 +2406,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/82f63520-4c38-40af-a97e-a9c550d666d5/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/items
response:
body:
- string: '{"value": [{"id": "b4a24af6-2bf5-4ec8-8a91-9d6e3fdd16ae", "type": "KQLDashboard",
- "displayName": "fabcli000004", "workspaceId":
- "82f63520-4c38-40af-a97e-a9c550d666d5", "folderId": "3c11c78a-9cd8-48bc-8cfe-2909668e2067"}]}'
+ string: '{"value": [{"id": "f8ae11e0-b87d-49d4-997f-e93495d56996", "type": "KQLDashboard",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "4f842531-9348-4d09-a84f-d4e7cb7a9829",
+ "folderId": "7e697fa0-38e8-4eba-8858-fca4c8111ca5"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2434,15 +2422,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '215'
+ - '204'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:18:24 GMT
+ - Wed, 20 May 2026 09:23:37 GMT
Pragma:
- no-cache
RequestId:
- - f82f4416-7e34-46c1-893e-e6d7cb596a94
+ - b3b063d2-0a90-4b92-8269-6b199e57979b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2468,53 +2456,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/82f63520-4c38-40af-a97e-a9c550d666d5/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/folders?recursive=True
response:
body:
- string: '{"requestId": "b135c701-f68e-4b5c-b18d-61b8a3f6067a", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 8:19:03 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 08:18:25 GMT
- RequestId:
- - b135c701-f68e-4b5c-b18d-61b8a3f6067a
- Retry-After:
- - '38'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/82f63520-4c38-40af-a97e-a9c550d666d5/folders?recursive=True
- response:
- body:
- string: '{"value": [{"id": "3c11c78a-9cd8-48bc-8cfe-2909668e2067", "displayName":
- "fabcli000003", "workspaceId": "82f63520-4c38-40af-a97e-a9c550d666d5"}]}'
+ string: '{"value": [{"id": "7e697fa0-38e8-4eba-8858-fca4c8111ca5", "displayName":
+ "fabcli000003", "workspaceId": "4f842531-9348-4d09-a84f-d4e7cb7a9829"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2523,15 +2471,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:19:06 GMT
+ - Wed, 20 May 2026 09:23:37 GMT
Pragma:
- no-cache
RequestId:
- - 0cd047e5-6d15-4916-9873-6aa9117c78ae
+ - 621af4da-f77a-41bd-a41e-8194cfe0d07d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2557,13 +2505,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/82f63520-4c38-40af-a97e-a9c550d666d5/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "3c11c78a-9cd8-48bc-8cfe-2909668e2067", "displayName":
- "fabcli000003", "workspaceId": "82f63520-4c38-40af-a97e-a9c550d666d5"}]}'
+ string: '{"value": [{"id": "7e697fa0-38e8-4eba-8858-fca4c8111ca5", "displayName":
+ "fabcli000003", "workspaceId": "4f842531-9348-4d09-a84f-d4e7cb7a9829"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2572,15 +2520,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:19:07 GMT
+ - Wed, 20 May 2026 09:23:38 GMT
Pragma:
- no-cache
RequestId:
- - 368b0202-26de-487f-8a50-d7774b5a0875
+ - 21c80999-af86-45b4-b5aa-4779da9706ab
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2606,16 +2554,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b8d8b914-dc78-478b-ad97-dc80db117062", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "82f63520-4c38-40af-a97e-a9c550d666d5", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "11f21749-0869-409c-84ea-531f5afe92e3", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4f842531-9348-4d09-a84f-d4e7cb7a9829", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2624,15 +2575,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:19:08 GMT
+ - Wed, 20 May 2026 09:23:38 GMT
Pragma:
- no-cache
RequestId:
- - d66e2684-8ea6-43fe-99dd-77f86f417101
+ - 516a87cc-1428-4ad9-a487-b96fa89c3c96
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2658,13 +2609,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/82f63520-4c38-40af-a97e-a9c550d666d5/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "3c11c78a-9cd8-48bc-8cfe-2909668e2067", "displayName":
- "fabcli000003", "workspaceId": "82f63520-4c38-40af-a97e-a9c550d666d5"}]}'
+ string: '{"value": [{"id": "7e697fa0-38e8-4eba-8858-fca4c8111ca5", "displayName":
+ "fabcli000003", "workspaceId": "4f842531-9348-4d09-a84f-d4e7cb7a9829"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2673,15 +2624,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:19:08 GMT
+ - Wed, 20 May 2026 09:23:39 GMT
Pragma:
- no-cache
RequestId:
- - ed4a706d-19a4-4af6-9ef8-f54a8bc03ae4
+ - 9616b5d1-2c75-45db-8c5b-709cc48ab17b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2707,14 +2658,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/82f63520-4c38-40af-a97e-a9c550d666d5/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/items
response:
body:
- string: '{"value": [{"id": "b4a24af6-2bf5-4ec8-8a91-9d6e3fdd16ae", "type": "KQLDashboard",
- "displayName": "fabcli000004", "workspaceId":
- "82f63520-4c38-40af-a97e-a9c550d666d5", "folderId": "3c11c78a-9cd8-48bc-8cfe-2909668e2067"}]}'
+ string: '{"value": [{"id": "f8ae11e0-b87d-49d4-997f-e93495d56996", "type": "KQLDashboard",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "4f842531-9348-4d09-a84f-d4e7cb7a9829",
+ "folderId": "7e697fa0-38e8-4eba-8858-fca4c8111ca5"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2723,15 +2674,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '215'
+ - '204'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:19:09 GMT
+ - Wed, 20 May 2026 09:23:40 GMT
Pragma:
- no-cache
RequestId:
- - 964df57c-96a7-43c6-89a0-86615929c41a
+ - edce27eb-67c5-4236-bb25-af72558269c8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2757,13 +2708,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/82f63520-4c38-40af-a97e-a9c550d666d5/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "3c11c78a-9cd8-48bc-8cfe-2909668e2067", "displayName":
- "fabcli000003", "workspaceId": "82f63520-4c38-40af-a97e-a9c550d666d5"}]}'
+ string: '{"value": [{"id": "7e697fa0-38e8-4eba-8858-fca4c8111ca5", "displayName":
+ "fabcli000003", "workspaceId": "4f842531-9348-4d09-a84f-d4e7cb7a9829"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2772,15 +2723,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:19:10 GMT
+ - Wed, 20 May 2026 09:23:40 GMT
Pragma:
- no-cache
RequestId:
- - cdeb7584-98ff-4195-8926-bab5469c8324
+ - 13550119-ade0-4dff-942b-7cb8e5d7fd7f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2808,9 +2759,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/82f63520-4c38-40af-a97e-a9c550d666d5/items/b4a24af6-2bf5-4ec8-8a91-9d6e3fdd16ae
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/items/f8ae11e0-b87d-49d4-997f-e93495d56996
response:
body:
string: ''
@@ -2826,11 +2777,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:19:11 GMT
+ - Wed, 20 May 2026 09:23:41 GMT
Pragma:
- no-cache
RequestId:
- - 757dd63f-7f91-4685-96fc-1916cd857f76
+ - 3723896e-e818-47e1-b833-59eab88a73f7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2856,16 +2807,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b8d8b914-dc78-478b-ad97-dc80db117062", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "82f63520-4c38-40af-a97e-a9c550d666d5", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "11f21749-0869-409c-84ea-531f5afe92e3", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4f842531-9348-4d09-a84f-d4e7cb7a9829", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2874,15 +2828,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:19:12 GMT
+ - Wed, 20 May 2026 09:23:42 GMT
Pragma:
- no-cache
RequestId:
- - a5d227ff-a10d-4f09-bd78-c2d1dcef05e7
+ - 870b82d5-3cec-4121-8898-d446e7bbf9dc
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2908,13 +2862,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/82f63520-4c38-40af-a97e-a9c550d666d5/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "3c11c78a-9cd8-48bc-8cfe-2909668e2067", "displayName":
- "fabcli000003", "workspaceId": "82f63520-4c38-40af-a97e-a9c550d666d5"}]}'
+ string: '{"value": [{"id": "7e697fa0-38e8-4eba-8858-fca4c8111ca5", "displayName":
+ "fabcli000003", "workspaceId": "4f842531-9348-4d09-a84f-d4e7cb7a9829"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2923,15 +2877,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:19:13 GMT
+ - Wed, 20 May 2026 09:23:42 GMT
Pragma:
- no-cache
RequestId:
- - 058e5475-790d-4596-8b5f-f1504b3dc9a9
+ - 76bb6145-cb67-42d2-8807-3d6fed9fffad
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2959,9 +2913,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/82f63520-4c38-40af-a97e-a9c550d666d5/folders/3c11c78a-9cd8-48bc-8cfe-2909668e2067
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/folders/7e697fa0-38e8-4eba-8858-fca4c8111ca5
response:
body:
string: ''
@@ -2977,11 +2931,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:19:14 GMT
+ - Wed, 20 May 2026 09:23:43 GMT
Pragma:
- no-cache
RequestId:
- - 23e96b8a-14c8-4564-9696-9deaa0aa0d2b
+ - af3d666f-9341-4c8b-a94e-609e501ad6b9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3007,16 +2961,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b8d8b914-dc78-478b-ad97-dc80db117062", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "82f63520-4c38-40af-a97e-a9c550d666d5", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "11f21749-0869-409c-84ea-531f5afe92e3", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4f842531-9348-4d09-a84f-d4e7cb7a9829", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3025,15 +2982,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:19:14 GMT
+ - Wed, 20 May 2026 09:23:43 GMT
Pragma:
- no-cache
RequestId:
- - 69048cad-41f4-4d40-84fc-07f0e8d6cbb5
+ - 88e9f0ec-0451-4f53-ae82-463fd39726c6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3059,13 +3016,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0", "displayName":
- "fabcli000003", "workspaceId": "b8d8b914-dc78-478b-ad97-dc80db117062"}]}'
+ string: '{"value": [{"id": "e1e51593-ca57-4875-80d7-5b12e7ef2644", "displayName":
+ "fabcli000003", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3074,15 +3031,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:19:15 GMT
+ - Wed, 20 May 2026 09:23:43 GMT
Pragma:
- no-cache
RequestId:
- - c407d37f-596f-410e-833b-47906db70dde
+ - 9f565c34-61fe-415c-990a-f797a12acd00
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3108,14 +3065,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/items
response:
body:
- string: '{"value": [{"id": "d97f6b0d-db51-42c0-8a88-4e39d275e06f", "type": "KQLDashboard",
- "displayName": "fabcli000004", "workspaceId":
- "b8d8b914-dc78-478b-ad97-dc80db117062", "folderId": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0"}]}'
+ string: '{"value": [{"id": "49987fbb-d079-4f50-93cc-dd9260c34850", "type": "KQLDashboard",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3",
+ "folderId": "e1e51593-ca57-4875-80d7-5b12e7ef2644"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3124,15 +3081,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '213'
+ - '204'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:19:16 GMT
+ - Wed, 20 May 2026 09:23:45 GMT
Pragma:
- no-cache
RequestId:
- - 93b07d5a-3717-4a75-8b07-8b3248181327
+ - 04cfc665-4602-4524-a99d-58472c7d8fcb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3158,13 +3115,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0", "displayName":
- "fabcli000003", "workspaceId": "b8d8b914-dc78-478b-ad97-dc80db117062"}]}'
+ string: '{"value": [{"id": "e1e51593-ca57-4875-80d7-5b12e7ef2644", "displayName":
+ "fabcli000003", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3173,15 +3130,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:19:17 GMT
+ - Wed, 20 May 2026 09:23:46 GMT
Pragma:
- no-cache
RequestId:
- - 64cff1e0-afc2-48b0-b604-65d8b143d4e6
+ - 2fd92a85-ed39-4567-a877-03c1fc9a695e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3209,9 +3166,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062/items/d97f6b0d-db51-42c0-8a88-4e39d275e06f
+ uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/items/49987fbb-d079-4f50-93cc-dd9260c34850
response:
body:
string: ''
@@ -3227,11 +3184,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:19:17 GMT
+ - Wed, 20 May 2026 09:23:47 GMT
Pragma:
- no-cache
RequestId:
- - fb77b0e3-4509-44a7-9e33-a0164b5d986e
+ - f0434d4b-bb67-4f83-9cc4-da0df2f221a2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3257,16 +3214,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b8d8b914-dc78-478b-ad97-dc80db117062", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "82f63520-4c38-40af-a97e-a9c550d666d5", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "11f21749-0869-409c-84ea-531f5afe92e3", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4f842531-9348-4d09-a84f-d4e7cb7a9829", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3275,15 +3235,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:19:18 GMT
+ - Wed, 20 May 2026 09:23:48 GMT
Pragma:
- no-cache
RequestId:
- - f274ddfc-98dd-45d4-a17e-30562f3b27d4
+ - ce83c7ca-faa2-42ab-b6a5-e8eb1cbdd40a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3309,13 +3269,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0", "displayName":
- "fabcli000003", "workspaceId": "b8d8b914-dc78-478b-ad97-dc80db117062"}]}'
+ string: '{"value": [{"id": "e1e51593-ca57-4875-80d7-5b12e7ef2644", "displayName":
+ "fabcli000003", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3324,15 +3284,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:19:20 GMT
+ - Wed, 20 May 2026 09:23:48 GMT
Pragma:
- no-cache
RequestId:
- - 0f60d745-88fe-4f1b-bcde-cd58b09ab83d
+ - 14766aaf-8553-4073-b319-eb8304d61526
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3360,9 +3320,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062/folders/b9b12f64-d37b-4273-b0f7-1cc083db5ee0
+ uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/folders/e1e51593-ca57-4875-80d7-5b12e7ef2644
response:
body:
string: ''
@@ -3378,11 +3338,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:19:20 GMT
+ - Wed, 20 May 2026 09:23:48 GMT
Pragma:
- no-cache
RequestId:
- - 4b5cea96-f813-4c6a-8daf-43bd880f2df1
+ - 3cad4992-eb7b-4cd2-8e3e-c543e3e83646
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3408,16 +3368,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b8d8b914-dc78-478b-ad97-dc80db117062", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "82f63520-4c38-40af-a97e-a9c550d666d5", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "11f21749-0869-409c-84ea-531f5afe92e3", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4f842531-9348-4d09-a84f-d4e7cb7a9829", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3426,15 +3389,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:19:21 GMT
+ - Wed, 20 May 2026 09:23:50 GMT
Pragma:
- no-cache
RequestId:
- - f73e0557-f9a7-4e9b-8d97-d42004f13e4e
+ - 8baef868-659d-49f0-8410-662c36d7def3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3460,9 +3423,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/items
response:
body:
string: '{"value": []}'
@@ -3478,11 +3441,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:19:21 GMT
+ - Wed, 20 May 2026 09:23:50 GMT
Pragma:
- no-cache
RequestId:
- - 5a015bf7-082b-4275-8936-c02c5de06be1
+ - ec504a06-0bab-4d78-a57a-b7bf3288e635
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3510,9 +3473,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062
+ uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3
response:
body:
string: ''
@@ -3528,11 +3491,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:19:23 GMT
+ - Wed, 20 May 2026 09:23:51 GMT
Pragma:
- no-cache
RequestId:
- - bf6dd207-64d2-4c4b-82a7-ed4a136b4c3e
+ - 5f782525-6132-4443-b2a0-acd851440ce3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3558,15 +3521,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "82f63520-4c38-40af-a97e-a9c550d666d5", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4f842531-9348-4d09-a84f-d4e7cb7a9829", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3575,15 +3540,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2840'
+ - '2660'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:19:24 GMT
+ - Wed, 20 May 2026 09:23:52 GMT
Pragma:
- no-cache
RequestId:
- - 184d92bb-b8c8-435b-ab75-459380dd600c
+ - 8842c898-32f2-41bb-98f7-61e0a1c47a8c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3609,9 +3574,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/82f63520-4c38-40af-a97e-a9c550d666d5/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/items
response:
body:
string: '{"value": []}'
@@ -3627,11 +3592,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:19:24 GMT
+ - Wed, 20 May 2026 09:23:53 GMT
Pragma:
- no-cache
RequestId:
- - a06fff1d-c2fd-4bef-b692-25ffd04b941c
+ - 013d928f-93f9-4a5b-bab7-7e98858f104b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3659,9 +3624,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/82f63520-4c38-40af-a97e-a9c550d666d5
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829
response:
body:
string: ''
@@ -3677,11 +3642,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:19:25 GMT
+ - Wed, 20 May 2026 09:23:54 GMT
Pragma:
- no-cache
RequestId:
- - cbad9ad2-1d06-4b83-9fab-2192beaf1b78
+ - f3169d26-9e37-40a5-a2d4-5d3b4bea767a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[KQLQueryset].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[KQLQueryset].yaml
index ca468667d..18b98dab8 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[KQLQueryset].yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[KQLQueryset].yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:19:26 GMT
+ - Wed, 20 May 2026 09:23:55 GMT
Pragma:
- no-cache
RequestId:
- - 7c7b9ccd-453d-444b-9c04-907732a8559a
+ - 6ba0899e-e41f-41ef-9dea-6870697124e3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,14 +62,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -77,15 +79,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:19:27 GMT
+ - Wed, 20 May 2026 09:23:55 GMT
Pragma:
- no-cache
RequestId:
- - dcd9d914-5f3e-4521-9e71-cbabbba67740
+ - 1e5b6a56-91d7-49e9-b62f-360fec3bee45
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -111,7 +113,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -127,15 +129,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '425'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:19:32 GMT
+ - Wed, 20 May 2026 09:24:00 GMT
Pragma:
- no-cache
RequestId:
- - 5462b85b-9a52-4970-9142-b4771c2bbced
+ - 136eb465-e6b4-4ad4-981b-954613846ee0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -150,8 +152,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000001", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -160,16 +161,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "eaac88e1-2dc9-457d-9567-9d209f417c41", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "21e6701a-1169-40fc-a1c5-ed29e154283c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -178,17 +180,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '153'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:19:41 GMT
+ - Wed, 20 May 2026 09:24:09 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41
+ - https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c
Pragma:
- no-cache
RequestId:
- - 1e471717-5a2d-41f5-9d72-b236eaf8a4e0
+ - 8e66ab3a-9b3b-48ca-aade-6e33aa95d4b7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -214,15 +216,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "eaac88e1-2dc9-457d-9567-9d209f417c41", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "21e6701a-1169-40fc-a1c5-ed29e154283c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -231,15 +235,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2843'
+ - '2659'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:19:41 GMT
+ - Wed, 20 May 2026 09:24:09 GMT
Pragma:
- no-cache
RequestId:
- - 4abb917c-1682-4a63-bb50-e3f68b6dcccd
+ - 82e89745-e86b-4d11-a150-e3679d023279
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -265,15 +269,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "eaac88e1-2dc9-457d-9567-9d209f417c41", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "21e6701a-1169-40fc-a1c5-ed29e154283c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -282,15 +288,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2843'
+ - '2659'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:19:43 GMT
+ - Wed, 20 May 2026 09:24:09 GMT
Pragma:
- no-cache
RequestId:
- - 1ec61cbe-910d-45bf-bc3b-bf3057c8efde
+ - 479516f2-cfd0-41ca-8078-e3df5a03517f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -316,7 +322,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -332,15 +338,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '427'
+ - '425'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:19:48 GMT
+ - Wed, 20 May 2026 09:24:15 GMT
Pragma:
- no-cache
RequestId:
- - 3dcccd26-d283-48e8-9230-8d5b9fb1bb1a
+ - 4d7953a6-3c12-48ed-a4fe-d7b0fc44b7f1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -355,8 +361,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000002", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -365,16 +370,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -383,17 +389,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '165'
+ - '154'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:19:55 GMT
+ - Wed, 20 May 2026 09:24:23 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1
+ - https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab
Pragma:
- no-cache
RequestId:
- - b2024f1a-10cb-483e-b740-783367be7b7f
+ - 34096b97-3f52-46eb-891f-a21ffeb66f5c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -419,16 +425,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "eaac88e1-2dc9-457d-9567-9d209f417c41", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "21e6701a-1169-40fc-a1c5-ed29e154283c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -437,15 +446,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2877'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:19:56 GMT
+ - Wed, 20 May 2026 09:24:24 GMT
Pragma:
- no-cache
RequestId:
- - 846109c4-9531-48bb-a6f7-9b894b046922
+ - 5af00c40-ed82-4568-8625-929f2a39acd7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -471,9 +480,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -489,11 +498,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:19:57 GMT
+ - Wed, 20 May 2026 09:24:24 GMT
Pragma:
- no-cache
RequestId:
- - a7802370-6c92-4406-9914-e959cb9ee661
+ - b76e2d81-d957-41a7-911b-d49524ceb3f7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -519,9 +528,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -537,11 +546,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:19:58 GMT
+ - Wed, 20 May 2026 09:24:25 GMT
Pragma:
- no-cache
RequestId:
- - 725efbdc-c259-4d1f-87e9-65b6d8abaf3b
+ - 124a07ec-6ab9-4235-a53d-50fdb020e8b8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -565,17 +574,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/folders
response:
body:
- string: '{"id": "b738b885-3ed1-484f-8781-e309b5982688", "displayName": "fabcli000003",
- "workspaceId": "eaac88e1-2dc9-457d-9567-9d209f417c41"}'
+ string: '{"id": "af99e50b-58ff-4ec0-847f-f06d896a5142", "displayName": "fabcli000003",
+ "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -584,17 +593,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '133'
+ - '132'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:19:58 GMT
+ - Wed, 20 May 2026 09:24:25 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/folders/b738b885-3ed1-484f-8781-e309b5982688
+ - https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/folders/af99e50b-58ff-4ec0-847f-f06d896a5142
Pragma:
- no-cache
RequestId:
- - ee6477e4-3bed-45b1-8dea-bceff553d74d
+ - 912a0fe7-9674-4697-a8c6-007ef80fd3b2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -620,16 +629,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "eaac88e1-2dc9-457d-9567-9d209f417c41", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "21e6701a-1169-40fc-a1c5-ed29e154283c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -638,15 +650,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2877'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:20:00 GMT
+ - Wed, 20 May 2026 09:24:27 GMT
Pragma:
- no-cache
RequestId:
- - bc3c7197-ce2c-4572-bf2c-ec826f71e85c
+ - 618a39e7-5519-4cc3-a134-13421298ee70
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -672,53 +684,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/folders?recursive=True
- response:
- body:
- string: '{"requestId": "50210e92-d996-4c7f-94f8-4fcf83c60455", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 8:20:07 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 08:20:00 GMT
- RequestId:
- - 50210e92-d996-4c7f-94f8-4fcf83c60455
- Retry-After:
- - '6'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "b738b885-3ed1-484f-8781-e309b5982688", "displayName":
- "fabcli000003", "workspaceId": "eaac88e1-2dc9-457d-9567-9d209f417c41"}]}'
+ string: '{"value": [{"id": "af99e50b-58ff-4ec0-847f-f06d896a5142", "displayName":
+ "fabcli000003", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -731,11 +703,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:20:08 GMT
+ - Wed, 20 May 2026 09:24:28 GMT
Pragma:
- no-cache
RequestId:
- - b0e05229-736e-4594-9f93-e6c3416cc3d9
+ - e6057e49-9445-4fa0-b037-cbe1a2e4ebfd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -761,9 +733,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/items
response:
body:
string: '{"value": []}'
@@ -779,11 +751,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:20:09 GMT
+ - Wed, 20 May 2026 09:24:28 GMT
Pragma:
- no-cache
RequestId:
- - c5479eef-ab98-49cb-b91e-8c0524162ca1
+ - c916e29c-3ac6-474b-97a3-1f78bc83ecdf
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -809,9 +781,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/items
response:
body:
string: '{"value": []}'
@@ -827,11 +799,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:20:09 GMT
+ - Wed, 20 May 2026 09:24:29 GMT
Pragma:
- no-cache
RequestId:
- - ea43e87b-a46e-486d-b30a-a00c7932dc26
+ - 371358d2-6819-4573-8a4d-d9a1e2dedc97
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -846,8 +818,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000004", "type":
- "KQLQueryset", "folderId": "b738b885-3ed1-484f-8781-e309b5982688"}'
+ body: '{"displayName": "fabcli000004", "type": "KQLQueryset", "folderId": "af99e50b-58ff-4ec0-847f-f06d896a5142"}'
headers:
Accept:
- '*/*'
@@ -856,18 +827,18 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '143'
+ - '110'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/kqlQuerysets
+ uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/kqlQuerysets
response:
body:
- string: '{"id": "a5d2c427-7175-42c7-b9bd-1a220f2888e6", "type": "KQLQueryset",
- "displayName": "fabcli000004", "workspaceId":
- "eaac88e1-2dc9-457d-9567-9d209f417c41", "folderId": "b738b885-3ed1-484f-8781-e309b5982688"}'
+ string: '{"id": "8be1fdbf-bb4e-4563-a531-d3110bfb6580", "type": "KQLQueryset",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c",
+ "folderId": "af99e50b-58ff-4ec0-847f-f06d896a5142"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -876,17 +847,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '201'
+ - '192'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:20:12 GMT
+ - Wed, 20 May 2026 09:24:32 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - f7c208f0-bc08-4fe1-82d4-9e0adf3c9857
+ - fdfe9f01-628d-4f5e-9fe5-29d56674cd58
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -912,16 +883,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "eaac88e1-2dc9-457d-9567-9d209f417c41", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "21e6701a-1169-40fc-a1c5-ed29e154283c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -930,15 +904,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2877'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:20:13 GMT
+ - Wed, 20 May 2026 09:24:33 GMT
Pragma:
- no-cache
RequestId:
- - a0c6cd52-a4b0-4721-8938-f83355efe3ff
+ - 95df15f4-04ad-4810-b91c-1915aa442c6b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -964,13 +938,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "b738b885-3ed1-484f-8781-e309b5982688", "displayName":
- "fabcli000003", "workspaceId": "eaac88e1-2dc9-457d-9567-9d209f417c41"}]}'
+ string: '{"value": [{"id": "af99e50b-58ff-4ec0-847f-f06d896a5142", "displayName":
+ "fabcli000003", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -983,11 +957,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:20:14 GMT
+ - Wed, 20 May 2026 09:24:34 GMT
Pragma:
- no-cache
RequestId:
- - f0f25d19-00e6-4ea8-b62a-894cf92e645e
+ - 6c4745fa-0ef9-4cd7-a9cd-59a746a63cb8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1013,16 +987,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "eaac88e1-2dc9-457d-9567-9d209f417c41", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "21e6701a-1169-40fc-a1c5-ed29e154283c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1031,15 +1008,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2877'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:20:14 GMT
+ - Wed, 20 May 2026 09:24:35 GMT
Pragma:
- no-cache
RequestId:
- - 6268bc83-305a-4337-a397-a1b6ee289a86
+ - 929e790c-8fdb-43a8-b65e-265bed5f8d7e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1065,16 +1042,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "eaac88e1-2dc9-457d-9567-9d209f417c41", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "21e6701a-1169-40fc-a1c5-ed29e154283c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1083,15 +1063,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2877'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:20:15 GMT
+ - Wed, 20 May 2026 09:24:36 GMT
Pragma:
- no-cache
RequestId:
- - 9456b32d-4b8f-4ae4-b361-795b58fb98c5
+ - 282a629c-040f-4d90-b5ac-338458c5bc56
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1117,9 +1097,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -1135,11 +1115,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:20:16 GMT
+ - Wed, 20 May 2026 09:24:37 GMT
Pragma:
- no-cache
RequestId:
- - 4ff52884-7b51-48b9-abc8-e0ba5a80e684
+ - 68b9ed4f-e3b6-402c-9b2d-8df009aa55c6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1165,9 +1145,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -1183,11 +1163,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:20:17 GMT
+ - Wed, 20 May 2026 09:24:37 GMT
Pragma:
- no-cache
RequestId:
- - 1ebe4f6f-ba1a-46f9-a86a-2144cc02e297
+ - 33fc0aff-9600-4bc7-90e9-2b332b694730
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1211,17 +1191,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/folders
response:
body:
- string: '{"id": "2e818f79-1973-4ba9-8f2e-eca4a935dfe4", "displayName": "fabcli000003",
- "workspaceId": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1"}'
+ string: '{"id": "3919afe4-de0e-4174-b1aa-1f0d5e9dce89", "displayName": "fabcli000003",
+ "workspaceId": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -1230,17 +1210,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '132'
+ - '131'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:20:18 GMT
+ - Wed, 20 May 2026 09:24:38 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/folders/2e818f79-1973-4ba9-8f2e-eca4a935dfe4
+ - https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/folders/3919afe4-de0e-4174-b1aa-1f0d5e9dce89
Pragma:
- no-cache
RequestId:
- - 6e5f74c2-42ce-4c52-b424-79427347e697
+ - 79bc0181-d547-4b25-a848-a0e282532bcb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1266,14 +1246,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/items
response:
body:
- string: '{"value": [{"id": "a5d2c427-7175-42c7-b9bd-1a220f2888e6", "type": "KQLQueryset",
- "displayName": "fabcli000004", "workspaceId":
- "eaac88e1-2dc9-457d-9567-9d209f417c41", "folderId": "b738b885-3ed1-484f-8781-e309b5982688"}]}'
+ string: '{"value": [{"id": "8be1fdbf-bb4e-4563-a531-d3110bfb6580", "type": "KQLQueryset",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c",
+ "folderId": "af99e50b-58ff-4ec0-847f-f06d896a5142"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1282,15 +1262,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '213'
+ - '203'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:20:19 GMT
+ - Wed, 20 May 2026 09:24:39 GMT
Pragma:
- no-cache
RequestId:
- - 2efb8b50-89d2-41a0-9d26-c716d14a978e
+ - f1000768-2a4e-485e-9e13-e3376a5c3701
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1316,13 +1296,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "b738b885-3ed1-484f-8781-e309b5982688", "displayName":
- "fabcli000003", "workspaceId": "eaac88e1-2dc9-457d-9567-9d209f417c41"}]}'
+ string: '{"value": [{"id": "af99e50b-58ff-4ec0-847f-f06d896a5142", "displayName":
+ "fabcli000003", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1335,11 +1315,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:20:20 GMT
+ - Wed, 20 May 2026 09:24:40 GMT
Pragma:
- no-cache
RequestId:
- - 8ce1efbd-14c8-49aa-b3b1-c3359aece61e
+ - fbd4d965-16e2-441f-bd9a-efcacd2ffd7f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1365,13 +1345,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "b738b885-3ed1-484f-8781-e309b5982688", "displayName":
- "fabcli000003", "workspaceId": "eaac88e1-2dc9-457d-9567-9d209f417c41"}]}'
+ string: '{"value": [{"id": "af99e50b-58ff-4ec0-847f-f06d896a5142", "displayName":
+ "fabcli000003", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1384,11 +1364,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:20:20 GMT
+ - Wed, 20 May 2026 09:24:41 GMT
Pragma:
- no-cache
RequestId:
- - d43fb517-c31a-466b-99d0-b04ac190b87e
+ - 278bf3ef-122d-4c04-8312-cb6f647bf9d2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1414,14 +1394,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/items
response:
body:
- string: '{"value": [{"id": "a5d2c427-7175-42c7-b9bd-1a220f2888e6", "type": "KQLQueryset",
- "displayName": "fabcli000004", "workspaceId":
- "eaac88e1-2dc9-457d-9567-9d209f417c41", "folderId": "b738b885-3ed1-484f-8781-e309b5982688"}]}'
+ string: '{"value": [{"id": "8be1fdbf-bb4e-4563-a531-d3110bfb6580", "type": "KQLQueryset",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c",
+ "folderId": "af99e50b-58ff-4ec0-847f-f06d896a5142"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1430,15 +1410,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '213'
+ - '203'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:20:21 GMT
+ - Wed, 20 May 2026 09:24:42 GMT
Pragma:
- no-cache
RequestId:
- - 7fc7db20-e367-486b-ade3-6ac083bfc441
+ - e5db6f90-7bc9-4599-8c8a-ef0165c3662e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1464,13 +1444,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "b738b885-3ed1-484f-8781-e309b5982688", "displayName":
- "fabcli000003", "workspaceId": "eaac88e1-2dc9-457d-9567-9d209f417c41"}]}'
+ string: '{"value": [{"id": "af99e50b-58ff-4ec0-847f-f06d896a5142", "displayName":
+ "fabcli000003", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1483,11 +1463,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:20:21 GMT
+ - Wed, 20 May 2026 09:24:43 GMT
Pragma:
- no-cache
RequestId:
- - 6742a1a6-c2f0-45ee-803c-e54482ce42b3
+ - 575fbb32-b3f6-4317-bb25-333b7c30ea69
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1513,13 +1493,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "b738b885-3ed1-484f-8781-e309b5982688", "displayName":
- "fabcli000003", "workspaceId": "eaac88e1-2dc9-457d-9567-9d209f417c41"}]}'
+ string: '{"value": [{"id": "af99e50b-58ff-4ec0-847f-f06d896a5142", "displayName":
+ "fabcli000003", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1532,11 +1512,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:20:22 GMT
+ - Wed, 20 May 2026 09:24:44 GMT
Pragma:
- no-cache
RequestId:
- - 154bb7bc-f356-4955-8d29-83d7057bd45f
+ - 60a28228-e3f7-41fc-9c05-b52ba0b8edd1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1562,16 +1542,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "eaac88e1-2dc9-457d-9567-9d209f417c41", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "21e6701a-1169-40fc-a1c5-ed29e154283c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1580,15 +1563,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2877'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:20:23 GMT
+ - Wed, 20 May 2026 09:24:44 GMT
Pragma:
- no-cache
RequestId:
- - 4d4f100c-ef0f-47dd-b746-af83367d9e1f
+ - c9f70cf2-6b05-4ea6-8b7c-d446afade3dd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1614,13 +1597,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "2e818f79-1973-4ba9-8f2e-eca4a935dfe4", "displayName":
- "fabcli000003", "workspaceId": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1"}]}'
+ string: '{"value": [{"id": "3919afe4-de0e-4174-b1aa-1f0d5e9dce89", "displayName":
+ "fabcli000003", "workspaceId": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1633,11 +1616,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:20:24 GMT
+ - Wed, 20 May 2026 09:24:46 GMT
Pragma:
- no-cache
RequestId:
- - 675cc3f6-3385-46c9-83f2-b88dc8cdd720
+ - 0bde1d77-b3db-4f72-acd0-a80baf74a859
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1663,9 +1646,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/items
response:
body:
string: '{"value": []}'
@@ -1681,11 +1664,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:20:24 GMT
+ - Wed, 20 May 2026 09:24:46 GMT
Pragma:
- no-cache
RequestId:
- - c76e9be0-f0f1-412a-a27c-7590e1508868
+ - 6900ef88-22cd-4258-b9c1-9a3a6b930f72
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1711,9 +1694,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/items
response:
body:
string: '{"value": []}'
@@ -1729,11 +1712,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:20:25 GMT
+ - Wed, 20 May 2026 09:24:47 GMT
Pragma:
- no-cache
RequestId:
- - 3240e5da-ac97-42e7-99ad-30a1a69645fe
+ - 6149c9e6-370e-4eea-9230-019505bfef84
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1759,9 +1742,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/items
response:
body:
string: '{"value": []}'
@@ -1777,11 +1760,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:20:26 GMT
+ - Wed, 20 May 2026 09:24:48 GMT
Pragma:
- no-cache
RequestId:
- - 92ed84aa-011a-4a9b-8f5c-71b02b33f42c
+ - 2439ab9a-49d1-45d7-a1df-6e12548e5875
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1807,14 +1790,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/items/a5d2c427-7175-42c7-b9bd-1a220f2888e6
+ uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/items/8be1fdbf-bb4e-4563-a531-d3110bfb6580
response:
body:
- string: '{"id": "a5d2c427-7175-42c7-b9bd-1a220f2888e6", "type": "KQLQueryset",
- "displayName": "fabcli000004", "workspaceId":
- "eaac88e1-2dc9-457d-9567-9d209f417c41", "folderId": "b738b885-3ed1-484f-8781-e309b5982688"}'
+ string: '{"id": "8be1fdbf-bb4e-4563-a531-d3110bfb6580", "type": "KQLQueryset",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c",
+ "folderId": "af99e50b-58ff-4ec0-847f-f06d896a5142"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1823,17 +1806,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '201'
+ - '192'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:20:27 GMT
+ - Wed, 20 May 2026 09:24:48 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 2ee447a3-90d8-4bdb-a747-851960c66bf6
+ - ee1d292c-14d3-4013-9cae-ae9ca4797112
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1861,13 +1844,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/items/a5d2c427-7175-42c7-b9bd-1a220f2888e6/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/items/8be1fdbf-bb4e-4563-a531-d3110bfb6580/getDefinition
response:
body:
string: '{"definition": {"parts": [{"path": "RealTimeQueryset.json", "payload":
- "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTFF1ZXJ5c2V0IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
+ "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTFF1ZXJ5c2V0IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
"payloadType": "InlineBase64"}]}}'
headers:
Access-Control-Expose-Headers:
@@ -1877,15 +1860,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '427'
+ - '401'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:20:29 GMT
+ - Wed, 20 May 2026 09:24:50 GMT
Pragma:
- no-cache
RequestId:
- - 1ec256ce-4831-4448-b116-60902ba4563d
+ - 927bdb83-aaab-4767-a154-945a002b3180
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1900,10 +1883,10 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "KQLQueryset", "displayName":
- "fabcli000004", "definition": {"parts": [{"path": "RealTimeQueryset.json", "payload":
- "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTFF1ZXJ5c2V0IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
- "payloadType": "InlineBase64"}]}, "folderId": "2e818f79-1973-4ba9-8f2e-eca4a935dfe4"}'
+ body: '{"type": "KQLQueryset", "displayName": "fabcli000004", "definition": {"parts":
+ [{"path": "RealTimeQueryset.json", "payload": "e30=", "payloadType": "InlineBase64"},
+ {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTFF1ZXJ5c2V0IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
+ "payloadType": "InlineBase64"}]}, "folderId": "3919afe4-de0e-4174-b1aa-1f0d5e9dce89"}'
headers:
Accept:
- '*/*'
@@ -1912,18 +1895,18 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '780'
+ - '699'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/items
response:
body:
- string: '{"id": "dded563f-0616-41c2-9ddc-d2c9c05884cf", "type": "KQLQueryset",
- "displayName": "fabcli000004", "workspaceId":
- "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "folderId": "2e818f79-1973-4ba9-8f2e-eca4a935dfe4"}'
+ string: '{"id": "fd6423b9-0d39-4b30-9b57-b12d62b8d323", "type": "KQLQueryset",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab",
+ "folderId": "3919afe4-de0e-4174-b1aa-1f0d5e9dce89"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1932,17 +1915,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '200'
+ - '190'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:20:31 GMT
+ - Wed, 20 May 2026 09:24:53 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 7e1adaae-ca6e-473b-a78e-7cec605454ea
+ - 520cadef-292c-40d1-bac4-a9f5ba9a4189
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1968,14 +1951,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/items
response:
body:
- string: '{"value": [{"id": "a5d2c427-7175-42c7-b9bd-1a220f2888e6", "type": "KQLQueryset",
- "displayName": "fabcli000004", "workspaceId":
- "eaac88e1-2dc9-457d-9567-9d209f417c41", "folderId": "b738b885-3ed1-484f-8781-e309b5982688"}]}'
+ string: '{"value": [{"id": "8be1fdbf-bb4e-4563-a531-d3110bfb6580", "type": "KQLQueryset",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c",
+ "folderId": "af99e50b-58ff-4ec0-847f-f06d896a5142"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1984,15 +1967,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '213'
+ - '203'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:20:31 GMT
+ - Wed, 20 May 2026 09:24:54 GMT
Pragma:
- no-cache
RequestId:
- - 32f42fb1-a18a-4087-b832-b72109668a71
+ - e292890f-3b00-4f2b-9dbd-1006c66f4531
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2018,13 +2001,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "b738b885-3ed1-484f-8781-e309b5982688", "displayName":
- "fabcli000003", "workspaceId": "eaac88e1-2dc9-457d-9567-9d209f417c41"}]}'
+ string: '{"value": [{"id": "af99e50b-58ff-4ec0-847f-f06d896a5142", "displayName":
+ "fabcli000003", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2037,11 +2020,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:20:32 GMT
+ - Wed, 20 May 2026 09:24:55 GMT
Pragma:
- no-cache
RequestId:
- - 4ce0b2df-d6ad-47a1-a273-6e168eea1103
+ - 6cf73943-13d8-42ba-b5a7-385cc14c2366
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2067,53 +2050,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/folders?recursive=True
- response:
- body:
- string: '{"requestId": "8f6d4b1d-6744-4bc0-8ea0-bda32cc55953", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 8:21:09 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 08:20:32 GMT
- RequestId:
- - 8f6d4b1d-6744-4bc0-8ea0-bda32cc55953
- Retry-After:
- - '36'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "b738b885-3ed1-484f-8781-e309b5982688", "displayName":
- "fabcli000003", "workspaceId": "eaac88e1-2dc9-457d-9567-9d209f417c41"}]}'
+ string: '{"value": [{"id": "af99e50b-58ff-4ec0-847f-f06d896a5142", "displayName":
+ "fabcli000003", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2126,11 +2069,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:21:11 GMT
+ - Wed, 20 May 2026 09:24:55 GMT
Pragma:
- no-cache
RequestId:
- - 63ca1d3c-2a1e-4987-86ae-74a0399c94f1
+ - 6c006f0a-d9e4-45d6-98f1-99736299e17a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2156,16 +2099,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "eaac88e1-2dc9-457d-9567-9d209f417c41", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "21e6701a-1169-40fc-a1c5-ed29e154283c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2174,15 +2120,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2877'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:21:11 GMT
+ - Wed, 20 May 2026 09:24:57 GMT
Pragma:
- no-cache
RequestId:
- - 3e6cba17-5f32-4ff2-a8e8-f1323569e16d
+ - 5052cb03-3f8b-4f26-baab-ce594e61826d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2208,14 +2154,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/items
response:
body:
- string: '{"value": [{"id": "dded563f-0616-41c2-9ddc-d2c9c05884cf", "type": "KQLQueryset",
- "displayName": "fabcli000004", "workspaceId":
- "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "folderId": "2e818f79-1973-4ba9-8f2e-eca4a935dfe4"}]}'
+ string: '{"value": [{"id": "fd6423b9-0d39-4b30-9b57-b12d62b8d323", "type": "KQLQueryset",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab",
+ "folderId": "3919afe4-de0e-4174-b1aa-1f0d5e9dce89"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2224,15 +2170,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '211'
+ - '201'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:21:12 GMT
+ - Wed, 20 May 2026 09:24:57 GMT
Pragma:
- no-cache
RequestId:
- - 04680bb6-2b25-4eb2-9d36-17ea650d77f9
+ - 59537d8d-e0ea-4f7d-ab5e-4a30ed40d8a9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2258,13 +2204,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "2e818f79-1973-4ba9-8f2e-eca4a935dfe4", "displayName":
- "fabcli000003", "workspaceId": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1"}]}'
+ string: '{"value": [{"id": "3919afe4-de0e-4174-b1aa-1f0d5e9dce89", "displayName":
+ "fabcli000003", "workspaceId": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2277,11 +2223,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:21:13 GMT
+ - Wed, 20 May 2026 09:24:58 GMT
Pragma:
- no-cache
RequestId:
- - 4846bb9d-053d-4d6a-8dff-984fe6b79ced
+ - dd384c9e-d8d1-4afe-a1fa-a956677cbc63
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2307,13 +2253,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "2e818f79-1973-4ba9-8f2e-eca4a935dfe4", "displayName":
- "fabcli000003", "workspaceId": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1"}]}'
+ string: '{"value": [{"id": "3919afe4-de0e-4174-b1aa-1f0d5e9dce89", "displayName":
+ "fabcli000003", "workspaceId": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2326,11 +2272,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:21:14 GMT
+ - Wed, 20 May 2026 09:24:58 GMT
Pragma:
- no-cache
RequestId:
- - 1e1d80d6-e41d-4b84-81b1-a9378d99862f
+ - f67bb505-9e1a-4927-8814-6d860e766409
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2356,16 +2302,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "eaac88e1-2dc9-457d-9567-9d209f417c41", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "21e6701a-1169-40fc-a1c5-ed29e154283c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2374,15 +2323,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2877'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:21:14 GMT
+ - Wed, 20 May 2026 09:24:59 GMT
Pragma:
- no-cache
RequestId:
- - a07cb89b-8410-48ad-b202-9a6d2a49e044
+ - 15c39298-1f91-4c07-8f1c-aaaf2a80d893
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2408,13 +2357,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "2e818f79-1973-4ba9-8f2e-eca4a935dfe4", "displayName":
- "fabcli000003", "workspaceId": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1"}]}'
+ string: '{"value": [{"id": "3919afe4-de0e-4174-b1aa-1f0d5e9dce89", "displayName":
+ "fabcli000003", "workspaceId": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2427,11 +2376,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:21:16 GMT
+ - Wed, 20 May 2026 09:25:00 GMT
Pragma:
- no-cache
RequestId:
- - 90aaccc7-b6b6-42c1-a5b3-0d05409397b6
+ - 424279da-b6fd-447d-a317-084e7dd5670d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2457,14 +2406,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/items
response:
body:
- string: '{"value": [{"id": "dded563f-0616-41c2-9ddc-d2c9c05884cf", "type": "KQLQueryset",
- "displayName": "fabcli000004", "workspaceId":
- "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "folderId": "2e818f79-1973-4ba9-8f2e-eca4a935dfe4"}]}'
+ string: '{"value": [{"id": "fd6423b9-0d39-4b30-9b57-b12d62b8d323", "type": "KQLQueryset",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab",
+ "folderId": "3919afe4-de0e-4174-b1aa-1f0d5e9dce89"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2473,15 +2422,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '211'
+ - '201'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:21:17 GMT
+ - Wed, 20 May 2026 09:25:01 GMT
Pragma:
- no-cache
RequestId:
- - 8d0c8cc1-94b4-4137-8b91-efa6cc7d7cf4
+ - 79c7f988-3d7d-45c2-a1d5-013a73502c36
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2507,13 +2456,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "2e818f79-1973-4ba9-8f2e-eca4a935dfe4", "displayName":
- "fabcli000003", "workspaceId": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1"}]}'
+ string: '{"value": [{"id": "3919afe4-de0e-4174-b1aa-1f0d5e9dce89", "displayName":
+ "fabcli000003", "workspaceId": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2526,11 +2475,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:21:17 GMT
+ - Wed, 20 May 2026 09:25:02 GMT
Pragma:
- no-cache
RequestId:
- - 10e711dc-5b0e-4fd7-a3df-d5dacd6dd4c5
+ - db5ae2be-637f-4624-81fa-c8eb11106b59
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2556,13 +2505,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "2e818f79-1973-4ba9-8f2e-eca4a935dfe4", "displayName":
- "fabcli000003", "workspaceId": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1"}]}'
+ string: '{"value": [{"id": "3919afe4-de0e-4174-b1aa-1f0d5e9dce89", "displayName":
+ "fabcli000003", "workspaceId": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2575,11 +2524,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:21:18 GMT
+ - Wed, 20 May 2026 09:25:03 GMT
Pragma:
- no-cache
RequestId:
- - d19f0bfe-0661-4a18-9392-beca013daa3a
+ - a2c6ef60-8b45-4bc5-af3b-5c62887c01f9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2605,16 +2554,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "eaac88e1-2dc9-457d-9567-9d209f417c41", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "21e6701a-1169-40fc-a1c5-ed29e154283c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2623,15 +2575,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2877'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:21:19 GMT
+ - Wed, 20 May 2026 09:25:04 GMT
Pragma:
- no-cache
RequestId:
- - 3bce0f27-19e5-4153-9812-08093c5adcb8
+ - aa0b8d2b-f418-4384-bd1f-8e5c168c77b9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2657,13 +2609,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "2e818f79-1973-4ba9-8f2e-eca4a935dfe4", "displayName":
- "fabcli000003", "workspaceId": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1"}]}'
+ string: '{"value": [{"id": "3919afe4-de0e-4174-b1aa-1f0d5e9dce89", "displayName":
+ "fabcli000003", "workspaceId": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2676,11 +2628,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:21:19 GMT
+ - Wed, 20 May 2026 09:25:04 GMT
Pragma:
- no-cache
RequestId:
- - 6e013ece-038d-466f-8380-917a2086a91f
+ - 9c767643-fe32-414e-ac3c-d3beb28946fa
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2706,14 +2658,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/items
response:
body:
- string: '{"value": [{"id": "dded563f-0616-41c2-9ddc-d2c9c05884cf", "type": "KQLQueryset",
- "displayName": "fabcli000004", "workspaceId":
- "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "folderId": "2e818f79-1973-4ba9-8f2e-eca4a935dfe4"}]}'
+ string: '{"value": [{"id": "fd6423b9-0d39-4b30-9b57-b12d62b8d323", "type": "KQLQueryset",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab",
+ "folderId": "3919afe4-de0e-4174-b1aa-1f0d5e9dce89"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2722,15 +2674,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '211'
+ - '201'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:21:20 GMT
+ - Wed, 20 May 2026 09:25:05 GMT
Pragma:
- no-cache
RequestId:
- - 5afd147f-ff8a-4a54-bbee-7003da0eb85f
+ - 623ec000-c055-4997-8303-9e63c8f2a002
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2756,13 +2708,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "2e818f79-1973-4ba9-8f2e-eca4a935dfe4", "displayName":
- "fabcli000003", "workspaceId": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1"}]}'
+ string: '{"value": [{"id": "3919afe4-de0e-4174-b1aa-1f0d5e9dce89", "displayName":
+ "fabcli000003", "workspaceId": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2775,11 +2727,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:21:21 GMT
+ - Wed, 20 May 2026 09:25:06 GMT
Pragma:
- no-cache
RequestId:
- - 6f780ab4-9b56-4e05-9cc9-d9140c96f693
+ - 11ea492f-b06a-4a8c-823a-ba3eb4d0b2b9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2807,9 +2759,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/items/dded563f-0616-41c2-9ddc-d2c9c05884cf
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/items/fd6423b9-0d39-4b30-9b57-b12d62b8d323
response:
body:
string: ''
@@ -2825,11 +2777,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:21:22 GMT
+ - Wed, 20 May 2026 09:25:06 GMT
Pragma:
- no-cache
RequestId:
- - 6f442256-1512-4c73-8d52-659af1b6d7b1
+ - 854318ff-8747-4f50-a508-3704263d3581
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2855,16 +2807,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "eaac88e1-2dc9-457d-9567-9d209f417c41", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "21e6701a-1169-40fc-a1c5-ed29e154283c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2873,15 +2828,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2877'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:21:23 GMT
+ - Wed, 20 May 2026 09:25:07 GMT
Pragma:
- no-cache
RequestId:
- - 514c9727-3188-4532-b0ab-7ab8bc34a58e
+ - 1a71abdd-3d78-49c3-a81b-1f449ab65809
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2907,13 +2862,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "2e818f79-1973-4ba9-8f2e-eca4a935dfe4", "displayName":
- "fabcli000003", "workspaceId": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1"}]}'
+ string: '{"value": [{"id": "3919afe4-de0e-4174-b1aa-1f0d5e9dce89", "displayName":
+ "fabcli000003", "workspaceId": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2926,11 +2881,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:21:24 GMT
+ - Wed, 20 May 2026 09:25:08 GMT
Pragma:
- no-cache
RequestId:
- - 0bace079-1d5c-4381-b91d-2939f50fae14
+ - a2184af6-64ea-4eb8-afb3-6ff7e4570376
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2958,9 +2913,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/folders/2e818f79-1973-4ba9-8f2e-eca4a935dfe4
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/folders/3919afe4-de0e-4174-b1aa-1f0d5e9dce89
response:
body:
string: ''
@@ -2976,11 +2931,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:21:24 GMT
+ - Wed, 20 May 2026 09:25:08 GMT
Pragma:
- no-cache
RequestId:
- - 1b08ae23-3025-497b-815b-80ce6fc39577
+ - 2a56d9ae-1b04-4022-8863-f8af5acb1a5e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3006,16 +2961,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "eaac88e1-2dc9-457d-9567-9d209f417c41", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "21e6701a-1169-40fc-a1c5-ed29e154283c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3024,15 +2982,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2877'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:21:25 GMT
+ - Wed, 20 May 2026 09:25:09 GMT
Pragma:
- no-cache
RequestId:
- - 45762c4b-12bc-4267-9b2c-e2cd819190a3
+ - c42ccbdc-4727-4ed9-859d-d454c630fbf8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3058,13 +3016,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "b738b885-3ed1-484f-8781-e309b5982688", "displayName":
- "fabcli000003", "workspaceId": "eaac88e1-2dc9-457d-9567-9d209f417c41"}]}'
+ string: '{"value": [{"id": "af99e50b-58ff-4ec0-847f-f06d896a5142", "displayName":
+ "fabcli000003", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3077,11 +3035,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:21:26 GMT
+ - Wed, 20 May 2026 09:25:11 GMT
Pragma:
- no-cache
RequestId:
- - b84852be-1671-458c-bad1-25aa86b3b361
+ - 032c48d6-7e14-48b3-ab2d-44837961a5a0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3107,14 +3065,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/items
response:
body:
- string: '{"value": [{"id": "a5d2c427-7175-42c7-b9bd-1a220f2888e6", "type": "KQLQueryset",
- "displayName": "fabcli000004", "workspaceId":
- "eaac88e1-2dc9-457d-9567-9d209f417c41", "folderId": "b738b885-3ed1-484f-8781-e309b5982688"}]}'
+ string: '{"value": [{"id": "8be1fdbf-bb4e-4563-a531-d3110bfb6580", "type": "KQLQueryset",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c",
+ "folderId": "af99e50b-58ff-4ec0-847f-f06d896a5142"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3123,15 +3081,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '213'
+ - '203'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:21:27 GMT
+ - Wed, 20 May 2026 09:25:11 GMT
Pragma:
- no-cache
RequestId:
- - 2324a752-f33c-47f7-932d-dc09736bd9cb
+ - fc214e23-7b78-4cb5-b211-8c5432d40420
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3157,53 +3115,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/folders?recursive=True
- response:
- body:
- string: '{"requestId": "69e3cbc8-8120-497a-8296-215a019ebae5", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 8:22:11 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 08:21:28 GMT
- RequestId:
- - 69e3cbc8-8120-497a-8296-215a019ebae5
- Retry-After:
- - '43'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "b738b885-3ed1-484f-8781-e309b5982688", "displayName":
- "fabcli000003", "workspaceId": "eaac88e1-2dc9-457d-9567-9d209f417c41"}]}'
+ string: '{"value": [{"id": "af99e50b-58ff-4ec0-847f-f06d896a5142", "displayName":
+ "fabcli000003", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3216,11 +3134,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:22:14 GMT
+ - Wed, 20 May 2026 09:25:11 GMT
Pragma:
- no-cache
RequestId:
- - 9a6b6e8c-bf72-49c3-83ae-31305d7d151c
+ - f6fc826b-de8b-41d6-9875-e2772d912171
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3248,9 +3166,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/items/a5d2c427-7175-42c7-b9bd-1a220f2888e6
+ uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/items/8be1fdbf-bb4e-4563-a531-d3110bfb6580
response:
body:
string: ''
@@ -3266,11 +3184,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:22:15 GMT
+ - Wed, 20 May 2026 09:25:11 GMT
Pragma:
- no-cache
RequestId:
- - b6e257b8-bcd0-4807-9f01-810ce79478f3
+ - 88845d9a-b400-4906-b56b-edc1a8e6efdd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3296,16 +3214,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "eaac88e1-2dc9-457d-9567-9d209f417c41", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "21e6701a-1169-40fc-a1c5-ed29e154283c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3314,15 +3235,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2877'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:22:15 GMT
+ - Wed, 20 May 2026 09:25:12 GMT
Pragma:
- no-cache
RequestId:
- - 2166cec3-d919-4f29-8cd4-1b5c7f7d75d7
+ - 0757e641-8403-4bcd-b989-bf62fd676bb5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3348,13 +3269,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "b738b885-3ed1-484f-8781-e309b5982688", "displayName":
- "fabcli000003", "workspaceId": "eaac88e1-2dc9-457d-9567-9d209f417c41"}]}'
+ string: '{"value": [{"id": "af99e50b-58ff-4ec0-847f-f06d896a5142", "displayName":
+ "fabcli000003", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3367,11 +3288,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:22:17 GMT
+ - Wed, 20 May 2026 09:25:13 GMT
Pragma:
- no-cache
RequestId:
- - 0b068e21-b5bc-4b3c-8da6-d18e2b91b643
+ - c31d1419-c1bc-476a-9020-6cf47da49c7e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3399,9 +3320,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/folders/b738b885-3ed1-484f-8781-e309b5982688
+ uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/folders/af99e50b-58ff-4ec0-847f-f06d896a5142
response:
body:
string: ''
@@ -3417,11 +3338,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:22:18 GMT
+ - Wed, 20 May 2026 09:25:13 GMT
Pragma:
- no-cache
RequestId:
- - b2f7bc93-9360-4a70-a0a1-093abc74371e
+ - b88bb316-13aa-40db-97a8-377f56313e28
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3447,16 +3368,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "eaac88e1-2dc9-457d-9567-9d209f417c41", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "21e6701a-1169-40fc-a1c5-ed29e154283c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3465,15 +3389,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2877'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:22:18 GMT
+ - Wed, 20 May 2026 09:25:14 GMT
Pragma:
- no-cache
RequestId:
- - 45c6aaae-1652-43ab-93cd-932c4d57192f
+ - 84efecd9-fc36-434c-bf2d-1de5485603c1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3499,9 +3423,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/items
response:
body:
string: '{"value": []}'
@@ -3517,11 +3441,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:22:19 GMT
+ - Wed, 20 May 2026 09:25:15 GMT
Pragma:
- no-cache
RequestId:
- - 81b2c7ed-4a17-4184-bd68-827209b1883c
+ - df2b8181-b117-4c81-9686-7253d452d8cf
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3549,9 +3473,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41
+ uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c
response:
body:
string: ''
@@ -3567,11 +3491,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:22:20 GMT
+ - Wed, 20 May 2026 09:25:15 GMT
Pragma:
- no-cache
RequestId:
- - 79f858d4-f203-45ab-8a7e-55c15252bc7e
+ - bf3348fb-ea6b-42c2-9ebe-a4d6db24c13e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3597,15 +3521,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3614,15 +3540,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2841'
+ - '2657'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:22:20 GMT
+ - Wed, 20 May 2026 09:25:16 GMT
Pragma:
- no-cache
RequestId:
- - ebb947cc-40d0-4a11-8e73-a167bf5bcedc
+ - 12b808ed-b78f-4029-b79e-d5b2e1008987
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3648,9 +3574,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/items
response:
body:
string: '{"value": []}'
@@ -3666,11 +3592,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:22:22 GMT
+ - Wed, 20 May 2026 09:25:16 GMT
Pragma:
- no-cache
RequestId:
- - d927190f-4ce0-439f-a275-182862ccc09a
+ - 954c6f89-f710-4454-9add-7a420c07d1c0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3698,9 +3624,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab
response:
body:
string: ''
@@ -3716,11 +3642,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:22:22 GMT
+ - Wed, 20 May 2026 09:25:16 GMT
Pragma:
- no-cache
RequestId:
- - 2c942cf3-2252-4d23-944d-27cb31516efb
+ - 2cde9653-ae9f-4f0b-949b-818c370b7ef8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[MirroredDatabase].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[MirroredDatabase].yaml
index e4118c1c4..32eac290f 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[MirroredDatabase].yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[MirroredDatabase].yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:22:24 GMT
+ - Wed, 20 May 2026 09:25:18 GMT
Pragma:
- no-cache
RequestId:
- - a5dbf9b1-d8e5-4ef1-9dd4-6328bf23212a
+ - 6af525c9-5b9b-42bf-a824-8529659ceb18
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,14 +62,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -77,15 +79,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:22:24 GMT
+ - Wed, 20 May 2026 09:25:19 GMT
Pragma:
- no-cache
RequestId:
- - ad12498e-f27d-49f5-b3b0-a47c0de25a80
+ - f00d63c1-8022-43e1-a196-23d73fb3149f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -111,7 +113,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -131,11 +133,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:22:29 GMT
+ - Wed, 20 May 2026 09:25:22 GMT
Pragma:
- no-cache
RequestId:
- - 56a568c5-a3b3-4fd5-ab07-ec51d7b8da4e
+ - 91d821cf-8221-42b1-b808-ab72086b7b10
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -150,8 +152,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000001", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -160,16 +161,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -178,17 +180,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '156'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:22:38 GMT
+ - Wed, 20 May 2026 09:25:30 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf
+ - https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b
Pragma:
- no-cache
RequestId:
- - ece365fb-bd64-45cd-91bc-f6245802d2e1
+ - e01ac83c-5605-4161-b151-4c601b4f903c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -214,15 +216,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -231,15 +235,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2840'
+ - '2656'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:22:39 GMT
+ - Wed, 20 May 2026 09:25:31 GMT
Pragma:
- no-cache
RequestId:
- - 5b218704-43e7-4f17-8979-a15376f8c6db
+ - 9f5b5c79-388d-4861-b32d-b4d95172d5bf
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -265,15 +269,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -282,15 +288,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2840'
+ - '2656'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:22:39 GMT
+ - Wed, 20 May 2026 09:25:32 GMT
Pragma:
- no-cache
RequestId:
- - d7f11dab-5ac9-42ed-be6b-593fe4039764
+ - 84667c71-4cf4-46be-b580-3ced5b5caf54
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -316,7 +322,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -332,15 +338,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '424'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:22:43 GMT
+ - Wed, 20 May 2026 09:25:36 GMT
Pragma:
- no-cache
RequestId:
- - 51439d92-0b00-4985-b676-173a4170a648
+ - fcedb52b-45e7-4578-a906-3fb7a4ac0a0f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -355,8 +361,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000002", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -365,16 +370,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "ea214bd9-415d-4843-9beb-5e850f9645a3", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "6d115027-c55b-46d3-a868-60b47ac46449", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -383,17 +389,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '155'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:22:52 GMT
+ - Wed, 20 May 2026 09:25:44 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/ea214bd9-415d-4843-9beb-5e850f9645a3
+ - https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449
Pragma:
- no-cache
RequestId:
- - 9d796844-19ae-49b5-a1ef-499090d747c2
+ - 3277a3ee-e6e8-406c-a1dd-79fe10e90fe2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -419,16 +425,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "ea214bd9-415d-4843-9beb-5e850f9645a3", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "6d115027-c55b-46d3-a868-60b47ac46449", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -437,15 +446,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:22:53 GMT
+ - Wed, 20 May 2026 09:25:45 GMT
Pragma:
- no-cache
RequestId:
- - 5602831f-ecc3-40a6-8bd6-60b826fa6c0f
+ - 87512628-3197-46e5-b527-7d5cf60d5e23
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -471,9 +480,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -489,11 +498,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:22:54 GMT
+ - Wed, 20 May 2026 09:25:46 GMT
Pragma:
- no-cache
RequestId:
- - 2817b221-caa6-4492-a149-2b6aa106e03d
+ - a1781b50-b7d9-4493-9444-19310b62e3ef
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -519,9 +528,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -537,11 +546,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:22:54 GMT
+ - Wed, 20 May 2026 09:25:47 GMT
Pragma:
- no-cache
RequestId:
- - a46626ba-4b4e-4457-9c2e-3f5be50e56f7
+ - 89b43d69-9dcf-423e-a458-47a26805d76a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -565,17 +574,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders
response:
body:
- string: '{"id": "dbed2ee2-5dc2-4037-867c-9d29b6287340", "displayName": "fabcli000003",
- "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf"}'
+ string: '{"id": "7e6f5658-f52d-460f-9fd5-38080907c930", "displayName": "fabcli000003",
+ "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -588,13 +597,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:22:55 GMT
+ - Wed, 20 May 2026 09:25:48 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders/dbed2ee2-5dc2-4037-867c-9d29b6287340
+ - https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders/7e6f5658-f52d-460f-9fd5-38080907c930
Pragma:
- no-cache
RequestId:
- - 15779819-226b-4da6-b421-fbb73cda1c55
+ - c53111aa-2c0d-40a3-afb6-cf96fb8492f7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -620,16 +629,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "ea214bd9-415d-4843-9beb-5e850f9645a3", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "6d115027-c55b-46d3-a868-60b47ac46449", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -638,15 +650,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:22:56 GMT
+ - Wed, 20 May 2026 09:25:48 GMT
Pragma:
- no-cache
RequestId:
- - a369b1b3-7141-44d5-be4a-681454d48168
+ - 2542440e-45b4-463f-9934-9bdb363466d8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -672,13 +684,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "dbed2ee2-5dc2-4037-867c-9d29b6287340", "displayName":
- "fabcli000003", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf"}]}'
+ string: '{"value": [{"id": "7e6f5658-f52d-460f-9fd5-38080907c930", "displayName":
+ "fabcli000003", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -691,11 +703,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:22:56 GMT
+ - Wed, 20 May 2026 09:25:49 GMT
Pragma:
- no-cache
RequestId:
- - c142e616-8536-4c5f-a0e3-522fbaba9c1d
+ - 1cb7b5a4-b63a-49f0-a47b-0f235a17eb14
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -721,9 +733,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/items
response:
body:
string: '{"value": []}'
@@ -739,11 +751,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:22:58 GMT
+ - Wed, 20 May 2026 09:25:50 GMT
Pragma:
- no-cache
RequestId:
- - ebe1e381-ed06-49a7-bcf9-c4cfdd7939bc
+ - f3a13786-4692-4c55-94f1-d81f57afb31a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -769,9 +781,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/items
response:
body:
string: '{"value": []}'
@@ -787,11 +799,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:22:58 GMT
+ - Wed, 20 May 2026 09:25:51 GMT
Pragma:
- no-cache
RequestId:
- - db5d8737-ce58-4783-b885-07aeafd34b5a
+ - a1c7b473-3484-43da-894e-dc37f1d249df
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -806,9 +818,9 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000004", "type":
- "MirroredDatabase", "folderId": "dbed2ee2-5dc2-4037-867c-9d29b6287340", "definition":
- {"parts": [{"path": "mirroring.json", "payload": "ewogICAgInByb3BlcnRpZXMiOiB7CiAgICAgICAgInNvdXJjZSI6IHsKICAgICAgICAgICAgInR5cGUiOiAiR2VuZXJpY01pcnJvciIsCiAgICAgICAgICAgICJ0eXBlUHJvcGVydGllcyI6IHt9CiAgICAgICAgfSwKICAgICAgICAidGFyZ2V0IjogewogICAgICAgICAgICAidHlwZSI6ICJNb3VudGVkUmVsYXRpb25hbERhdGFiYXNlIiwKICAgICAgICAgICAgInR5cGVQcm9wZXJ0aWVzIjogewogICAgICAgICAgICAgICAgImZvcm1hdCI6ICJEZWx0YSIKICAgICAgICAgICAgfQogICAgICAgIH0KICAgIH0KfQ==",
+ body: '{"displayName": "fabcli000004", "type": "MirroredDatabase", "folderId":
+ "7e6f5658-f52d-460f-9fd5-38080907c930", "definition": {"parts": [{"path": "mirroring.json",
+ "payload": "ewogICAgInByb3BlcnRpZXMiOiB7CiAgICAgICAgInNvdXJjZSI6IHsKICAgICAgICAgICAgInR5cGUiOiAiR2VuZXJpY01pcnJvciIsCiAgICAgICAgICAgICJ0eXBlUHJvcGVydGllcyI6IHt9CiAgICAgICAgfSwKICAgICAgICAidGFyZ2V0IjogewogICAgICAgICAgICAidHlwZSI6ICJNb3VudGVkUmVsYXRpb25hbERhdGFiYXNlIiwKICAgICAgICAgICAgInR5cGVQcm9wZXJ0aWVzIjogewogICAgICAgICAgICAgICAgImZvcm1hdCI6ICJEZWx0YSIKICAgICAgICAgICAgfQogICAgICAgIH0KICAgIH0KfQ==",
"payloadType": "InlineBase64"}]}}'
headers:
Accept:
@@ -818,18 +830,18 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '637'
+ - '604'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/mirroredDatabases
+ uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/mirroredDatabases
response:
body:
- string: '{"id": "e647cfcf-363f-4a80-9616-e145b698b150", "type": "MirroredDatabase",
- "displayName": "fabcli000004", "workspaceId":
- "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "folderId": "dbed2ee2-5dc2-4037-867c-9d29b6287340"}'
+ string: '{"id": "bc01466e-cf5a-4149-b878-a4e8337cf2bd", "type": "MirroredDatabase",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b",
+ "folderId": "7e6f5658-f52d-460f-9fd5-38080907c930"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -838,17 +850,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '201'
+ - '192'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:01 GMT
+ - Wed, 20 May 2026 09:25:54 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 765e526b-39c8-4ede-bca7-b6aec5b61e91
+ - 5550b4df-0165-4779-9a91-cc5b3a678abc
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -874,16 +886,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "ea214bd9-415d-4843-9beb-5e850f9645a3", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "6d115027-c55b-46d3-a868-60b47ac46449", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -892,15 +907,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:01 GMT
+ - Wed, 20 May 2026 09:25:55 GMT
Pragma:
- no-cache
RequestId:
- - e9068338-53e8-4509-be22-48585c5189b7
+ - 08b54459-4c3d-4d13-890e-44aa1c73b9a7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -926,13 +941,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "dbed2ee2-5dc2-4037-867c-9d29b6287340", "displayName":
- "fabcli000003", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf"}]}'
+ string: '{"value": [{"id": "7e6f5658-f52d-460f-9fd5-38080907c930", "displayName":
+ "fabcli000003", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -945,11 +960,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:02 GMT
+ - Wed, 20 May 2026 09:25:56 GMT
Pragma:
- no-cache
RequestId:
- - 86e39af1-cb6b-4df3-8a99-8ed78f11e940
+ - a96cae10-a79a-48db-ae78-cb72a7448c82
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -975,16 +990,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "ea214bd9-415d-4843-9beb-5e850f9645a3", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "6d115027-c55b-46d3-a868-60b47ac46449", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -993,15 +1011,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:03 GMT
+ - Wed, 20 May 2026 09:25:57 GMT
Pragma:
- no-cache
RequestId:
- - fec415a6-a03a-4493-80b4-493c0102f7b4
+ - 7ba71156-b023-43ab-bb2f-4724d719c5e4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1027,16 +1045,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "ea214bd9-415d-4843-9beb-5e850f9645a3", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "6d115027-c55b-46d3-a868-60b47ac46449", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1045,15 +1066,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:04 GMT
+ - Wed, 20 May 2026 09:25:58 GMT
Pragma:
- no-cache
RequestId:
- - 7257300f-b8bd-4f98-94d2-5b3998bc1b81
+ - 3cfbeb4c-5919-476c-8d95-e810a69116af
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1079,9 +1100,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ea214bd9-415d-4843-9beb-5e850f9645a3/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -1097,11 +1118,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:04 GMT
+ - Wed, 20 May 2026 09:25:59 GMT
Pragma:
- no-cache
RequestId:
- - a7e60761-bee6-4aea-ae9b-22af98db8c7f
+ - d647f4cc-a16d-4a7f-88ac-b6a7a1443ff0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1127,9 +1148,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ea214bd9-415d-4843-9beb-5e850f9645a3/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -1145,11 +1166,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:05 GMT
+ - Wed, 20 May 2026 09:25:59 GMT
Pragma:
- no-cache
RequestId:
- - 61ac3a47-caad-4bb2-9bf5-cfeb0cf11582
+ - c0573b4f-0412-4a05-8fb5-32b7051e7ffa
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1173,17 +1194,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/ea214bd9-415d-4843-9beb-5e850f9645a3/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/folders
response:
body:
- string: '{"id": "4c964959-5e03-42a4-bdbe-188c15d43a99", "displayName": "fabcli000003",
- "workspaceId": "ea214bd9-415d-4843-9beb-5e850f9645a3"}'
+ string: '{"id": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6", "displayName": "fabcli000003",
+ "workspaceId": "6d115027-c55b-46d3-a868-60b47ac46449"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -1192,17 +1213,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '130'
+ - '132'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:06 GMT
+ - Wed, 20 May 2026 09:26:01 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/ea214bd9-415d-4843-9beb-5e850f9645a3/folders/4c964959-5e03-42a4-bdbe-188c15d43a99
+ - https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/folders/d111f271-86a1-4d81-bdf6-d8da34d5d0e6
Pragma:
- no-cache
RequestId:
- - 4f5f29ff-cb73-41ec-a19f-94f72369b70b
+ - 0123514d-4998-40fe-83b0-1b0ef4b0f7ce
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1228,14 +1249,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/items
response:
body:
- string: '{"value": [{"id": "e647cfcf-363f-4a80-9616-e145b698b150", "type": "MirroredDatabase",
- "displayName": "fabcli000004", "workspaceId":
- "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "folderId": "dbed2ee2-5dc2-4037-867c-9d29b6287340"}]}'
+ string: '{"value": [{"id": "bc01466e-cf5a-4149-b878-a4e8337cf2bd", "type": "MirroredDatabase",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b",
+ "folderId": "7e6f5658-f52d-460f-9fd5-38080907c930"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1244,15 +1265,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '214'
+ - '205'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:07 GMT
+ - Wed, 20 May 2026 09:26:01 GMT
Pragma:
- no-cache
RequestId:
- - e7302926-bf4e-4bfc-8b8a-b28f8c8826ef
+ - 1bd7e641-9757-4125-8463-8417a6a65a21
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1278,13 +1299,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "dbed2ee2-5dc2-4037-867c-9d29b6287340", "displayName":
- "fabcli000003", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf"}]}'
+ string: '{"value": [{"id": "7e6f5658-f52d-460f-9fd5-38080907c930", "displayName":
+ "fabcli000003", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1297,11 +1318,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:08 GMT
+ - Wed, 20 May 2026 09:26:02 GMT
Pragma:
- no-cache
RequestId:
- - c6fdd83d-606c-4806-9f85-60c36e285956
+ - becf2f1d-71a2-488e-8f0f-cdfe0253679e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1327,13 +1348,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "dbed2ee2-5dc2-4037-867c-9d29b6287340", "displayName":
- "fabcli000003", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf"}]}'
+ string: '{"value": [{"id": "7e6f5658-f52d-460f-9fd5-38080907c930", "displayName":
+ "fabcli000003", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1346,11 +1367,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:08 GMT
+ - Wed, 20 May 2026 09:26:04 GMT
Pragma:
- no-cache
RequestId:
- - c5720427-eaf5-47b0-9be1-aab8e83005de
+ - d68aa328-1127-4867-9a62-1a463696d90f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1376,14 +1397,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/items
response:
body:
- string: '{"value": [{"id": "e647cfcf-363f-4a80-9616-e145b698b150", "type": "MirroredDatabase",
- "displayName": "fabcli000004", "workspaceId":
- "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "folderId": "dbed2ee2-5dc2-4037-867c-9d29b6287340"}]}'
+ string: '{"value": [{"id": "bc01466e-cf5a-4149-b878-a4e8337cf2bd", "type": "MirroredDatabase",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b",
+ "folderId": "7e6f5658-f52d-460f-9fd5-38080907c930"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1392,15 +1413,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '214'
+ - '205'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:09 GMT
+ - Wed, 20 May 2026 09:26:04 GMT
Pragma:
- no-cache
RequestId:
- - 59fdde5f-ade9-4609-9cf1-7a1d87656224
+ - 9ddce861-84bd-4dc6-92e7-6983558a610b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1426,53 +1447,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders?recursive=True
- response:
- body:
- string: '{"requestId": "fc75deef-55ed-4e76-9dcf-29342d572add", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 8:23:15 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 08:23:10 GMT
- RequestId:
- - fc75deef-55ed-4e76-9dcf-29342d572add
- Retry-After:
- - '5'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "dbed2ee2-5dc2-4037-867c-9d29b6287340", "displayName":
- "fabcli000003", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf"}]}'
+ string: '{"value": [{"id": "7e6f5658-f52d-460f-9fd5-38080907c930", "displayName":
+ "fabcli000003", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1485,11 +1466,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:16 GMT
+ - Wed, 20 May 2026 09:26:05 GMT
Pragma:
- no-cache
RequestId:
- - c26279cd-10c9-4121-bcf4-0ecb7a567190
+ - 2181bec5-0085-4463-80b9-17e04a4a07f0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1515,13 +1496,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "dbed2ee2-5dc2-4037-867c-9d29b6287340", "displayName":
- "fabcli000003", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf"}]}'
+ string: '{"value": [{"id": "7e6f5658-f52d-460f-9fd5-38080907c930", "displayName":
+ "fabcli000003", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1534,11 +1515,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:17 GMT
+ - Wed, 20 May 2026 09:26:06 GMT
Pragma:
- no-cache
RequestId:
- - 6831390c-e52c-480c-ad4e-fb69f7986c06
+ - 65a74b94-5cdf-4d55-abc5-fd51d6ade07e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1564,16 +1545,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "ea214bd9-415d-4843-9beb-5e850f9645a3", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "6d115027-c55b-46d3-a868-60b47ac46449", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1582,15 +1566,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:17 GMT
+ - Wed, 20 May 2026 09:26:07 GMT
Pragma:
- no-cache
RequestId:
- - 1ec7c23b-88cb-43c0-ab96-b0858f847b16
+ - 5af42e98-9cae-4305-830b-80183ca16bc8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1616,13 +1600,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ea214bd9-415d-4843-9beb-5e850f9645a3/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "4c964959-5e03-42a4-bdbe-188c15d43a99", "displayName":
- "fabcli000003", "workspaceId": "ea214bd9-415d-4843-9beb-5e850f9645a3"}]}'
+ string: '{"value": [{"id": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6", "displayName":
+ "fabcli000003", "workspaceId": "6d115027-c55b-46d3-a868-60b47ac46449"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1631,15 +1615,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '140'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:18 GMT
+ - Wed, 20 May 2026 09:26:08 GMT
Pragma:
- no-cache
RequestId:
- - 3403ba10-ed84-4231-8181-e4c4f76605a1
+ - 0d803ee2-f35a-4727-9825-846f6666ec3b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1665,9 +1649,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ea214bd9-415d-4843-9beb-5e850f9645a3/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/items
response:
body:
string: '{"value": []}'
@@ -1683,11 +1667,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:19 GMT
+ - Wed, 20 May 2026 09:26:09 GMT
Pragma:
- no-cache
RequestId:
- - f0cc6610-7f1b-4185-ae42-0227d8f1be8a
+ - 0a553bb9-d7da-485a-82ae-b611fd966093
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1713,9 +1697,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ea214bd9-415d-4843-9beb-5e850f9645a3/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/items
response:
body:
string: '{"value": []}'
@@ -1731,11 +1715,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:20 GMT
+ - Wed, 20 May 2026 09:26:10 GMT
Pragma:
- no-cache
RequestId:
- - 1a73f75e-825f-4555-81e1-9c0d8aa5d5dc
+ - c2d7f6f0-50a2-4c6c-84ba-6828ec30b566
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1761,9 +1745,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ea214bd9-415d-4843-9beb-5e850f9645a3/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/items
response:
body:
string: '{"value": []}'
@@ -1779,11 +1763,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:20 GMT
+ - Wed, 20 May 2026 09:26:10 GMT
Pragma:
- no-cache
RequestId:
- - 8cbb6e6b-2fc2-4eef-886b-b60f6c081517
+ - 96196a72-313c-4f7d-8520-42cc99915005
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1809,14 +1793,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/items/e647cfcf-363f-4a80-9616-e145b698b150
+ uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/items/bc01466e-cf5a-4149-b878-a4e8337cf2bd
response:
body:
- string: '{"id": "e647cfcf-363f-4a80-9616-e145b698b150", "type": "MirroredDatabase",
- "displayName": "fabcli000004", "workspaceId":
- "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "folderId": "dbed2ee2-5dc2-4037-867c-9d29b6287340"}'
+ string: '{"id": "bc01466e-cf5a-4149-b878-a4e8337cf2bd", "type": "MirroredDatabase",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b",
+ "folderId": "7e6f5658-f52d-460f-9fd5-38080907c930"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1825,17 +1809,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '201'
+ - '192'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:21 GMT
+ - Wed, 20 May 2026 09:26:12 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - a63c50f0-8bc3-4478-8d9a-67fe0b647705
+ - 63e6cdcb-8516-4b9d-b757-04e8ac25f0a2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1863,13 +1847,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/items/e647cfcf-363f-4a80-9616-e145b698b150/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/items/bc01466e-cf5a-4149-b878-a4e8337cf2bd/getDefinition
response:
body:
string: '{"definition": {"parts": [{"path": "mirroring.json", "payload": "ew0KICAicHJvcGVydGllcyI6IHsNCiAgICAic291cmNlIjogew0KICAgICAgInR5cGUiOiAiR2VuZXJpY01pcnJvciIsDQogICAgICAidHlwZVByb3BlcnRpZXMiOiB7fQ0KICAgIH0sDQogICAgInRhcmdldCI6IHsNCiAgICAgICJ0eXBlIjogIk1vdW50ZWRSZWxhdGlvbmFsRGF0YWJhc2UiLA0KICAgICAgInR5cGVQcm9wZXJ0aWVzIjogew0KICAgICAgICAiZm9ybWF0IjogIkRlbHRhIg0KICAgICAgfQ0KICAgIH0NCiAgfQ0KfQ==",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk1pcnJvcmVkRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwNCIsCiAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk1pcnJvcmVkRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwNCIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
"payloadType": "InlineBase64"}]}}'
headers:
Access-Control-Expose-Headers:
@@ -1879,15 +1863,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '561'
+ - '535'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:22 GMT
+ - Wed, 20 May 2026 09:26:12 GMT
Pragma:
- no-cache
RequestId:
- - e279b4b3-e8d5-49e5-bce9-2100f451ea86
+ - 7a53878b-256e-4219-abfd-89bd2d2b02ba
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1902,11 +1886,10 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "MirroredDatabase", "displayName":
- "fabcli000004", "definition": {"parts": [{"path": "mirroring.json", "payload":
- "ew0KICAicHJvcGVydGllcyI6IHsNCiAgICAic291cmNlIjogew0KICAgICAgInR5cGUiOiAiR2VuZXJpY01pcnJvciIsDQogICAgICAidHlwZVByb3BlcnRpZXMiOiB7fQ0KICAgIH0sDQogICAgInRhcmdldCI6IHsNCiAgICAgICJ0eXBlIjogIk1vdW50ZWRSZWxhdGlvbmFsRGF0YWJhc2UiLA0KICAgICAgInR5cGVQcm9wZXJ0aWVzIjogew0KICAgICAgICAiZm9ybWF0IjogIkRlbHRhIg0KICAgICAgfQ0KICAgIH0NCiAgfQ0KfQ==",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk1pcnJvcmVkRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwNCIsCiAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
- "payloadType": "InlineBase64"}]}, "folderId": "4c964959-5e03-42a4-bdbe-188c15d43a99"}'
+ body: '{"type": "MirroredDatabase", "displayName": "fabcli000004", "definition":
+ {"parts": [{"path": "mirroring.json", "payload": "ew0KICAicHJvcGVydGllcyI6IHsNCiAgICAic291cmNlIjogew0KICAgICAgInR5cGUiOiAiR2VuZXJpY01pcnJvciIsDQogICAgICAidHlwZVByb3BlcnRpZXMiOiB7fQ0KICAgIH0sDQogICAgInRhcmdldCI6IHsNCiAgICAgICJ0eXBlIjogIk1vdW50ZWRSZWxhdGlvbmFsRGF0YWJhc2UiLA0KICAgICAgInR5cGVQcm9wZXJ0aWVzIjogew0KICAgICAgICAiZm9ybWF0IjogIkRlbHRhIg0KICAgICAgfQ0KICAgIH0NCiAgfQ0KfQ==",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk1pcnJvcmVkRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwNCIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
+ "payloadType": "InlineBase64"}]}, "folderId": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6"}'
headers:
Accept:
- '*/*'
@@ -1915,18 +1898,18 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1110'
+ - '1029'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/ea214bd9-415d-4843-9beb-5e850f9645a3/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/items
response:
body:
- string: '{"id": "83f5c4fb-65b3-489f-80e1-d915e28a4775", "type": "MirroredDatabase",
- "displayName": "fabcli000004", "workspaceId":
- "ea214bd9-415d-4843-9beb-5e850f9645a3", "folderId": "4c964959-5e03-42a4-bdbe-188c15d43a99"}'
+ string: '{"id": "0379bbf5-650f-476c-b3ae-a8286288ea6f", "type": "MirroredDatabase",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "6d115027-c55b-46d3-a868-60b47ac46449",
+ "folderId": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1935,17 +1918,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '202'
+ - '191'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:25 GMT
+ - Wed, 20 May 2026 09:26:15 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 66fc3bb6-8750-4b3d-aac7-17278ca0ec9a
+ - 97cc3ad5-cde5-470d-8175-46e2f81395bf
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1971,16 +1954,16 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/items
response:
body:
- string: '{"value": [{"id": "d1815453-76e7-46c8-8af7-ea2f00255805", "type": "SQLEndpoint",
- "displayName": "fabcli000004", "description": "", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf",
- "folderId": "dbed2ee2-5dc2-4037-867c-9d29b6287340"}, {"id": "e647cfcf-363f-4a80-9616-e145b698b150",
- "type": "MirroredDatabase", "displayName": "fabcli000004", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "folderId":
- "dbed2ee2-5dc2-4037-867c-9d29b6287340"}]}'
+ string: '{"value": [{"id": "520bb395-0398-482c-812d-b5fa14c01e7b", "type": "SQLEndpoint",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b",
+ "folderId": "7e6f5658-f52d-460f-9fd5-38080907c930"}, {"id": "bc01466e-cf5a-4149-b878-a4e8337cf2bd",
+ "type": "MirroredDatabase", "displayName": "fabcli000004", "description":
+ "", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "folderId": "7e6f5658-f52d-460f-9fd5-38080907c930"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1989,15 +1972,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '260'
+ - '248'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:25 GMT
+ - Wed, 20 May 2026 09:26:15 GMT
Pragma:
- no-cache
RequestId:
- - a387b00f-96ae-4150-ad95-61cb48ec89b1
+ - 871b7d15-bb37-4602-bc2a-c87ee266370a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2023,13 +2006,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "dbed2ee2-5dc2-4037-867c-9d29b6287340", "displayName":
- "fabcli000003", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf"}]}'
+ string: '{"value": [{"id": "7e6f5658-f52d-460f-9fd5-38080907c930", "displayName":
+ "fabcli000003", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2042,11 +2025,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:26 GMT
+ - Wed, 20 May 2026 09:26:16 GMT
Pragma:
- no-cache
RequestId:
- - 7dff590c-aee3-4ac2-a6cc-358e4b239865
+ - 7ed5cefd-a750-4b55-b69f-1f7b8ac3e347
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2072,13 +2055,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "dbed2ee2-5dc2-4037-867c-9d29b6287340", "displayName":
- "fabcli000003", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf"}]}'
+ string: '{"value": [{"id": "7e6f5658-f52d-460f-9fd5-38080907c930", "displayName":
+ "fabcli000003", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2091,11 +2074,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:27 GMT
+ - Wed, 20 May 2026 09:26:16 GMT
Pragma:
- no-cache
RequestId:
- - 071091e6-4574-42fe-937e-06ae9c6df50f
+ - 3ec8ec81-054a-4247-8a67-93d8470f31f1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2121,13 +2104,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "dbed2ee2-5dc2-4037-867c-9d29b6287340", "displayName":
- "fabcli000003", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf"}]}'
+ string: '{"value": [{"id": "7e6f5658-f52d-460f-9fd5-38080907c930", "displayName":
+ "fabcli000003", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2140,11 +2123,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:28 GMT
+ - Wed, 20 May 2026 09:26:16 GMT
Pragma:
- no-cache
RequestId:
- - 1a4c412f-d40f-49c2-9c1f-657aa782db28
+ - 975b5a7d-fb26-4b64-9977-565a09a78339
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2170,16 +2153,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "ea214bd9-415d-4843-9beb-5e850f9645a3", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "6d115027-c55b-46d3-a868-60b47ac46449", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2188,15 +2174,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:29 GMT
+ - Wed, 20 May 2026 09:26:18 GMT
Pragma:
- no-cache
RequestId:
- - 11ac2dc1-a499-413c-937a-ad7868b39842
+ - 194754dd-66ad-426f-8f1a-1a81cedd859e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2222,14 +2208,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ea214bd9-415d-4843-9beb-5e850f9645a3/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/items
response:
body:
- string: '{"value": [{"id": "83f5c4fb-65b3-489f-80e1-d915e28a4775", "type": "MirroredDatabase",
- "displayName": "fabcli000004", "workspaceId":
- "ea214bd9-415d-4843-9beb-5e850f9645a3", "folderId": "4c964959-5e03-42a4-bdbe-188c15d43a99"}]}'
+ string: '{"value": [{"id": "0379bbf5-650f-476c-b3ae-a8286288ea6f", "type": "MirroredDatabase",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "6d115027-c55b-46d3-a868-60b47ac46449",
+ "folderId": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2238,15 +2224,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '214'
+ - '203'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:29 GMT
+ - Wed, 20 May 2026 09:26:18 GMT
Pragma:
- no-cache
RequestId:
- - adbf0870-29eb-48fa-899b-5310e2ecaf71
+ - cd59ab50-cc3a-4087-8454-95b9d69322ad
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2272,13 +2258,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ea214bd9-415d-4843-9beb-5e850f9645a3/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "4c964959-5e03-42a4-bdbe-188c15d43a99", "displayName":
- "fabcli000003", "workspaceId": "ea214bd9-415d-4843-9beb-5e850f9645a3"}]}'
+ string: '{"value": [{"id": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6", "displayName":
+ "fabcli000003", "workspaceId": "6d115027-c55b-46d3-a868-60b47ac46449"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2287,15 +2273,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '140'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:29 GMT
+ - Wed, 20 May 2026 09:26:19 GMT
Pragma:
- no-cache
RequestId:
- - e6142bc8-beac-4142-a817-f5dbb2b53be2
+ - 84388058-74fb-48eb-86ef-330bc3eda649
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2321,13 +2307,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ea214bd9-415d-4843-9beb-5e850f9645a3/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "4c964959-5e03-42a4-bdbe-188c15d43a99", "displayName":
- "fabcli000003", "workspaceId": "ea214bd9-415d-4843-9beb-5e850f9645a3"}]}'
+ string: '{"value": [{"id": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6", "displayName":
+ "fabcli000003", "workspaceId": "6d115027-c55b-46d3-a868-60b47ac46449"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2336,15 +2322,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '140'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:30 GMT
+ - Wed, 20 May 2026 09:26:20 GMT
Pragma:
- no-cache
RequestId:
- - 2b257292-8a4e-4034-ab91-6e63d233f226
+ - 5e8357c4-6d93-4009-a06e-8a7f80000add
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2370,16 +2356,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "ea214bd9-415d-4843-9beb-5e850f9645a3", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "6d115027-c55b-46d3-a868-60b47ac46449", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2388,15 +2377,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:31 GMT
+ - Wed, 20 May 2026 09:26:20 GMT
Pragma:
- no-cache
RequestId:
- - 25bbcc55-3894-4c4a-bf4f-9c3cd7bd1b0f
+ - 9491ff84-1739-4be0-bff8-1b130a62ddb0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2422,13 +2411,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ea214bd9-415d-4843-9beb-5e850f9645a3/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "4c964959-5e03-42a4-bdbe-188c15d43a99", "displayName":
- "fabcli000003", "workspaceId": "ea214bd9-415d-4843-9beb-5e850f9645a3"}]}'
+ string: '{"value": [{"id": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6", "displayName":
+ "fabcli000003", "workspaceId": "6d115027-c55b-46d3-a868-60b47ac46449"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2437,15 +2426,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '140'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:31 GMT
+ - Wed, 20 May 2026 09:26:21 GMT
Pragma:
- no-cache
RequestId:
- - 05e1c922-7fae-41a7-af7e-0ad58c8b7cf1
+ - 6b7ce682-451e-40b4-92ce-828f3fdaad2a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2471,14 +2460,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ea214bd9-415d-4843-9beb-5e850f9645a3/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/items
response:
body:
- string: '{"value": [{"id": "83f5c4fb-65b3-489f-80e1-d915e28a4775", "type": "MirroredDatabase",
- "displayName": "fabcli000004", "workspaceId":
- "ea214bd9-415d-4843-9beb-5e850f9645a3", "folderId": "4c964959-5e03-42a4-bdbe-188c15d43a99"}]}'
+ string: '{"value": [{"id": "0379bbf5-650f-476c-b3ae-a8286288ea6f", "type": "MirroredDatabase",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "6d115027-c55b-46d3-a868-60b47ac46449",
+ "folderId": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2487,15 +2476,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '214'
+ - '203'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:32 GMT
+ - Wed, 20 May 2026 09:26:22 GMT
Pragma:
- no-cache
RequestId:
- - 45e0e01d-c30f-43c3-9051-f81b2d11f623
+ - 5cc4f1fc-aac2-4e35-a82a-a166daac808c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2521,13 +2510,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ea214bd9-415d-4843-9beb-5e850f9645a3/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "4c964959-5e03-42a4-bdbe-188c15d43a99", "displayName":
- "fabcli000003", "workspaceId": "ea214bd9-415d-4843-9beb-5e850f9645a3"}]}'
+ string: '{"value": [{"id": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6", "displayName":
+ "fabcli000003", "workspaceId": "6d115027-c55b-46d3-a868-60b47ac46449"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2536,15 +2525,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '140'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:23:33 GMT
+ - Wed, 20 May 2026 09:26:23 GMT
Pragma:
- no-cache
RequestId:
- - 2f5f1e8f-8e91-49e3-96fe-42c1aa932529
+ - 960fcb20-a367-4809-8c12-77364b24334f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2570,53 +2559,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ea214bd9-415d-4843-9beb-5e850f9645a3/folders?recursive=True
- response:
- body:
- string: '{"requestId": "97b6fcf4-957f-4d4f-bb4d-8b12680de4d1", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 8:24:17 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 08:23:33 GMT
- RequestId:
- - 97b6fcf4-957f-4d4f-bb4d-8b12680de4d1
- Retry-After:
- - '43'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ea214bd9-415d-4843-9beb-5e850f9645a3/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "4c964959-5e03-42a4-bdbe-188c15d43a99", "displayName":
- "fabcli000003", "workspaceId": "ea214bd9-415d-4843-9beb-5e850f9645a3"}]}'
+ string: '{"value": [{"id": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6", "displayName":
+ "fabcli000003", "workspaceId": "6d115027-c55b-46d3-a868-60b47ac46449"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2625,15 +2574,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '140'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:24:20 GMT
+ - Wed, 20 May 2026 09:26:24 GMT
Pragma:
- no-cache
RequestId:
- - 2a093334-3885-4af6-a53a-7d4cf21da526
+ - e1d65202-c691-4be2-a409-6339e49650cf
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2659,16 +2608,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "ea214bd9-415d-4843-9beb-5e850f9645a3", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "6d115027-c55b-46d3-a868-60b47ac46449", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2677,15 +2629,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:24:22 GMT
+ - Wed, 20 May 2026 09:26:25 GMT
Pragma:
- no-cache
RequestId:
- - e9cb8026-c493-4f66-b035-d46238842004
+ - 0007b8ef-538e-4854-bfa1-661e30292ad8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2711,13 +2663,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ea214bd9-415d-4843-9beb-5e850f9645a3/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "4c964959-5e03-42a4-bdbe-188c15d43a99", "displayName":
- "fabcli000003", "workspaceId": "ea214bd9-415d-4843-9beb-5e850f9645a3"}]}'
+ string: '{"value": [{"id": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6", "displayName":
+ "fabcli000003", "workspaceId": "6d115027-c55b-46d3-a868-60b47ac46449"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2726,15 +2678,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '140'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:24:22 GMT
+ - Wed, 20 May 2026 09:26:26 GMT
Pragma:
- no-cache
RequestId:
- - 8253a573-4fb6-4c49-aeb6-607ec9524a5b
+ - a4fec9c2-2add-4d46-8091-1866187dccf1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2760,16 +2712,16 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ea214bd9-415d-4843-9beb-5e850f9645a3/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/items
response:
body:
- string: '{"value": [{"id": "29e06968-00e2-4949-a1da-cb6addf6f658", "type": "SQLEndpoint",
- "displayName": "fabcli000004", "description": "", "workspaceId": "ea214bd9-415d-4843-9beb-5e850f9645a3",
- "folderId": "4c964959-5e03-42a4-bdbe-188c15d43a99"}, {"id": "83f5c4fb-65b3-489f-80e1-d915e28a4775",
- "type": "MirroredDatabase", "displayName": "fabcli000004", "workspaceId": "ea214bd9-415d-4843-9beb-5e850f9645a3", "folderId":
- "4c964959-5e03-42a4-bdbe-188c15d43a99"}]}'
+ string: '{"value": [{"id": "ab9d61e9-1349-4c72-a0ac-0ed2216b3e9e", "type": "SQLEndpoint",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "6d115027-c55b-46d3-a868-60b47ac46449",
+ "folderId": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6"}, {"id": "0379bbf5-650f-476c-b3ae-a8286288ea6f",
+ "type": "MirroredDatabase", "displayName": "fabcli000004", "description":
+ "", "workspaceId": "6d115027-c55b-46d3-a868-60b47ac46449", "folderId": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2778,15 +2730,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '260'
+ - '247'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:24:23 GMT
+ - Wed, 20 May 2026 09:26:27 GMT
Pragma:
- no-cache
RequestId:
- - b0d71b5c-a024-4d63-9d80-5fbe4226ed03
+ - c4dc0c3b-d271-41e0-9ea3-4657f8968dfa
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2812,13 +2764,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ea214bd9-415d-4843-9beb-5e850f9645a3/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "4c964959-5e03-42a4-bdbe-188c15d43a99", "displayName":
- "fabcli000003", "workspaceId": "ea214bd9-415d-4843-9beb-5e850f9645a3"}]}'
+ string: '{"value": [{"id": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6", "displayName":
+ "fabcli000003", "workspaceId": "6d115027-c55b-46d3-a868-60b47ac46449"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2827,15 +2779,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '140'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:24:24 GMT
+ - Wed, 20 May 2026 09:26:27 GMT
Pragma:
- no-cache
RequestId:
- - 6008fe6d-502d-4cb0-b0fa-809538876b3a
+ - 92c69cdc-b8b8-4f77-9695-334e8a4d53f7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2861,13 +2813,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ea214bd9-415d-4843-9beb-5e850f9645a3/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "4c964959-5e03-42a4-bdbe-188c15d43a99", "displayName":
- "fabcli000003", "workspaceId": "ea214bd9-415d-4843-9beb-5e850f9645a3"}]}'
+ string: '{"value": [{"id": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6", "displayName":
+ "fabcli000003", "workspaceId": "6d115027-c55b-46d3-a868-60b47ac46449"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2876,15 +2828,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '140'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:24:25 GMT
+ - Wed, 20 May 2026 09:26:28 GMT
Pragma:
- no-cache
RequestId:
- - c46ac5fb-f651-4836-a6f7-1e5048ba49b8
+ - d9dace79-460d-44ac-b573-b73d670722a9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2912,9 +2864,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/ea214bd9-415d-4843-9beb-5e850f9645a3/items/83f5c4fb-65b3-489f-80e1-d915e28a4775
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/items/0379bbf5-650f-476c-b3ae-a8286288ea6f
response:
body:
string: ''
@@ -2930,11 +2882,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:24:25 GMT
+ - Wed, 20 May 2026 09:26:29 GMT
Pragma:
- no-cache
RequestId:
- - fb038b95-c00b-44c2-9f57-55eb0ead5079
+ - 7fe973c5-209b-4b39-96f2-df8b5fd8a5ed
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2960,16 +2912,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "ea214bd9-415d-4843-9beb-5e850f9645a3", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "6d115027-c55b-46d3-a868-60b47ac46449", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2978,15 +2933,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:24:27 GMT
+ - Wed, 20 May 2026 09:26:30 GMT
Pragma:
- no-cache
RequestId:
- - 46a290a9-501d-4f06-bb10-faec79b2681c
+ - be584196-2564-487f-9937-fea79d67f1e7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3012,13 +2967,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ea214bd9-415d-4843-9beb-5e850f9645a3/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "4c964959-5e03-42a4-bdbe-188c15d43a99", "displayName":
- "fabcli000003", "workspaceId": "ea214bd9-415d-4843-9beb-5e850f9645a3"}]}'
+ string: '{"value": [{"id": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6", "displayName":
+ "fabcli000003", "workspaceId": "6d115027-c55b-46d3-a868-60b47ac46449"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3027,15 +2982,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '140'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:24:27 GMT
+ - Wed, 20 May 2026 09:26:30 GMT
Pragma:
- no-cache
RequestId:
- - 0a51acbb-2f21-4090-903e-ac498b6c421f
+ - e47ec42a-9ec8-42bf-b1b5-439342630a68
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3063,9 +3018,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/ea214bd9-415d-4843-9beb-5e850f9645a3/folders/4c964959-5e03-42a4-bdbe-188c15d43a99
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/folders/d111f271-86a1-4d81-bdf6-d8da34d5d0e6
response:
body:
string: ''
@@ -3081,11 +3036,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:24:28 GMT
+ - Wed, 20 May 2026 09:26:32 GMT
Pragma:
- no-cache
RequestId:
- - d5794667-c6bb-4596-8d45-1383132d8963
+ - 007869fc-14db-4bb2-a90c-4a59239110f0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3111,16 +3066,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "ea214bd9-415d-4843-9beb-5e850f9645a3", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "6d115027-c55b-46d3-a868-60b47ac46449", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3129,15 +3087,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:24:29 GMT
+ - Wed, 20 May 2026 09:26:33 GMT
Pragma:
- no-cache
RequestId:
- - c839834c-f5f9-4fd0-8cdb-d9b6605f614c
+ - 26a0fa29-92bc-4591-924f-744a7e1fdaef
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3163,13 +3121,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "dbed2ee2-5dc2-4037-867c-9d29b6287340", "displayName":
- "fabcli000003", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf"}]}'
+ string: '{"value": [{"id": "7e6f5658-f52d-460f-9fd5-38080907c930", "displayName":
+ "fabcli000003", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3182,11 +3140,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:24:30 GMT
+ - Wed, 20 May 2026 09:26:34 GMT
Pragma:
- no-cache
RequestId:
- - 5f2cd5b5-2191-4342-9951-f8dd4d15ea7c
+ - e8577693-bae6-41f2-9eda-47aa50a023d6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3212,16 +3170,16 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/items
response:
body:
- string: '{"value": [{"id": "d1815453-76e7-46c8-8af7-ea2f00255805", "type": "SQLEndpoint",
- "displayName": "fabcli000004", "description": "", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf",
- "folderId": "dbed2ee2-5dc2-4037-867c-9d29b6287340"}, {"id": "e647cfcf-363f-4a80-9616-e145b698b150",
- "type": "MirroredDatabase", "displayName": "fabcli000004", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "folderId":
- "dbed2ee2-5dc2-4037-867c-9d29b6287340"}]}'
+ string: '{"value": [{"id": "520bb395-0398-482c-812d-b5fa14c01e7b", "type": "SQLEndpoint",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b",
+ "folderId": "7e6f5658-f52d-460f-9fd5-38080907c930"}, {"id": "bc01466e-cf5a-4149-b878-a4e8337cf2bd",
+ "type": "MirroredDatabase", "displayName": "fabcli000004", "description":
+ "", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "folderId": "7e6f5658-f52d-460f-9fd5-38080907c930"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3230,15 +3188,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '260'
+ - '248'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:24:31 GMT
+ - Wed, 20 May 2026 09:26:35 GMT
Pragma:
- no-cache
RequestId:
- - 043003ed-be87-4ca9-b4e6-21ce1c63469d
+ - 59c1bda6-b51b-492d-8d12-68993055cace
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3264,13 +3222,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "dbed2ee2-5dc2-4037-867c-9d29b6287340", "displayName":
- "fabcli000003", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf"}]}'
+ string: '{"value": [{"id": "7e6f5658-f52d-460f-9fd5-38080907c930", "displayName":
+ "fabcli000003", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3283,11 +3241,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:24:32 GMT
+ - Wed, 20 May 2026 09:26:36 GMT
Pragma:
- no-cache
RequestId:
- - d6bfa36a-1011-42f0-b267-7d8b1cf260b4
+ - 2ebdbac1-e56c-4410-aa1b-9fbb12865cde
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3313,13 +3271,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "dbed2ee2-5dc2-4037-867c-9d29b6287340", "displayName":
- "fabcli000003", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf"}]}'
+ string: '{"value": [{"id": "7e6f5658-f52d-460f-9fd5-38080907c930", "displayName":
+ "fabcli000003", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3332,11 +3290,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:24:33 GMT
+ - Wed, 20 May 2026 09:26:36 GMT
Pragma:
- no-cache
RequestId:
- - 7963282e-92bd-4fb5-be78-79dee99ce0bd
+ - 1a05c0cc-50c8-4dd4-a710-ccee4fe862f9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3364,9 +3322,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/items/e647cfcf-363f-4a80-9616-e145b698b150
+ uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/items/bc01466e-cf5a-4149-b878-a4e8337cf2bd
response:
body:
string: ''
@@ -3382,11 +3340,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:24:33 GMT
+ - Wed, 20 May 2026 09:26:38 GMT
Pragma:
- no-cache
RequestId:
- - 858fc90e-4307-484e-a4b5-17a1d71e1761
+ - 3074986b-9879-4234-908b-2f7ceeda8a87
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3412,16 +3370,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "ea214bd9-415d-4843-9beb-5e850f9645a3", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "6d115027-c55b-46d3-a868-60b47ac46449", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3430,15 +3391,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:24:34 GMT
+ - Wed, 20 May 2026 09:26:38 GMT
Pragma:
- no-cache
RequestId:
- - 06feb392-7579-46ff-8e5d-e047856af679
+ - c3150613-96f6-4041-8bea-50512e161b3b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3464,13 +3425,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "dbed2ee2-5dc2-4037-867c-9d29b6287340", "displayName":
- "fabcli000003", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf"}]}'
+ string: '{"value": [{"id": "7e6f5658-f52d-460f-9fd5-38080907c930", "displayName":
+ "fabcli000003", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3483,11 +3444,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:24:35 GMT
+ - Wed, 20 May 2026 09:26:39 GMT
Pragma:
- no-cache
RequestId:
- - 9b0a6f2f-4c14-4677-9a4b-f478cef325fe
+ - dcbaaaab-62ac-4e41-a7a4-855b4fe1d259
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3515,9 +3476,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders/dbed2ee2-5dc2-4037-867c-9d29b6287340
+ uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders/7e6f5658-f52d-460f-9fd5-38080907c930
response:
body:
string: ''
@@ -3533,11 +3494,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:24:36 GMT
+ - Wed, 20 May 2026 09:26:40 GMT
Pragma:
- no-cache
RequestId:
- - 6e989c6a-cf44-4cfa-bb2b-68e00e5b3cf6
+ - eae0cdd3-7d4c-4109-8e98-2d4f03a04975
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3563,16 +3524,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "ea214bd9-415d-4843-9beb-5e850f9645a3", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "6d115027-c55b-46d3-a868-60b47ac46449", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3581,15 +3545,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:24:37 GMT
+ - Wed, 20 May 2026 09:26:40 GMT
Pragma:
- no-cache
RequestId:
- - b9a90fc7-3e4b-44a8-b35c-6531456fc22e
+ - 3fbf0ec0-3960-40b1-b3c0-3f1c8d87951c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3615,9 +3579,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/items
response:
body:
string: '{"value": []}'
@@ -3633,11 +3597,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:24:37 GMT
+ - Wed, 20 May 2026 09:26:41 GMT
Pragma:
- no-cache
RequestId:
- - 7a25ebd8-40eb-4390-b64f-98447abf4e34
+ - 20d2cdbf-241c-4804-98b0-06be1350bd73
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3665,9 +3629,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf
+ uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b
response:
body:
string: ''
@@ -3683,11 +3647,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:24:38 GMT
+ - Wed, 20 May 2026 09:26:41 GMT
Pragma:
- no-cache
RequestId:
- - 1cdc15ed-08f8-4dc2-9cf5-88f62bce2cd8
+ - 918ed1df-d905-4018-b652-515e9621cd43
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3713,15 +3677,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "ea214bd9-415d-4843-9beb-5e850f9645a3", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "6d115027-c55b-46d3-a868-60b47ac46449", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3730,15 +3696,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2843'
+ - '2659'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:24:40 GMT
+ - Wed, 20 May 2026 09:26:42 GMT
Pragma:
- no-cache
RequestId:
- - 69514b42-6fc9-465c-9429-22ced029f8dd
+ - 8d79d397-decc-40bc-8a3a-6c1f9af0ddab
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3764,9 +3730,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ea214bd9-415d-4843-9beb-5e850f9645a3/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/items
response:
body:
string: '{"value": []}'
@@ -3782,11 +3748,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:24:40 GMT
+ - Wed, 20 May 2026 09:26:43 GMT
Pragma:
- no-cache
RequestId:
- - e2a70933-f2c4-41cd-b692-12269414ab85
+ - 1500649d-828a-44af-9c18-74c3581121f5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3814,9 +3780,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/ea214bd9-415d-4843-9beb-5e850f9645a3
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449
response:
body:
string: ''
@@ -3832,11 +3798,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:24:41 GMT
+ - Wed, 20 May 2026 09:26:43 GMT
Pragma:
- no-cache
RequestId:
- - 389f0abb-0c21-4791-bda8-5193def30ab1
+ - d4a1613f-94d2-45d8-bfb3-4159369f7856
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[Notebook].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[Notebook].yaml
index 2b6291f35..c1b450970 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[Notebook].yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[Notebook].yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:24:42 GMT
+ - Wed, 20 May 2026 09:26:44 GMT
Pragma:
- no-cache
RequestId:
- - 5af01cf5-75b0-4639-a304-b91b26c57cae
+ - f8beed12-d284-4ed1-bd0f-4876e1aa44de
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,14 +62,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -77,15 +79,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:24:43 GMT
+ - Wed, 20 May 2026 09:26:45 GMT
Pragma:
- no-cache
RequestId:
- - 42cdb5e7-beec-4aef-9830-8df1a1390fd0
+ - 2098235c-0817-4e13-a35a-5bf034d42a77
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -111,7 +113,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -127,15 +129,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '425'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:24:48 GMT
+ - Wed, 20 May 2026 09:26:49 GMT
Pragma:
- no-cache
RequestId:
- - 01a49bd0-235e-4226-982c-c95736b015e4
+ - 778d4e98-80bc-414c-90b6-00795915c3dc
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -150,8 +152,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000001", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -160,16 +161,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "30763b40-c9c2-4527-9246-d12086f5b498", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "4c7e078a-3cf2-4050-a492-764540e98859", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -178,17 +180,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '155'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:25:03 GMT
+ - Wed, 20 May 2026 09:26:56 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498
+ - https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859
Pragma:
- no-cache
RequestId:
- - 64b5c0fb-cb4c-4554-afd9-854a065ff73e
+ - e5f22673-5571-4dcb-86bf-23747f298494
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -214,15 +216,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "30763b40-c9c2-4527-9246-d12086f5b498", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4c7e078a-3cf2-4050-a492-764540e98859", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -231,15 +235,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2842'
+ - '2657'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:25:04 GMT
+ - Wed, 20 May 2026 09:26:56 GMT
Pragma:
- no-cache
RequestId:
- - 88119ee4-30d9-4556-a487-4d638c4d3542
+ - e585994d-bc7f-43bf-a119-fad8a0d28254
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -265,15 +269,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "30763b40-c9c2-4527-9246-d12086f5b498", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4c7e078a-3cf2-4050-a492-764540e98859", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -282,15 +288,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2842'
+ - '2657'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:25:05 GMT
+ - Wed, 20 May 2026 09:26:57 GMT
Pragma:
- no-cache
RequestId:
- - 29433bd1-c32c-4ce9-9dc8-3fc0275524ed
+ - 284a004c-9c59-4cdd-b2fa-8f2db89dc915
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -316,7 +322,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -332,15 +338,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '424'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:25:10 GMT
+ - Wed, 20 May 2026 09:27:02 GMT
Pragma:
- no-cache
RequestId:
- - 63a46024-f771-48c2-a2a2-0d55da684145
+ - 791abd9f-3787-4261-8fd4-033ff16f020a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -355,8 +361,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000002", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -365,16 +370,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "9b487033-0f4a-44f8-84e7-544d239144e0", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -383,17 +389,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '154'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:25:18 GMT
+ - Wed, 20 May 2026 09:27:10 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/5d9e9502-f2b7-49f2-8ddc-f8381d07b760
+ - https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0
Pragma:
- no-cache
RequestId:
- - 5ec21bcd-8ab2-48e0-96d5-26b2ef4a778c
+ - 6b77dd29-a6fa-42a7-8508-d4e1402d2c3b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -419,16 +425,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "30763b40-c9c2-4527-9246-d12086f5b498", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4c7e078a-3cf2-4050-a492-764540e98859", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9b487033-0f4a-44f8-84e7-544d239144e0", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -437,15 +446,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2884'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:25:18 GMT
+ - Wed, 20 May 2026 09:27:10 GMT
Pragma:
- no-cache
RequestId:
- - 299db34e-0ce0-4c6f-b3e9-76358a1b8732
+ - 47ff9524-e5d1-48c6-8856-c22ac60f2dfd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -471,9 +480,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -489,11 +498,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:25:20 GMT
+ - Wed, 20 May 2026 09:27:12 GMT
Pragma:
- no-cache
RequestId:
- - 51ef95c8-9512-4669-859c-5fecc964a4d8
+ - 3e9ba0de-ae9f-4660-a44a-9c03f72ece80
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -519,9 +528,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -537,11 +546,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:25:20 GMT
+ - Wed, 20 May 2026 09:27:12 GMT
Pragma:
- no-cache
RequestId:
- - 14260bc3-3dcc-4ce1-9979-4ae5c4e78990
+ - bbed569c-af8f-4654-a529-e5f070d866c4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -565,17 +574,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/folders
response:
body:
- string: '{"id": "40291a18-8b1f-4762-a94e-1f35b90a4a90", "displayName": "fabcli000003",
- "workspaceId": "30763b40-c9c2-4527-9246-d12086f5b498"}'
+ string: '{"id": "c9a6b4ff-d63e-4e8b-b134-0199fa480293", "displayName": "fabcli000003",
+ "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -584,17 +593,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '132'
+ - '133'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:25:21 GMT
+ - Wed, 20 May 2026 09:27:14 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498/folders/40291a18-8b1f-4762-a94e-1f35b90a4a90
+ - https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/folders/c9a6b4ff-d63e-4e8b-b134-0199fa480293
Pragma:
- no-cache
RequestId:
- - 607935b2-ef91-465d-8684-4d178b7e8d6e
+ - c64008ac-771f-415b-8a4a-bb943e46554c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -620,16 +629,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "30763b40-c9c2-4527-9246-d12086f5b498", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4c7e078a-3cf2-4050-a492-764540e98859", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9b487033-0f4a-44f8-84e7-544d239144e0", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -638,15 +650,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2884'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:25:22 GMT
+ - Wed, 20 May 2026 09:27:15 GMT
Pragma:
- no-cache
RequestId:
- - d34fc1f6-3a6a-4297-bd21-96a3b506989f
+ - 5d30d157-9261-468f-baa5-ab24730d9c54
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -672,13 +684,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "40291a18-8b1f-4762-a94e-1f35b90a4a90", "displayName":
- "fabcli000003", "workspaceId": "30763b40-c9c2-4527-9246-d12086f5b498"}]}'
+ string: '{"value": [{"id": "c9a6b4ff-d63e-4e8b-b134-0199fa480293", "displayName":
+ "fabcli000003", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -687,15 +699,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '142'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:25:22 GMT
+ - Wed, 20 May 2026 09:27:15 GMT
Pragma:
- no-cache
RequestId:
- - 07e9a09b-ce57-457c-8fca-98eebc5b8d58
+ - 2bcbcc88-217c-404e-b4c2-b2422af9d2b1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -721,9 +733,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/items
response:
body:
string: '{"value": []}'
@@ -739,11 +751,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:25:23 GMT
+ - Wed, 20 May 2026 09:27:16 GMT
Pragma:
- no-cache
RequestId:
- - ec42160a-c29f-4d51-b891-bf399f54f3e5
+ - c441d9f6-7f1a-43c2-bf55-bf26b14382ce
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -769,9 +781,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/items
response:
body:
string: '{"value": []}'
@@ -787,11 +799,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:25:24 GMT
+ - Wed, 20 May 2026 09:27:17 GMT
Pragma:
- no-cache
RequestId:
- - d82fa014-239c-4512-985c-0a645008ee8c
+ - a3af13e0-d084-4c7a-87c7-9591425da8d9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -806,9 +818,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000004", "type":
- "Notebook", "folderId": "40291a18-8b1f-4762-a94e-1f35b90a4a90", "definition":
- {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
+ body: '{"displayName": "fabcli000004", "type": "Notebook", "folderId": "c9a6b4ff-d63e-4e8b-b134-0199fa480293",
+ "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
"payloadType": "InlineBase64"}]}}'
headers:
Accept:
@@ -818,13 +829,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '798'
+ - '765'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498/notebooks
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/notebooks
response:
body:
string: 'null'
@@ -840,15 +851,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:25:25 GMT
+ - Wed, 20 May 2026 09:27:19 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/068dc9d6-255c-4014-817d-6d3bcae0dbdf
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dd9c4e7a-562e-4695-8b91-3035e30e29a7
Pragma:
- no-cache
RequestId:
- - a3643cc3-f1d5-421a-b58d-8520d895ab3f
+ - 8360074c-c0b5-4228-ae18-5dda6fc83b0b
Retry-After:
- '20'
Strict-Transport-Security:
@@ -862,7 +873,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - 068dc9d6-255c-4014-817d-6d3bcae0dbdf
+ - dd9c4e7a-562e-4695-8b91-3035e30e29a7
status:
code: 202
message: Accepted
@@ -878,13 +889,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/068dc9d6-255c-4014-817d-6d3bcae0dbdf
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dd9c4e7a-562e-4695-8b91-3035e30e29a7
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:25:25.9069726",
- "lastUpdatedTimeUtc": "2026-02-06T08:25:27.3450818", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:27:19.2590561",
+ "lastUpdatedTimeUtc": "2026-05-20T09:27:20.8084774", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -894,17 +905,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '130'
+ - '131'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:25:47 GMT
+ - Wed, 20 May 2026 09:27:40 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/068dc9d6-255c-4014-817d-6d3bcae0dbdf/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dd9c4e7a-562e-4695-8b91-3035e30e29a7/result
Pragma:
- no-cache
RequestId:
- - 356d19f7-35a5-4ddf-8058-dc69d192f943
+ - 55dc064c-6054-4bd5-a87f-6fca195c640a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -912,7 +923,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - 068dc9d6-255c-4014-817d-6d3bcae0dbdf
+ - dd9c4e7a-562e-4695-8b91-3035e30e29a7
status:
code: 200
message: OK
@@ -928,14 +939,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/068dc9d6-255c-4014-817d-6d3bcae0dbdf/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dd9c4e7a-562e-4695-8b91-3035e30e29a7/result
response:
body:
- string: '{"id": "5c04201e-d9f3-49d1-9e6c-5f875c4835fd", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "30763b40-c9c2-4527-9246-d12086f5b498", "folderId": "40291a18-8b1f-4762-a94e-1f35b90a4a90"}'
+ string: '{"id": "41d7452c-a396-4408-8a4d-30ecc3c84d7b", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859",
+ "folderId": "c9a6b4ff-d63e-4e8b-b134-0199fa480293"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -946,11 +957,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 08:25:49 GMT
+ - Wed, 20 May 2026 09:27:41 GMT
Pragma:
- no-cache
RequestId:
- - 11f38018-3f37-49de-8517-958477563451
+ - 830fc5da-5c6d-4c54-8458-9f4e9c084bf7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -974,16 +985,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "30763b40-c9c2-4527-9246-d12086f5b498", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4c7e078a-3cf2-4050-a492-764540e98859", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9b487033-0f4a-44f8-84e7-544d239144e0", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -992,15 +1006,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2884'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:25:49 GMT
+ - Wed, 20 May 2026 09:27:42 GMT
Pragma:
- no-cache
RequestId:
- - ef2d00b0-b603-4065-8d4f-c2c890a4108a
+ - 488ef733-44fa-447b-85a8-7b1636eb0a7d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1026,13 +1040,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "40291a18-8b1f-4762-a94e-1f35b90a4a90", "displayName":
- "fabcli000003", "workspaceId": "30763b40-c9c2-4527-9246-d12086f5b498"}]}'
+ string: '{"value": [{"id": "c9a6b4ff-d63e-4e8b-b134-0199fa480293", "displayName":
+ "fabcli000003", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1041,15 +1055,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '142'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:25:50 GMT
+ - Wed, 20 May 2026 09:27:42 GMT
Pragma:
- no-cache
RequestId:
- - 58a98234-4bc2-494d-b591-1574cbc2ca5f
+ - 478b19ed-6cb9-456f-9d26-c49360f0e95d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1075,16 +1089,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "30763b40-c9c2-4527-9246-d12086f5b498", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4c7e078a-3cf2-4050-a492-764540e98859", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9b487033-0f4a-44f8-84e7-544d239144e0", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1093,15 +1110,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2884'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:25:50 GMT
+ - Wed, 20 May 2026 09:27:43 GMT
Pragma:
- no-cache
RequestId:
- - ca99c4e1-de86-485d-a163-06a7ef613f03
+ - 86cb04c6-fb44-499f-99ee-4a70a05fe510
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1127,16 +1144,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "30763b40-c9c2-4527-9246-d12086f5b498", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4c7e078a-3cf2-4050-a492-764540e98859", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9b487033-0f4a-44f8-84e7-544d239144e0", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1145,15 +1165,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2884'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:25:51 GMT
+ - Wed, 20 May 2026 09:27:44 GMT
Pragma:
- no-cache
RequestId:
- - 501ca900-03bf-4eeb-a287-94f916cd6ab5
+ - a22d1d57-75e0-4939-9755-dd020a553264
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1179,9 +1199,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -1197,11 +1217,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:25:52 GMT
+ - Wed, 20 May 2026 09:27:45 GMT
Pragma:
- no-cache
RequestId:
- - fddf19d3-a6c2-4ea5-9100-bea08bf2ed7c
+ - 401c0658-dd31-4605-ac1f-ccd8571e71c8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1227,9 +1247,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -1245,11 +1265,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:25:53 GMT
+ - Wed, 20 May 2026 09:27:45 GMT
Pragma:
- no-cache
RequestId:
- - e71e7db1-f0cf-4636-b4c3-037f48c4e140
+ - f2420e27-e5e5-4f06-8bcd-1ef39e8c84e6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1273,17 +1293,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/folders
response:
body:
- string: '{"id": "a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea", "displayName": "fabcli000003",
- "workspaceId": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760"}'
+ string: '{"id": "d540e388-260c-40a3-9d40-2072de174d8b", "displayName": "fabcli000003",
+ "workspaceId": "9b487033-0f4a-44f8-84e7-544d239144e0"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -1292,17 +1312,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '131'
+ - '132'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:25:54 GMT
+ - Wed, 20 May 2026 09:27:46 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/folders/a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea
+ - https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/folders/d540e388-260c-40a3-9d40-2072de174d8b
Pragma:
- no-cache
RequestId:
- - 0966dde0-c977-491f-836f-d2fd74e0c7af
+ - 7d05e26d-992d-4ec4-926e-e1bb1f86675a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1328,14 +1348,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/items
response:
body:
- string: '{"value": [{"id": "5c04201e-d9f3-49d1-9e6c-5f875c4835fd", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "30763b40-c9c2-4527-9246-d12086f5b498", "folderId": "40291a18-8b1f-4762-a94e-1f35b90a4a90"}]}'
+ string: '{"value": [{"id": "41d7452c-a396-4408-8a4d-30ecc3c84d7b", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859",
+ "folderId": "c9a6b4ff-d63e-4e8b-b134-0199fa480293"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1344,15 +1364,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '209'
+ - '196'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:25:54 GMT
+ - Wed, 20 May 2026 09:27:47 GMT
Pragma:
- no-cache
RequestId:
- - 9adb8f6c-3d2e-4b7a-bffc-5b80aa8939c9
+ - 048e8e69-66cb-413e-af58-138a28cb8b26
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1378,13 +1398,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "40291a18-8b1f-4762-a94e-1f35b90a4a90", "displayName":
- "fabcli000003", "workspaceId": "30763b40-c9c2-4527-9246-d12086f5b498"}]}'
+ string: '{"value": [{"id": "c9a6b4ff-d63e-4e8b-b134-0199fa480293", "displayName":
+ "fabcli000003", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1393,15 +1413,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '142'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:25:55 GMT
+ - Wed, 20 May 2026 09:27:48 GMT
Pragma:
- no-cache
RequestId:
- - 467863e5-b0bd-4272-83bb-9e7169a6afe7
+ - 0d844c7c-8b4d-40c1-8325-edc683d95905
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1427,13 +1447,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "40291a18-8b1f-4762-a94e-1f35b90a4a90", "displayName":
- "fabcli000003", "workspaceId": "30763b40-c9c2-4527-9246-d12086f5b498"}]}'
+ string: '{"value": [{"id": "c9a6b4ff-d63e-4e8b-b134-0199fa480293", "displayName":
+ "fabcli000003", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1442,15 +1462,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '142'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:25:56 GMT
+ - Wed, 20 May 2026 09:27:49 GMT
Pragma:
- no-cache
RequestId:
- - ca1b1396-6625-45a1-9b14-deed5478dd9a
+ - 269481e6-ba34-4088-8aa0-173d8d8dff98
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1476,14 +1496,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/items
response:
body:
- string: '{"value": [{"id": "5c04201e-d9f3-49d1-9e6c-5f875c4835fd", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "30763b40-c9c2-4527-9246-d12086f5b498", "folderId": "40291a18-8b1f-4762-a94e-1f35b90a4a90"}]}'
+ string: '{"value": [{"id": "41d7452c-a396-4408-8a4d-30ecc3c84d7b", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859",
+ "folderId": "c9a6b4ff-d63e-4e8b-b134-0199fa480293"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1492,15 +1512,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '209'
+ - '196'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:25:57 GMT
+ - Wed, 20 May 2026 09:27:49 GMT
Pragma:
- no-cache
RequestId:
- - cb802104-950c-43b5-be48-2b40222c68ca
+ - 93269ab5-1e61-4122-9455-de75d75853fa
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1526,13 +1546,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "40291a18-8b1f-4762-a94e-1f35b90a4a90", "displayName":
- "fabcli000003", "workspaceId": "30763b40-c9c2-4527-9246-d12086f5b498"}]}'
+ string: '{"value": [{"id": "c9a6b4ff-d63e-4e8b-b134-0199fa480293", "displayName":
+ "fabcli000003", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1541,15 +1561,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '142'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:25:57 GMT
+ - Wed, 20 May 2026 09:27:50 GMT
Pragma:
- no-cache
RequestId:
- - b2a06033-5284-400f-aa81-f406d34850d5
+ - 75071a74-cecc-4b04-9d34-39ae42e2accd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1575,13 +1595,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "40291a18-8b1f-4762-a94e-1f35b90a4a90", "displayName":
- "fabcli000003", "workspaceId": "30763b40-c9c2-4527-9246-d12086f5b498"}]}'
+ string: '{"value": [{"id": "c9a6b4ff-d63e-4e8b-b134-0199fa480293", "displayName":
+ "fabcli000003", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1590,15 +1610,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '142'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:25:58 GMT
+ - Wed, 20 May 2026 09:27:51 GMT
Pragma:
- no-cache
RequestId:
- - 20aca092-22eb-40cf-9be6-b09e994c7836
+ - 75ca5fc3-5fed-42ec-ab52-1c2528b54c08
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1624,16 +1644,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "30763b40-c9c2-4527-9246-d12086f5b498", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4c7e078a-3cf2-4050-a492-764540e98859", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9b487033-0f4a-44f8-84e7-544d239144e0", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1642,15 +1665,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2884'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:26:00 GMT
+ - Wed, 20 May 2026 09:27:52 GMT
Pragma:
- no-cache
RequestId:
- - 8beea879-1433-4d05-9084-da3f7b9fe286
+ - f568e8f2-3dd4-44d5-865b-0ef262956265
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1676,13 +1699,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea", "displayName":
- "fabcli000003", "workspaceId": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760"}]}'
+ string: '{"value": [{"id": "d540e388-260c-40a3-9d40-2072de174d8b", "displayName":
+ "fabcli000003", "workspaceId": "9b487033-0f4a-44f8-84e7-544d239144e0"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1695,11 +1718,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:26:00 GMT
+ - Wed, 20 May 2026 09:27:52 GMT
Pragma:
- no-cache
RequestId:
- - cd2c78cd-81d6-4c6b-8438-b9ba4b3c42cd
+ - 4b1fbab1-63d7-4731-8d00-6440363c734f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1725,9 +1748,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/items
response:
body:
string: '{"value": []}'
@@ -1743,11 +1766,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:26:01 GMT
+ - Wed, 20 May 2026 09:27:53 GMT
Pragma:
- no-cache
RequestId:
- - c1ea45c1-0acc-49f3-850e-532684932612
+ - 767970db-2e0c-4796-9401-98989ec68d31
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1773,9 +1796,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/items
response:
body:
string: '{"value": []}'
@@ -1791,11 +1814,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:26:02 GMT
+ - Wed, 20 May 2026 09:27:54 GMT
Pragma:
- no-cache
RequestId:
- - b1a7b783-c241-45fc-8060-989d2e17eb61
+ - b128ee5f-8b5c-4811-a4ec-669e8f1310b4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1821,9 +1844,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/items
response:
body:
string: '{"value": []}'
@@ -1839,11 +1862,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:26:03 GMT
+ - Wed, 20 May 2026 09:27:55 GMT
Pragma:
- no-cache
RequestId:
- - 31c28fda-3f59-4bf5-ad10-a3cb3aa3f9df
+ - a4c64b99-08f6-4c7a-b75a-e552ad40c9e3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1869,14 +1892,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498/items/5c04201e-d9f3-49d1-9e6c-5f875c4835fd
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/items/41d7452c-a396-4408-8a4d-30ecc3c84d7b
response:
body:
- string: '{"id": "5c04201e-d9f3-49d1-9e6c-5f875c4835fd", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "30763b40-c9c2-4527-9246-d12086f5b498", "folderId": "40291a18-8b1f-4762-a94e-1f35b90a4a90"}'
+ string: '{"id": "41d7452c-a396-4408-8a4d-30ecc3c84d7b", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859",
+ "folderId": "c9a6b4ff-d63e-4e8b-b134-0199fa480293"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1885,17 +1908,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '197'
+ - '182'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:26:04 GMT
+ - Wed, 20 May 2026 09:27:56 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 10c7b30e-e9d2-4f30-942e-7ba8d1b9cf87
+ - 22b1dcc8-8e03-4228-bddc-cc139e6920b5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1923,9 +1946,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498/items/5c04201e-d9f3-49d1-9e6c-5f875c4835fd/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/items/41d7452c-a396-4408-8a4d-30ecc3c84d7b/getDefinition
response:
body:
string: 'null'
@@ -1941,13 +1964,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:26:05 GMT
+ - Wed, 20 May 2026 09:27:57 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/319283ea-0a3e-44ca-9a21-33639e9333bc
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6d5bb8ba-16cd-4b46-9bfa-f66886c1fb71
Pragma:
- no-cache
RequestId:
- - f53082fb-1e6b-4667-b194-f2e847cb2aba
+ - 14d86a9c-c9b5-426e-96e9-03ff6e601607
Retry-After:
- '20'
Strict-Transport-Security:
@@ -1961,7 +1984,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - 319283ea-0a3e-44ca-9a21-33639e9333bc
+ - 6d5bb8ba-16cd-4b46-9bfa-f66886c1fb71
status:
code: 202
message: Accepted
@@ -1977,13 +2000,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/319283ea-0a3e-44ca-9a21-33639e9333bc
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6d5bb8ba-16cd-4b46-9bfa-f66886c1fb71
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:26:05.33643",
- "lastUpdatedTimeUtc": "2026-02-06T08:26:05.6645579", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:27:57.6085143",
+ "lastUpdatedTimeUtc": "2026-05-20T09:27:58.3038009", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -1993,17 +2016,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '128'
+ - '131'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:26:26 GMT
+ - Wed, 20 May 2026 09:28:18 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/319283ea-0a3e-44ca-9a21-33639e9333bc/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6d5bb8ba-16cd-4b46-9bfa-f66886c1fb71/result
Pragma:
- no-cache
RequestId:
- - c8c4fae5-4546-4e6c-9ddd-1488586f4ca7
+ - 9ea048e9-dc6a-42af-8aee-5949fdf5b1ea
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2011,7 +2034,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - 319283ea-0a3e-44ca-9a21-33639e9333bc
+ - 6d5bb8ba-16cd-4b46-9bfa-f66886c1fb71
status:
code: 200
message: OK
@@ -2027,14 +2050,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/319283ea-0a3e-44ca-9a21-33639e9333bc/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6d5bb8ba-16cd-4b46-9bfa-f66886c1fb71/result
response:
body:
string: '{"definition": {"parts": [{"path": "notebook-content.py", "payload":
"IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
"payloadType": "InlineBase64"}]}}'
headers:
Access-Control-Expose-Headers:
@@ -2046,11 +2069,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 08:26:27 GMT
+ - Wed, 20 May 2026 09:28:19 GMT
Pragma:
- no-cache
RequestId:
- - 641cf46a-bf75-4a3b-b2bd-ef9bdce0dfb5
+ - cdfd563d-d2e9-403d-bca8-575e6ebf24f9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -2063,10 +2086,10 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "Notebook", "displayName": "fabcli000004",
- "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
- "payloadType": "InlineBase64"}]}, "folderId": "a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea"}'
+ body: '{"type": "Notebook", "displayName": "fabcli000004", "definition": {"parts":
+ [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
+ "payloadType": "InlineBase64"}]}, "folderId": "d540e388-260c-40a3-9d40-2072de174d8b"}'
headers:
Accept:
- '*/*'
@@ -2075,13 +2098,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1319'
+ - '1238'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/items
response:
body:
string: 'null'
@@ -2097,15 +2120,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:26:31 GMT
+ - Wed, 20 May 2026 09:28:21 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fde3bcf5-41b6-48ee-a61c-ed1a9ce70efe
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8c990f3d-3699-4acc-b4a3-f66039677803
Pragma:
- no-cache
RequestId:
- - 44070771-1f62-4e15-907b-1e2937a46922
+ - 9592ee30-34bb-48ed-9a9d-522e6d8fdac7
Retry-After:
- '20'
Strict-Transport-Security:
@@ -2119,7 +2142,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - fde3bcf5-41b6-48ee-a61c-ed1a9ce70efe
+ - 8c990f3d-3699-4acc-b4a3-f66039677803
status:
code: 202
message: Accepted
@@ -2135,13 +2158,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fde3bcf5-41b6-48ee-a61c-ed1a9ce70efe
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8c990f3d-3699-4acc-b4a3-f66039677803
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:26:29.5289671",
- "lastUpdatedTimeUtc": "2026-02-06T08:26:32.4510817", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:28:20.5993692",
+ "lastUpdatedTimeUtc": "2026-05-20T09:28:22.6705265", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -2151,17 +2174,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '132'
+ - '130'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:26:52 GMT
+ - Wed, 20 May 2026 09:28:42 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fde3bcf5-41b6-48ee-a61c-ed1a9ce70efe/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8c990f3d-3699-4acc-b4a3-f66039677803/result
Pragma:
- no-cache
RequestId:
- - 15e279d9-1ef8-4173-be8d-19ef9b1cc676
+ - b717f2a2-46c0-4272-aa72-17345382a21c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2169,7 +2192,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - fde3bcf5-41b6-48ee-a61c-ed1a9ce70efe
+ - 8c990f3d-3699-4acc-b4a3-f66039677803
status:
code: 200
message: OK
@@ -2185,14 +2208,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fde3bcf5-41b6-48ee-a61c-ed1a9ce70efe/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8c990f3d-3699-4acc-b4a3-f66039677803/result
response:
body:
- string: '{"id": "567bb09e-b164-41ff-9227-d9a74f0b087d", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "folderId": "a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea"}'
+ string: '{"id": "e50918dc-db41-424d-9f24-1e21dbea619f", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "9b487033-0f4a-44f8-84e7-544d239144e0",
+ "folderId": "d540e388-260c-40a3-9d40-2072de174d8b"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2203,11 +2226,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 08:26:53 GMT
+ - Wed, 20 May 2026 09:28:44 GMT
Pragma:
- no-cache
RequestId:
- - f368538a-04a9-4e58-949e-ddcb80f4208d
+ - 6fb249be-68cd-420e-8b4c-fb7fc24b65f1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -2231,14 +2254,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/items
response:
body:
- string: '{"value": [{"id": "5c04201e-d9f3-49d1-9e6c-5f875c4835fd", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "30763b40-c9c2-4527-9246-d12086f5b498", "folderId": "40291a18-8b1f-4762-a94e-1f35b90a4a90"}]}'
+ string: '{"value": [{"id": "41d7452c-a396-4408-8a4d-30ecc3c84d7b", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859",
+ "folderId": "c9a6b4ff-d63e-4e8b-b134-0199fa480293"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2247,15 +2270,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '209'
+ - '196'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:26:54 GMT
+ - Wed, 20 May 2026 09:28:44 GMT
Pragma:
- no-cache
RequestId:
- - 2ee86f6d-e88f-4f04-bad0-0a535c19556c
+ - eac1e2ab-9c26-49ef-b087-b099ce02fe25
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2281,13 +2304,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "40291a18-8b1f-4762-a94e-1f35b90a4a90", "displayName":
- "fabcli000003", "workspaceId": "30763b40-c9c2-4527-9246-d12086f5b498"}]}'
+ string: '{"value": [{"id": "c9a6b4ff-d63e-4e8b-b134-0199fa480293", "displayName":
+ "fabcli000003", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2296,15 +2319,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '142'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:26:56 GMT
+ - Wed, 20 May 2026 09:28:45 GMT
Pragma:
- no-cache
RequestId:
- - 333a0483-843c-49e8-a035-94ffb969ef5d
+ - 76a784eb-458d-4379-8a04-ad6699004a72
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2330,13 +2353,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "40291a18-8b1f-4762-a94e-1f35b90a4a90", "displayName":
- "fabcli000003", "workspaceId": "30763b40-c9c2-4527-9246-d12086f5b498"}]}'
+ string: '{"value": [{"id": "c9a6b4ff-d63e-4e8b-b134-0199fa480293", "displayName":
+ "fabcli000003", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2345,15 +2368,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '142'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:26:56 GMT
+ - Wed, 20 May 2026 09:28:46 GMT
Pragma:
- no-cache
RequestId:
- - 216b57a8-4998-4aee-8115-9aecf4649620
+ - d7222f13-d69c-449b-a02a-21fa87f4e4ea
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2379,16 +2402,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "30763b40-c9c2-4527-9246-d12086f5b498", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4c7e078a-3cf2-4050-a492-764540e98859", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9b487033-0f4a-44f8-84e7-544d239144e0", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2397,15 +2423,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2884'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:26:57 GMT
+ - Wed, 20 May 2026 09:28:46 GMT
Pragma:
- no-cache
RequestId:
- - e8c5e1a0-30c8-47fe-86a2-e6ac2dca3e7d
+ - 0396c977-1691-46fd-948a-a971e52c9afc
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2431,14 +2457,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/items
response:
body:
- string: '{"value": [{"id": "567bb09e-b164-41ff-9227-d9a74f0b087d", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "folderId": "a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea"}]}'
+ string: '{"value": [{"id": "e50918dc-db41-424d-9f24-1e21dbea619f", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "9b487033-0f4a-44f8-84e7-544d239144e0",
+ "folderId": "d540e388-260c-40a3-9d40-2072de174d8b"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2447,15 +2473,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '208'
+ - '196'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:26:58 GMT
+ - Wed, 20 May 2026 09:28:48 GMT
Pragma:
- no-cache
RequestId:
- - d5f323ae-0798-4ec1-a07c-50f7950cfba1
+ - 01830259-de77-4fe2-80bb-ddcd35f7cc64
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2481,13 +2507,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea", "displayName":
- "fabcli000003", "workspaceId": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760"}]}'
+ string: '{"value": [{"id": "d540e388-260c-40a3-9d40-2072de174d8b", "displayName":
+ "fabcli000003", "workspaceId": "9b487033-0f4a-44f8-84e7-544d239144e0"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2500,11 +2526,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:26:59 GMT
+ - Wed, 20 May 2026 09:28:49 GMT
Pragma:
- no-cache
RequestId:
- - dea97287-2992-4c64-a623-3142fe4a2c18
+ - 9f35056d-71d8-43b1-9056-add0830f90b3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2530,13 +2556,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea", "displayName":
- "fabcli000003", "workspaceId": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760"}]}'
+ string: '{"value": [{"id": "d540e388-260c-40a3-9d40-2072de174d8b", "displayName":
+ "fabcli000003", "workspaceId": "9b487033-0f4a-44f8-84e7-544d239144e0"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2549,11 +2575,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:26:59 GMT
+ - Wed, 20 May 2026 09:28:49 GMT
Pragma:
- no-cache
RequestId:
- - d581c6a2-217e-44c0-90ee-5bee352b69df
+ - fa92f466-7890-4a2a-a94f-3adae7dfd2c7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2579,16 +2605,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "30763b40-c9c2-4527-9246-d12086f5b498", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4c7e078a-3cf2-4050-a492-764540e98859", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9b487033-0f4a-44f8-84e7-544d239144e0", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2597,15 +2626,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2884'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:27:00 GMT
+ - Wed, 20 May 2026 09:28:50 GMT
Pragma:
- no-cache
RequestId:
- - 260e7eee-3e6a-4119-9b16-3ebcf91f6677
+ - 1ca1d166-897e-49bd-94ce-9442ffeee4b2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2631,13 +2660,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea", "displayName":
- "fabcli000003", "workspaceId": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760"}]}'
+ string: '{"value": [{"id": "d540e388-260c-40a3-9d40-2072de174d8b", "displayName":
+ "fabcli000003", "workspaceId": "9b487033-0f4a-44f8-84e7-544d239144e0"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2650,11 +2679,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:27:01 GMT
+ - Wed, 20 May 2026 09:28:51 GMT
Pragma:
- no-cache
RequestId:
- - 3e90f3d0-33ed-46eb-af98-b2e6bf0a0449
+ - 6616eede-1807-49bf-bc17-5b681759bf20
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2680,14 +2709,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/items
response:
body:
- string: '{"value": [{"id": "567bb09e-b164-41ff-9227-d9a74f0b087d", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "folderId": "a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea"}]}'
+ string: '{"value": [{"id": "e50918dc-db41-424d-9f24-1e21dbea619f", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "9b487033-0f4a-44f8-84e7-544d239144e0",
+ "folderId": "d540e388-260c-40a3-9d40-2072de174d8b"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2696,15 +2725,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '208'
+ - '196'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:27:02 GMT
+ - Wed, 20 May 2026 09:28:52 GMT
Pragma:
- no-cache
RequestId:
- - 56b5d24b-15c9-4e18-8d05-0ef8e2669f50
+ - c982cbf4-c40c-4a67-8af9-b3cf65a86207
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2730,13 +2759,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea", "displayName":
- "fabcli000003", "workspaceId": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760"}]}'
+ string: '{"value": [{"id": "d540e388-260c-40a3-9d40-2072de174d8b", "displayName":
+ "fabcli000003", "workspaceId": "9b487033-0f4a-44f8-84e7-544d239144e0"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2749,11 +2778,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:27:03 GMT
+ - Wed, 20 May 2026 09:28:53 GMT
Pragma:
- no-cache
RequestId:
- - a9903c3a-f824-4ec3-938c-da94f7e92339
+ - 9871097c-468d-426b-817f-aa3be5efad8f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2779,13 +2808,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea", "displayName":
- "fabcli000003", "workspaceId": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760"}]}'
+ string: '{"value": [{"id": "d540e388-260c-40a3-9d40-2072de174d8b", "displayName":
+ "fabcli000003", "workspaceId": "9b487033-0f4a-44f8-84e7-544d239144e0"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2798,11 +2827,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:27:03 GMT
+ - Wed, 20 May 2026 09:28:53 GMT
Pragma:
- no-cache
RequestId:
- - 48f0511a-a7d7-4ef2-a47f-78a122f51195
+ - aebe5dd6-b429-4f18-b35b-fc7ae4867213
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2828,16 +2857,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "30763b40-c9c2-4527-9246-d12086f5b498", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4c7e078a-3cf2-4050-a492-764540e98859", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9b487033-0f4a-44f8-84e7-544d239144e0", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2846,15 +2878,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2884'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:27:04 GMT
+ - Wed, 20 May 2026 09:28:54 GMT
Pragma:
- no-cache
RequestId:
- - 02683ff9-f500-4fb2-bf28-572c5a4d5830
+ - 479f43c9-38c8-444a-8356-d872136ab49d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2880,13 +2912,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea", "displayName":
- "fabcli000003", "workspaceId": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760"}]}'
+ string: '{"value": [{"id": "d540e388-260c-40a3-9d40-2072de174d8b", "displayName":
+ "fabcli000003", "workspaceId": "9b487033-0f4a-44f8-84e7-544d239144e0"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2899,11 +2931,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:27:05 GMT
+ - Wed, 20 May 2026 09:28:55 GMT
Pragma:
- no-cache
RequestId:
- - d02f1e6d-70cd-44ce-a876-5141812ef939
+ - fb95aa99-97b5-4aab-94a0-7e9d145708bb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2929,14 +2961,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/items
response:
body:
- string: '{"value": [{"id": "567bb09e-b164-41ff-9227-d9a74f0b087d", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "folderId": "a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea"}]}'
+ string: '{"value": [{"id": "e50918dc-db41-424d-9f24-1e21dbea619f", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "9b487033-0f4a-44f8-84e7-544d239144e0",
+ "folderId": "d540e388-260c-40a3-9d40-2072de174d8b"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2945,15 +2977,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '208'
+ - '196'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:27:06 GMT
+ - Wed, 20 May 2026 09:28:56 GMT
Pragma:
- no-cache
RequestId:
- - 06badb0a-703d-4273-bed4-8645dd2b6a1a
+ - c42d8588-0053-4747-b0e2-3db077df32ad
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2979,13 +3011,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea", "displayName":
- "fabcli000003", "workspaceId": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760"}]}'
+ string: '{"value": [{"id": "d540e388-260c-40a3-9d40-2072de174d8b", "displayName":
+ "fabcli000003", "workspaceId": "9b487033-0f4a-44f8-84e7-544d239144e0"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2998,11 +3030,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:27:06 GMT
+ - Wed, 20 May 2026 09:28:57 GMT
Pragma:
- no-cache
RequestId:
- - 997ae79d-9d80-4d28-a141-4929ba019839
+ - de7ef6e4-18f1-4e5c-bee1-bc229e6b1049
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3030,9 +3062,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/items/567bb09e-b164-41ff-9227-d9a74f0b087d
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/items/e50918dc-db41-424d-9f24-1e21dbea619f
response:
body:
string: ''
@@ -3048,11 +3080,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:27:07 GMT
+ - Wed, 20 May 2026 09:28:58 GMT
Pragma:
- no-cache
RequestId:
- - 0ac99cfe-e17c-4a37-8d46-013c0e462d1c
+ - 05a9c994-f439-40c7-aecc-b5381c051ae2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3078,16 +3110,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "30763b40-c9c2-4527-9246-d12086f5b498", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4c7e078a-3cf2-4050-a492-764540e98859", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9b487033-0f4a-44f8-84e7-544d239144e0", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3096,15 +3131,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2884'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:27:07 GMT
+ - Wed, 20 May 2026 09:28:58 GMT
Pragma:
- no-cache
RequestId:
- - 19c1d42c-9ec6-4a11-9940-64e16861afc1
+ - a5c07c27-1def-4fce-8a74-2d0a6c678438
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3130,13 +3165,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea", "displayName":
- "fabcli000003", "workspaceId": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760"}]}'
+ string: '{"value": [{"id": "d540e388-260c-40a3-9d40-2072de174d8b", "displayName":
+ "fabcli000003", "workspaceId": "9b487033-0f4a-44f8-84e7-544d239144e0"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3149,11 +3184,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:27:08 GMT
+ - Wed, 20 May 2026 09:28:59 GMT
Pragma:
- no-cache
RequestId:
- - dacab54e-b7ef-4a9c-b1a7-83862df37e4a
+ - 5de304b0-8f5d-47df-9a49-11eab139909b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3181,9 +3216,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/folders/a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/folders/d540e388-260c-40a3-9d40-2072de174d8b
response:
body:
string: ''
@@ -3199,11 +3234,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:27:10 GMT
+ - Wed, 20 May 2026 09:29:01 GMT
Pragma:
- no-cache
RequestId:
- - 4b1d4693-3873-43e7-9987-81dbff4783e9
+ - f0b70107-e4b9-4833-8a41-19984925fe1f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3229,16 +3264,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "30763b40-c9c2-4527-9246-d12086f5b498", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4c7e078a-3cf2-4050-a492-764540e98859", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9b487033-0f4a-44f8-84e7-544d239144e0", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3247,15 +3285,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2884'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:27:11 GMT
+ - Wed, 20 May 2026 09:29:01 GMT
Pragma:
- no-cache
RequestId:
- - b8386846-e814-42a7-ab5d-87d310e3b6f9
+ - 00c6fccc-99ac-45a6-9a36-4bbeb003a3fe
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3281,53 +3319,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498/folders?recursive=True
- response:
- body:
- string: '{"requestId": "842652fa-b851-495a-9397-5feebfc24f79", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 8:27:56 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 08:27:12 GMT
- RequestId:
- - 842652fa-b851-495a-9397-5feebfc24f79
- Retry-After:
- - '44'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "40291a18-8b1f-4762-a94e-1f35b90a4a90", "displayName":
- "fabcli000003", "workspaceId": "30763b40-c9c2-4527-9246-d12086f5b498"}]}'
+ string: '{"value": [{"id": "c9a6b4ff-d63e-4e8b-b134-0199fa480293", "displayName":
+ "fabcli000003", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3336,15 +3334,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '142'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:27:58 GMT
+ - Wed, 20 May 2026 09:29:02 GMT
Pragma:
- no-cache
RequestId:
- - ed9c74dd-4e35-4de3-832a-036d37485d2c
+ - abb52fb4-c345-4821-8528-26ba300283c0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3370,14 +3368,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/items
response:
body:
- string: '{"value": [{"id": "5c04201e-d9f3-49d1-9e6c-5f875c4835fd", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "30763b40-c9c2-4527-9246-d12086f5b498", "folderId": "40291a18-8b1f-4762-a94e-1f35b90a4a90"}]}'
+ string: '{"value": [{"id": "41d7452c-a396-4408-8a4d-30ecc3c84d7b", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859",
+ "folderId": "c9a6b4ff-d63e-4e8b-b134-0199fa480293"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3386,15 +3384,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '209'
+ - '196'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:27:59 GMT
+ - Wed, 20 May 2026 09:29:03 GMT
Pragma:
- no-cache
RequestId:
- - 64e1e632-8df0-45e7-952a-c4c95a3ef947
+ - 3796bfe7-7e3d-45c1-b0a3-05a5c0bbd269
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3420,13 +3418,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "40291a18-8b1f-4762-a94e-1f35b90a4a90", "displayName":
- "fabcli000003", "workspaceId": "30763b40-c9c2-4527-9246-d12086f5b498"}]}'
+ string: '{"value": [{"id": "c9a6b4ff-d63e-4e8b-b134-0199fa480293", "displayName":
+ "fabcli000003", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3435,15 +3433,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '142'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:00 GMT
+ - Wed, 20 May 2026 09:29:03 GMT
Pragma:
- no-cache
RequestId:
- - 3ada0bd4-3403-4370-97a9-16e54b6b78a5
+ - f899a394-4efe-4e0f-b743-14275b1b8b11
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3471,9 +3469,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498/items/5c04201e-d9f3-49d1-9e6c-5f875c4835fd
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/items/41d7452c-a396-4408-8a4d-30ecc3c84d7b
response:
body:
string: ''
@@ -3489,11 +3487,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:28:01 GMT
+ - Wed, 20 May 2026 09:29:05 GMT
Pragma:
- no-cache
RequestId:
- - eb7c420a-9c56-48ea-80c4-29adf57591c6
+ - b0e0a0a4-712d-46e5-ba24-6c00ac52c3ce
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3519,16 +3517,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "30763b40-c9c2-4527-9246-d12086f5b498", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4c7e078a-3cf2-4050-a492-764540e98859", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9b487033-0f4a-44f8-84e7-544d239144e0", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3537,15 +3538,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2884'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:01 GMT
+ - Wed, 20 May 2026 09:29:05 GMT
Pragma:
- no-cache
RequestId:
- - d28689ac-1a1d-4a02-916d-a8cbbb0a8fd6
+ - 87f51459-e170-44c8-a740-61a55826be2f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3571,13 +3572,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "40291a18-8b1f-4762-a94e-1f35b90a4a90", "displayName":
- "fabcli000003", "workspaceId": "30763b40-c9c2-4527-9246-d12086f5b498"}]}'
+ string: '{"value": [{"id": "c9a6b4ff-d63e-4e8b-b134-0199fa480293", "displayName":
+ "fabcli000003", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3586,15 +3587,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '142'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:03 GMT
+ - Wed, 20 May 2026 09:29:06 GMT
Pragma:
- no-cache
RequestId:
- - 805b4df9-3313-41a2-9955-e9517e5488c2
+ - a066c235-5574-4a4e-9e0b-5b85e9fe114a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3622,9 +3623,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498/folders/40291a18-8b1f-4762-a94e-1f35b90a4a90
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/folders/c9a6b4ff-d63e-4e8b-b134-0199fa480293
response:
body:
string: ''
@@ -3640,11 +3641,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:28:03 GMT
+ - Wed, 20 May 2026 09:29:07 GMT
Pragma:
- no-cache
RequestId:
- - 32c41a4c-fa12-4743-afca-049b4c9f7efe
+ - 35391404-370f-412d-a423-ba56f4911631
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3670,16 +3671,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "30763b40-c9c2-4527-9246-d12086f5b498", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4c7e078a-3cf2-4050-a492-764540e98859", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9b487033-0f4a-44f8-84e7-544d239144e0", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3688,15 +3692,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2884'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:04 GMT
+ - Wed, 20 May 2026 09:29:08 GMT
Pragma:
- no-cache
RequestId:
- - a4bcf32b-f469-44c5-b8fd-cab584d09d90
+ - ac630219-e794-4a26-aae5-7a2acb792b5d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3722,9 +3726,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/items
response:
body:
string: '{"value": []}'
@@ -3740,11 +3744,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:05 GMT
+ - Wed, 20 May 2026 09:29:09 GMT
Pragma:
- no-cache
RequestId:
- - 06034b21-6d8b-490d-8a31-8048714c03aa
+ - 1d7219f3-2f6a-40d7-b7e2-9587210d239d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3772,9 +3776,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859
response:
body:
string: ''
@@ -3790,11 +3794,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:28:06 GMT
+ - Wed, 20 May 2026 09:29:09 GMT
Pragma:
- no-cache
RequestId:
- - 6792e822-8ceb-4aa8-9e10-4356aa3d701b
+ - 74821730-4cbf-4fa6-8c76-0f8797a40704
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3820,15 +3824,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9b487033-0f4a-44f8-84e7-544d239144e0", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3837,15 +3843,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2847'
+ - '2659'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:07 GMT
+ - Wed, 20 May 2026 09:29:11 GMT
Pragma:
- no-cache
RequestId:
- - dd5f0903-3217-40e4-b297-fb58d2100d78
+ - 39f25f52-81f8-4b99-aaa5-9f5f55e5fb1e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3871,9 +3877,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/items
response:
body:
string: '{"value": []}'
@@ -3889,11 +3895,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:07 GMT
+ - Wed, 20 May 2026 09:29:11 GMT
Pragma:
- no-cache
RequestId:
- - c2fd1527-0d20-476f-82a0-4a5e367de6ba
+ - 5650fa10-6a9d-4eee-b10b-e4ab81873f49
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3921,9 +3927,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/5d9e9502-f2b7-49f2-8ddc-f8381d07b760
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0
response:
body:
string: ''
@@ -3939,11 +3945,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:28:08 GMT
+ - Wed, 20 May 2026 09:29:12 GMT
Pragma:
- no-cache
RequestId:
- - 62ed4299-1a5a-4a5b-9d31-efff7e860622
+ - 5635b669-fa5f-4932-87a3-ba973fc45756
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[Reflex].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[Reflex].yaml
index 0b40aea1b..87f8a0b15 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[Reflex].yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[Reflex].yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:09 GMT
+ - Wed, 20 May 2026 09:29:13 GMT
Pragma:
- no-cache
RequestId:
- - 975948c9-a10a-4193-9053-7cfcd23eb7ea
+ - 41dda96f-554b-455f-9795-950519240caf
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,14 +62,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -77,15 +79,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:10 GMT
+ - Wed, 20 May 2026 09:29:14 GMT
Pragma:
- no-cache
RequestId:
- - 52fc52ad-a9d4-4151-8454-a9b19a57f567
+ - ac6fd34d-0f1e-45d4-b041-4617bb90717b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -111,7 +113,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -131,11 +133,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:16 GMT
+ - Wed, 20 May 2026 09:29:17 GMT
Pragma:
- no-cache
RequestId:
- - 16dde09e-6f37-408f-bd24-6fc680e3f3a2
+ - fa4debf7-7a3e-4ed9-aa7f-e382331b7bc9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -150,8 +152,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000001", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -160,16 +161,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "92eb7715-46b8-4aa4-ab55-680935cf0635", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "9d333cee-7d75-4024-9eee-dea08bf151e8", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -178,17 +180,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '155'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:24 GMT
+ - Wed, 20 May 2026 09:29:26 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635
+ - https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8
Pragma:
- no-cache
RequestId:
- - 7d4d5b5a-640d-4ee9-81d2-ad305c9950b3
+ - f5d073d6-7a3e-449d-8f0d-35535b07fa97
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -214,15 +216,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "92eb7715-46b8-4aa4-ab55-680935cf0635", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9d333cee-7d75-4024-9eee-dea08bf151e8", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -231,15 +235,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2844'
+ - '2657'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:25 GMT
+ - Wed, 20 May 2026 09:29:26 GMT
Pragma:
- no-cache
RequestId:
- - 57596775-c5c7-4845-b988-7d3a18f0cfb4
+ - 5d540192-1eca-49f7-96cf-2f67d5a2d745
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -265,15 +269,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "92eb7715-46b8-4aa4-ab55-680935cf0635", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9d333cee-7d75-4024-9eee-dea08bf151e8", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -282,15 +288,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2844'
+ - '2657'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:25 GMT
+ - Wed, 20 May 2026 09:29:28 GMT
Pragma:
- no-cache
RequestId:
- - 597e87ef-ab76-4e9c-86c4-31ad0fc109d5
+ - fbe88043-229e-4a24-bfe2-6db3e58e0eb0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -316,7 +322,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -332,15 +338,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '427'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:31 GMT
+ - Wed, 20 May 2026 09:29:31 GMT
Pragma:
- no-cache
RequestId:
- - d613c79f-822c-4d19-abd6-d0dd262dc535
+ - a3bffb9b-45f0-4235-9909-70e8ab1d952d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -355,8 +361,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000002", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -365,16 +370,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "2c29fee0-222c-4751-b351-99b41f590032", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -383,17 +389,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '165'
+ - '155'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:40 GMT
+ - Wed, 20 May 2026 09:29:39 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/4db2ea4d-49a9-4fa5-8522-328ed395bcc1
+ - https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032
Pragma:
- no-cache
RequestId:
- - 072d5a9a-4d5f-44ac-9072-baf94354bed4
+ - 8b9338aa-aa29-465e-8655-4c4040a0e6d6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -419,16 +425,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "92eb7715-46b8-4aa4-ab55-680935cf0635", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9d333cee-7d75-4024-9eee-dea08bf151e8", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2c29fee0-222c-4751-b351-99b41f590032", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -437,15 +446,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2884'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:41 GMT
+ - Wed, 20 May 2026 09:29:40 GMT
Pragma:
- no-cache
RequestId:
- - a36c617c-88d0-411f-8759-b6846b07b348
+ - 5336e39b-9667-4e3c-8730-e3d336d91e8f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -471,9 +480,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -489,11 +498,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:42 GMT
+ - Wed, 20 May 2026 09:29:40 GMT
Pragma:
- no-cache
RequestId:
- - 9590e93c-7ba1-4b28-b841-f8abb3ba2bce
+ - 1e75cf1a-60e8-465e-bf14-09a659b41b67
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -519,9 +528,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -537,11 +546,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:43 GMT
+ - Wed, 20 May 2026 09:29:42 GMT
Pragma:
- no-cache
RequestId:
- - afada5e7-c06a-4947-9f66-e55cf4578f86
+ - 59552008-f26f-4945-bab5-ca8e123b54e0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -565,17 +574,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/folders
response:
body:
- string: '{"id": "75575781-b775-4df2-be7c-eb7a330992fd", "displayName": "fabcli000003",
- "workspaceId": "92eb7715-46b8-4aa4-ab55-680935cf0635"}'
+ string: '{"id": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64", "displayName": "fabcli000003",
+ "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -584,17 +593,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '132'
+ - '133'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:44 GMT
+ - Wed, 20 May 2026 09:29:43 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635/folders/75575781-b775-4df2-be7c-eb7a330992fd
+ - https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/folders/c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64
Pragma:
- no-cache
RequestId:
- - c43694a3-22ff-4093-ab11-70c48b2920d3
+ - c2ebd5b9-001b-4989-bcf6-4635419cec74
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -620,16 +629,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "92eb7715-46b8-4aa4-ab55-680935cf0635", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9d333cee-7d75-4024-9eee-dea08bf151e8", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2c29fee0-222c-4751-b351-99b41f590032", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -638,15 +650,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2884'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:45 GMT
+ - Wed, 20 May 2026 09:29:43 GMT
Pragma:
- no-cache
RequestId:
- - 58816a32-8ca8-4891-a806-6a82948afbdc
+ - 580a8f69-f18b-4508-885e-4b370d80f783
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -672,13 +684,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "75575781-b775-4df2-be7c-eb7a330992fd", "displayName":
- "fabcli000003", "workspaceId": "92eb7715-46b8-4aa4-ab55-680935cf0635"}]}'
+ string: '{"value": [{"id": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64", "displayName":
+ "fabcli000003", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -687,15 +699,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:45 GMT
+ - Wed, 20 May 2026 09:29:44 GMT
Pragma:
- no-cache
RequestId:
- - b15668cd-bdd5-4acb-8a55-b84509493557
+ - a741d876-cedf-49b8-9dc1-5a4bbc402442
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -721,9 +733,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/items
response:
body:
string: '{"value": []}'
@@ -739,11 +751,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:46 GMT
+ - Wed, 20 May 2026 09:29:45 GMT
Pragma:
- no-cache
RequestId:
- - 2e1bdef6-9cef-4d5c-b983-14dcba20a433
+ - aad31a91-18e0-4cfd-926a-e97298d61405
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -769,9 +781,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/items
response:
body:
string: '{"value": []}'
@@ -787,11 +799,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:47 GMT
+ - Wed, 20 May 2026 09:29:45 GMT
Pragma:
- no-cache
RequestId:
- - 54afd967-1f9e-4caf-8089-7e652c154048
+ - 05ce3bb0-a10a-4cd8-80df-ac0edc1474b2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -806,8 +818,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000004", "type":
- "Reflex", "folderId": "75575781-b775-4df2-be7c-eb7a330992fd"}'
+ body: '{"displayName": "fabcli000004", "type": "Reflex", "folderId": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64"}'
headers:
Accept:
- '*/*'
@@ -816,18 +827,18 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '138'
+ - '105'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635/reflexes
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/reflexes
response:
body:
- string: '{"id": "0a9a9dea-0db8-4d41-b71b-e8ed10a8c91f", "type": "Reflex", "displayName":
- "fabcli000004", "workspaceId": "92eb7715-46b8-4aa4-ab55-680935cf0635",
- "folderId": "75575781-b775-4df2-be7c-eb7a330992fd"}'
+ string: '{"id": "a5062f6e-ef9a-4a89-99e6-37fa0c5cdf91", "type": "Reflex", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8",
+ "folderId": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -836,17 +847,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '196'
+ - '184'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:50 GMT
+ - Wed, 20 May 2026 09:29:50 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 24b519b3-4066-4305-9c06-c6ee45a7a637
+ - 8af09a18-4084-4c52-b127-c34efb088485
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -872,16 +883,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "92eb7715-46b8-4aa4-ab55-680935cf0635", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9d333cee-7d75-4024-9eee-dea08bf151e8", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2c29fee0-222c-4751-b351-99b41f590032", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -890,15 +904,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2884'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:50 GMT
+ - Wed, 20 May 2026 09:29:50 GMT
Pragma:
- no-cache
RequestId:
- - 588fb2b0-ab22-4564-969c-810b2c74174f
+ - a09153f0-6e35-4351-938f-02184f3c74e0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -924,13 +938,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "75575781-b775-4df2-be7c-eb7a330992fd", "displayName":
- "fabcli000003", "workspaceId": "92eb7715-46b8-4aa4-ab55-680935cf0635"}]}'
+ string: '{"value": [{"id": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64", "displayName":
+ "fabcli000003", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -939,15 +953,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:52 GMT
+ - Wed, 20 May 2026 09:29:51 GMT
Pragma:
- no-cache
RequestId:
- - d1e3545e-28ff-46fd-b776-ff1aa9c0f927
+ - d9afc18b-2fbd-4858-b344-dae1f875c978
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -973,16 +987,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "92eb7715-46b8-4aa4-ab55-680935cf0635", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9d333cee-7d75-4024-9eee-dea08bf151e8", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2c29fee0-222c-4751-b351-99b41f590032", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -991,15 +1008,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2884'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:52 GMT
+ - Wed, 20 May 2026 09:29:52 GMT
Pragma:
- no-cache
RequestId:
- - 09040ec6-8af9-4206-a34e-6c6ceab4eefa
+ - 931c84e7-86d3-46c1-af77-1116b1ef2649
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1025,16 +1042,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "92eb7715-46b8-4aa4-ab55-680935cf0635", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9d333cee-7d75-4024-9eee-dea08bf151e8", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2c29fee0-222c-4751-b351-99b41f590032", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1043,15 +1063,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2884'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:54 GMT
+ - Wed, 20 May 2026 09:29:52 GMT
Pragma:
- no-cache
RequestId:
- - eaf00e3a-d628-4dd5-bfd0-9da7207dfac3
+ - 4f513063-da1b-4a3b-8091-b0bde0db129b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1077,9 +1097,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -1095,11 +1115,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:54 GMT
+ - Wed, 20 May 2026 09:29:54 GMT
Pragma:
- no-cache
RequestId:
- - 814e021b-1527-45b2-af63-ac6673a4b3fa
+ - ecb71d82-9b8b-4a23-bbb7-f572b5923255
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1125,9 +1145,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -1143,11 +1163,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:55 GMT
+ - Wed, 20 May 2026 09:29:54 GMT
Pragma:
- no-cache
RequestId:
- - dd5243f5-f879-41bd-a12d-0d31495b859d
+ - cb62c5b9-4716-4aaf-842f-c72af7835c6f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1171,17 +1191,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/folders
response:
body:
- string: '{"id": "9e62aa3f-368e-4b58-aed4-f8d0632de25b", "displayName": "fabcli000003",
- "workspaceId": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1"}'
+ string: '{"id": "b6144bfa-24f7-49b2-b848-0c2bf45158e4", "displayName": "fabcli000003",
+ "workspaceId": "2c29fee0-222c-4751-b351-99b41f590032"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -1190,17 +1210,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '132'
+ - '133'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:55 GMT
+ - Wed, 20 May 2026 09:29:55 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/folders/9e62aa3f-368e-4b58-aed4-f8d0632de25b
+ - https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/folders/b6144bfa-24f7-49b2-b848-0c2bf45158e4
Pragma:
- no-cache
RequestId:
- - c5b16148-19cf-41d2-bf79-7f1f5b631326
+ - 1f042bc9-d30f-4823-a55b-379afa523e20
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1226,14 +1246,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/items
response:
body:
- string: '{"value": [{"id": "0a9a9dea-0db8-4d41-b71b-e8ed10a8c91f", "type": "Reflex",
- "displayName": "fabcli000004", "workspaceId":
- "92eb7715-46b8-4aa4-ab55-680935cf0635", "folderId": "75575781-b775-4df2-be7c-eb7a330992fd"}]}'
+ string: '{"value": [{"id": "a5062f6e-ef9a-4a89-99e6-37fa0c5cdf91", "type": "Reflex",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8",
+ "folderId": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1242,15 +1262,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '207'
+ - '195'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:56 GMT
+ - Wed, 20 May 2026 09:29:56 GMT
Pragma:
- no-cache
RequestId:
- - 156dec40-e29a-44a6-89b2-a1aa3eb07cac
+ - 8724b609-9448-49d9-8eea-1b0e5ff6f7b6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1276,13 +1296,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "75575781-b775-4df2-be7c-eb7a330992fd", "displayName":
- "fabcli000003", "workspaceId": "92eb7715-46b8-4aa4-ab55-680935cf0635"}]}'
+ string: '{"value": [{"id": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64", "displayName":
+ "fabcli000003", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1291,15 +1311,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:28:57 GMT
+ - Wed, 20 May 2026 09:29:57 GMT
Pragma:
- no-cache
RequestId:
- - 41044faa-eff4-4406-a0c1-be51f2eb15e0
+ - 0f4093f1-279c-4452-b356-e9acc3e4a094
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1325,53 +1345,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/folders?recursive=True
response:
body:
- string: '{"requestId": "a456edbe-0ba7-4b08-a638-b71c52f4c366", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 8:28:59 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 08:28:58 GMT
- RequestId:
- - a456edbe-0ba7-4b08-a638-b71c52f4c366
- Retry-After:
- - '1'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635/folders?recursive=True
- response:
- body:
- string: '{"value": [{"id": "75575781-b775-4df2-be7c-eb7a330992fd", "displayName":
- "fabcli000003", "workspaceId": "92eb7715-46b8-4aa4-ab55-680935cf0635"}]}'
+ string: '{"value": [{"id": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64", "displayName":
+ "fabcli000003", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1380,15 +1360,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:29:00 GMT
+ - Wed, 20 May 2026 09:29:57 GMT
Pragma:
- no-cache
RequestId:
- - aa628dfc-2284-4acf-a530-bf702b5c5a78
+ - 3cd50618-1062-4935-92e3-f5d7cd617bbe
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1414,14 +1394,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/items
response:
body:
- string: '{"value": [{"id": "0a9a9dea-0db8-4d41-b71b-e8ed10a8c91f", "type": "Reflex",
- "displayName": "fabcli000004", "workspaceId":
- "92eb7715-46b8-4aa4-ab55-680935cf0635", "folderId": "75575781-b775-4df2-be7c-eb7a330992fd"}]}'
+ string: '{"value": [{"id": "a5062f6e-ef9a-4a89-99e6-37fa0c5cdf91", "type": "Reflex",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8",
+ "folderId": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1430,15 +1410,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '207'
+ - '195'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:29:01 GMT
+ - Wed, 20 May 2026 09:29:59 GMT
Pragma:
- no-cache
RequestId:
- - da980a37-c17e-4303-bf4d-a0f233c9984e
+ - d99c8f11-7749-461c-9b62-e44a3325568e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1464,13 +1444,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "75575781-b775-4df2-be7c-eb7a330992fd", "displayName":
- "fabcli000003", "workspaceId": "92eb7715-46b8-4aa4-ab55-680935cf0635"}]}'
+ string: '{"value": [{"id": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64", "displayName":
+ "fabcli000003", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1479,15 +1459,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:29:02 GMT
+ - Wed, 20 May 2026 09:29:59 GMT
Pragma:
- no-cache
RequestId:
- - 0c4f8301-352a-4111-80c9-b4f0570643d6
+ - f27968fd-e864-4c5c-ba2a-fc8a9703bf5f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1513,13 +1493,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "75575781-b775-4df2-be7c-eb7a330992fd", "displayName":
- "fabcli000003", "workspaceId": "92eb7715-46b8-4aa4-ab55-680935cf0635"}]}'
+ string: '{"value": [{"id": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64", "displayName":
+ "fabcli000003", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1528,15 +1508,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:29:02 GMT
+ - Wed, 20 May 2026 09:30:01 GMT
Pragma:
- no-cache
RequestId:
- - 696847b6-d5ce-4d57-be9e-52810e2df68d
+ - ebe29216-d050-4ed6-8831-494b7b103f0b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1562,16 +1542,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "92eb7715-46b8-4aa4-ab55-680935cf0635", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9d333cee-7d75-4024-9eee-dea08bf151e8", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2c29fee0-222c-4751-b351-99b41f590032", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1580,15 +1563,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2884'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:29:03 GMT
+ - Wed, 20 May 2026 09:30:02 GMT
Pragma:
- no-cache
RequestId:
- - 21c05d70-f46b-46ec-a861-274b4ee302b0
+ - 9abad60f-45a7-4b10-8a2c-68e15bede498
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1614,13 +1597,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "9e62aa3f-368e-4b58-aed4-f8d0632de25b", "displayName":
- "fabcli000003", "workspaceId": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1"}]}'
+ string: '{"value": [{"id": "b6144bfa-24f7-49b2-b848-0c2bf45158e4", "displayName":
+ "fabcli000003", "workspaceId": "2c29fee0-222c-4751-b351-99b41f590032"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1629,15 +1612,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:29:04 GMT
+ - Wed, 20 May 2026 09:30:02 GMT
Pragma:
- no-cache
RequestId:
- - c8cd0786-b5ee-4fca-a3bc-0778aef6d15f
+ - 3b1df33e-50e3-456c-a0eb-0ac92a932283
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1663,9 +1646,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/items
response:
body:
string: '{"value": []}'
@@ -1681,11 +1664,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:29:05 GMT
+ - Wed, 20 May 2026 09:30:03 GMT
Pragma:
- no-cache
RequestId:
- - 9a11a921-3701-4b71-bfcb-83bcf2476719
+ - bcbee926-0279-4ced-a6b3-8f91dffcb4ca
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1711,9 +1694,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/items
response:
body:
string: '{"value": []}'
@@ -1729,11 +1712,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:29:06 GMT
+ - Wed, 20 May 2026 09:30:04 GMT
Pragma:
- no-cache
RequestId:
- - 0d08b387-5742-4c32-93fe-63efe3251e1d
+ - 18080842-8c7e-44bb-bb54-fefadecc263d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1759,9 +1742,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/items
response:
body:
string: '{"value": []}'
@@ -1777,11 +1760,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:29:06 GMT
+ - Wed, 20 May 2026 09:30:04 GMT
Pragma:
- no-cache
RequestId:
- - 4d091a0a-319b-4431-99e3-e991574fb863
+ - ee6e8c2a-b961-4de0-af69-679133746dd4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1807,14 +1790,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635/items/0a9a9dea-0db8-4d41-b71b-e8ed10a8c91f
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/items/a5062f6e-ef9a-4a89-99e6-37fa0c5cdf91
response:
body:
- string: '{"id": "0a9a9dea-0db8-4d41-b71b-e8ed10a8c91f", "type": "Reflex", "displayName":
- "fabcli000004", "workspaceId": "92eb7715-46b8-4aa4-ab55-680935cf0635",
- "folderId": "75575781-b775-4df2-be7c-eb7a330992fd"}'
+ string: '{"id": "a5062f6e-ef9a-4a89-99e6-37fa0c5cdf91", "type": "Reflex", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8",
+ "folderId": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1823,17 +1806,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '196'
+ - '184'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:29:07 GMT
+ - Wed, 20 May 2026 09:30:06 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 68fb83dd-bc23-4546-ab1f-861ce5ae02a4
+ - 7319e14a-4135-4538-ab76-5641b908f1c0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1861,13 +1844,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635/items/0a9a9dea-0db8-4d41-b71b-e8ed10a8c91f/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/items/a5062f6e-ef9a-4a89-99e6-37fa0c5cdf91/getDefinition
response:
body:
string: '{"definition": {"parts": [{"path": "ReflexEntities.json", "payload":
- "W10=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlJlZmxleCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
+ "W10=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlJlZmxleCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
"payloadType": "InlineBase64"}]}}'
headers:
Access-Control-Expose-Headers:
@@ -1877,15 +1860,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '425'
+ - '394'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:29:10 GMT
+ - Wed, 20 May 2026 09:30:07 GMT
Pragma:
- no-cache
RequestId:
- - d99a8752-598d-4d1d-9796-cced700414fe
+ - a5b5dd1e-14ec-4334-99c3-09bc03b86033
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1900,10 +1883,10 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "Reflex", "displayName": "fabcli000004",
- "definition": {"parts": [{"path": "ReflexEntities.json", "payload": "W10=",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlJlZmxleCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
- "payloadType": "InlineBase64"}]}, "folderId": "9e62aa3f-368e-4b58-aed4-f8d0632de25b"}'
+ body: '{"type": "Reflex", "displayName": "fabcli000004", "definition": {"parts":
+ [{"path": "ReflexEntities.json", "payload": "W10=", "payloadType": "InlineBase64"},
+ {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlJlZmxleCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
+ "payloadType": "InlineBase64"}]}, "folderId": "b6144bfa-24f7-49b2-b848-0c2bf45158e4"}'
headers:
Accept:
- '*/*'
@@ -1912,18 +1895,18 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '769'
+ - '684'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/items
response:
body:
- string: '{"id": "f6685eec-5ba4-4abb-888e-ff2db21c87ea", "type": "Reflex", "displayName":
- "fabcli000004", "workspaceId": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1",
- "folderId": "9e62aa3f-368e-4b58-aed4-f8d0632de25b"}'
+ string: '{"id": "033734c6-8b78-44a4-ade1-f27cef91fd71", "type": "Reflex", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "2c29fee0-222c-4751-b351-99b41f590032",
+ "folderId": "b6144bfa-24f7-49b2-b848-0c2bf45158e4"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1932,17 +1915,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '197'
+ - '186'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:29:15 GMT
+ - Wed, 20 May 2026 09:30:11 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 509df0d4-5f76-4308-a84b-8a4105069ca5
+ - 678d8cd8-c7dc-437a-b7e7-df52477a8ffd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1968,14 +1951,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/items
response:
body:
- string: '{"value": [{"id": "0a9a9dea-0db8-4d41-b71b-e8ed10a8c91f", "type": "Reflex",
- "displayName": "fabcli000004", "workspaceId":
- "92eb7715-46b8-4aa4-ab55-680935cf0635", "folderId": "75575781-b775-4df2-be7c-eb7a330992fd"}]}'
+ string: '{"value": [{"id": "a5062f6e-ef9a-4a89-99e6-37fa0c5cdf91", "type": "Reflex",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8",
+ "folderId": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1984,15 +1967,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '207'
+ - '195'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:29:16 GMT
+ - Wed, 20 May 2026 09:30:12 GMT
Pragma:
- no-cache
RequestId:
- - 45991398-5c07-49b5-88ed-e0ca906812f7
+ - 99f99f2a-4e23-4e2b-b047-55d0206de068
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2018,13 +2001,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "75575781-b775-4df2-be7c-eb7a330992fd", "displayName":
- "fabcli000003", "workspaceId": "92eb7715-46b8-4aa4-ab55-680935cf0635"}]}'
+ string: '{"value": [{"id": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64", "displayName":
+ "fabcli000003", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2033,15 +2016,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:29:17 GMT
+ - Wed, 20 May 2026 09:30:14 GMT
Pragma:
- no-cache
RequestId:
- - 84e58e58-e25d-4252-87be-1a85aaeee28c
+ - 7f617766-00fc-4810-876d-f12382eefc7c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2067,13 +2050,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "75575781-b775-4df2-be7c-eb7a330992fd", "displayName":
- "fabcli000003", "workspaceId": "92eb7715-46b8-4aa4-ab55-680935cf0635"}]}'
+ string: '{"value": [{"id": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64", "displayName":
+ "fabcli000003", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2082,15 +2065,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:29:17 GMT
+ - Wed, 20 May 2026 09:30:14 GMT
Pragma:
- no-cache
RequestId:
- - 5b7ab91d-6efd-454a-9472-7a1cc2ea9c9d
+ - 88a32803-be20-44cd-99f0-2e4afb91af11
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2116,16 +2099,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "92eb7715-46b8-4aa4-ab55-680935cf0635", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9d333cee-7d75-4024-9eee-dea08bf151e8", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2c29fee0-222c-4751-b351-99b41f590032", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2134,15 +2120,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2884'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:29:19 GMT
+ - Wed, 20 May 2026 09:30:15 GMT
Pragma:
- no-cache
RequestId:
- - c9b3015f-0194-43cb-b73a-a148764239e7
+ - 79c18a29-5092-4912-a5e5-1640544bb933
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2168,14 +2154,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/items
response:
body:
- string: '{"value": [{"id": "f6685eec-5ba4-4abb-888e-ff2db21c87ea", "type": "Reflex",
- "displayName": "fabcli000004", "workspaceId":
- "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "folderId": "9e62aa3f-368e-4b58-aed4-f8d0632de25b"}]}'
+ string: '{"value": [{"id": "033734c6-8b78-44a4-ade1-f27cef91fd71", "type": "Reflex",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "2c29fee0-222c-4751-b351-99b41f590032",
+ "folderId": "b6144bfa-24f7-49b2-b848-0c2bf45158e4"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2184,15 +2170,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '208'
+ - '198'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:29:19 GMT
+ - Wed, 20 May 2026 09:30:15 GMT
Pragma:
- no-cache
RequestId:
- - a0d14cd0-90db-4358-99ca-aec8ca1ef955
+ - 1cf1e76f-eacf-4227-91db-0ece7a291ced
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2218,13 +2204,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "9e62aa3f-368e-4b58-aed4-f8d0632de25b", "displayName":
- "fabcli000003", "workspaceId": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1"}]}'
+ string: '{"value": [{"id": "b6144bfa-24f7-49b2-b848-0c2bf45158e4", "displayName":
+ "fabcli000003", "workspaceId": "2c29fee0-222c-4751-b351-99b41f590032"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2233,15 +2219,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:29:20 GMT
+ - Wed, 20 May 2026 09:30:16 GMT
Pragma:
- no-cache
RequestId:
- - 0972b645-b4af-4324-8849-347260507559
+ - 44567097-7a5c-49aa-a2ad-56d2275f076e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2267,13 +2253,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "9e62aa3f-368e-4b58-aed4-f8d0632de25b", "displayName":
- "fabcli000003", "workspaceId": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1"}]}'
+ string: '{"value": [{"id": "b6144bfa-24f7-49b2-b848-0c2bf45158e4", "displayName":
+ "fabcli000003", "workspaceId": "2c29fee0-222c-4751-b351-99b41f590032"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2282,15 +2268,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:29:21 GMT
+ - Wed, 20 May 2026 09:30:18 GMT
Pragma:
- no-cache
RequestId:
- - 8f5f0ac4-56d8-4722-b0da-1cd392b019b5
+ - 9fe52e70-e442-4a6e-80a1-b4e3d6fe6504
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2316,16 +2302,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "92eb7715-46b8-4aa4-ab55-680935cf0635", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9d333cee-7d75-4024-9eee-dea08bf151e8", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2c29fee0-222c-4751-b351-99b41f590032", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2334,15 +2323,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2884'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:29:21 GMT
+ - Wed, 20 May 2026 09:30:18 GMT
Pragma:
- no-cache
RequestId:
- - 48e01d12-ccfd-4b54-ad03-d9d1af762737
+ - 3a78f56d-67a8-4bea-ac1f-4478873a0358
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2368,13 +2357,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "9e62aa3f-368e-4b58-aed4-f8d0632de25b", "displayName":
- "fabcli000003", "workspaceId": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1"}]}'
+ string: '{"value": [{"id": "b6144bfa-24f7-49b2-b848-0c2bf45158e4", "displayName":
+ "fabcli000003", "workspaceId": "2c29fee0-222c-4751-b351-99b41f590032"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2383,15 +2372,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:29:22 GMT
+ - Wed, 20 May 2026 09:30:18 GMT
Pragma:
- no-cache
RequestId:
- - 3455a0d1-f293-4ab6-b223-6edc7cee905f
+ - 011ce3b1-cffb-4ec4-8964-dcd55b29014f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2417,14 +2406,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/items
response:
body:
- string: '{"value": [{"id": "f6685eec-5ba4-4abb-888e-ff2db21c87ea", "type": "Reflex",
- "displayName": "fabcli000004", "workspaceId":
- "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "folderId": "9e62aa3f-368e-4b58-aed4-f8d0632de25b"}]}'
+ string: '{"value": [{"id": "033734c6-8b78-44a4-ade1-f27cef91fd71", "type": "Reflex",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "2c29fee0-222c-4751-b351-99b41f590032",
+ "folderId": "b6144bfa-24f7-49b2-b848-0c2bf45158e4"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2433,15 +2422,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '208'
+ - '198'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:29:23 GMT
+ - Wed, 20 May 2026 09:30:19 GMT
Pragma:
- no-cache
RequestId:
- - 6c0446ec-a37d-4c4c-8de4-93469a1c5a68
+ - a8105c6d-d400-4c55-b3a5-f1fe7b85a860
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2467,13 +2456,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "9e62aa3f-368e-4b58-aed4-f8d0632de25b", "displayName":
- "fabcli000003", "workspaceId": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1"}]}'
+ string: '{"value": [{"id": "b6144bfa-24f7-49b2-b848-0c2bf45158e4", "displayName":
+ "fabcli000003", "workspaceId": "2c29fee0-222c-4751-b351-99b41f590032"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2482,15 +2471,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:29:23 GMT
+ - Wed, 20 May 2026 09:30:19 GMT
Pragma:
- no-cache
RequestId:
- - 36f96f93-b8cd-4a83-8651-40830726089b
+ - da538f12-acc5-4350-9660-13be36d37cb9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2516,53 +2505,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/folders?recursive=True
- response:
- body:
- string: '{"requestId": "c67f7bfe-e293-4d3e-a7a9-be3796ebdbd1", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 8:30:00 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 08:29:24 GMT
- RequestId:
- - c67f7bfe-e293-4d3e-a7a9-be3796ebdbd1
- Retry-After:
- - '36'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "9e62aa3f-368e-4b58-aed4-f8d0632de25b", "displayName":
- "fabcli000003", "workspaceId": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1"}]}'
+ string: '{"value": [{"id": "b6144bfa-24f7-49b2-b848-0c2bf45158e4", "displayName":
+ "fabcli000003", "workspaceId": "2c29fee0-222c-4751-b351-99b41f590032"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2571,15 +2520,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:03 GMT
+ - Wed, 20 May 2026 09:30:20 GMT
Pragma:
- no-cache
RequestId:
- - f80f2d82-f703-47eb-80e1-d27411509ae6
+ - 83c9dd13-b7ac-4525-96ea-13f2ee1df692
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2605,16 +2554,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "92eb7715-46b8-4aa4-ab55-680935cf0635", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9d333cee-7d75-4024-9eee-dea08bf151e8", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2c29fee0-222c-4751-b351-99b41f590032", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2623,15 +2575,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2884'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:04 GMT
+ - Wed, 20 May 2026 09:30:21 GMT
Pragma:
- no-cache
RequestId:
- - 9fd49b38-c0f7-4722-a8a1-02cd117cd80e
+ - f06bead7-4ca2-4df4-8d40-a2ef1dc255be
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2657,13 +2609,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "9e62aa3f-368e-4b58-aed4-f8d0632de25b", "displayName":
- "fabcli000003", "workspaceId": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1"}]}'
+ string: '{"value": [{"id": "b6144bfa-24f7-49b2-b848-0c2bf45158e4", "displayName":
+ "fabcli000003", "workspaceId": "2c29fee0-222c-4751-b351-99b41f590032"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2672,15 +2624,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:04 GMT
+ - Wed, 20 May 2026 09:30:21 GMT
Pragma:
- no-cache
RequestId:
- - d608abdd-f7f7-48e4-9b54-3a3a6ee21130
+ - 658ecab4-6d46-4ca9-926e-abe4ea2531cd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2706,14 +2658,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/items
response:
body:
- string: '{"value": [{"id": "f6685eec-5ba4-4abb-888e-ff2db21c87ea", "type": "Reflex",
- "displayName": "fabcli000004", "workspaceId":
- "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "folderId": "9e62aa3f-368e-4b58-aed4-f8d0632de25b"}]}'
+ string: '{"value": [{"id": "033734c6-8b78-44a4-ade1-f27cef91fd71", "type": "Reflex",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "2c29fee0-222c-4751-b351-99b41f590032",
+ "folderId": "b6144bfa-24f7-49b2-b848-0c2bf45158e4"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2722,15 +2674,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '208'
+ - '198'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:06 GMT
+ - Wed, 20 May 2026 09:30:22 GMT
Pragma:
- no-cache
RequestId:
- - 6296eb86-5a4c-4947-8f77-ee8a3bd42370
+ - ed73b8cb-665e-49f9-84e9-a69a69c41ee3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2756,13 +2708,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "9e62aa3f-368e-4b58-aed4-f8d0632de25b", "displayName":
- "fabcli000003", "workspaceId": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1"}]}'
+ string: '{"value": [{"id": "b6144bfa-24f7-49b2-b848-0c2bf45158e4", "displayName":
+ "fabcli000003", "workspaceId": "2c29fee0-222c-4751-b351-99b41f590032"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2771,15 +2723,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:06 GMT
+ - Wed, 20 May 2026 09:30:22 GMT
Pragma:
- no-cache
RequestId:
- - 9c6e63e6-1592-4582-897a-42cec3634b12
+ - 4ce2cb9c-f717-4151-bb99-398512cae293
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2807,9 +2759,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/items/f6685eec-5ba4-4abb-888e-ff2db21c87ea
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/items/033734c6-8b78-44a4-ade1-f27cef91fd71
response:
body:
string: ''
@@ -2825,11 +2777,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:30:07 GMT
+ - Wed, 20 May 2026 09:30:23 GMT
Pragma:
- no-cache
RequestId:
- - 78f3fb81-a706-482f-9531-b83f8a9e2b2f
+ - fa523516-f6f6-47f1-9ee7-d347ccc20163
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2855,16 +2807,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "92eb7715-46b8-4aa4-ab55-680935cf0635", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9d333cee-7d75-4024-9eee-dea08bf151e8", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2c29fee0-222c-4751-b351-99b41f590032", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2873,15 +2828,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2884'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:08 GMT
+ - Wed, 20 May 2026 09:30:23 GMT
Pragma:
- no-cache
RequestId:
- - d2a8e877-9c07-45bd-b609-d1fcefd2d689
+ - 0f9488d3-3950-4c68-a758-ff61873b53ff
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2907,13 +2862,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "9e62aa3f-368e-4b58-aed4-f8d0632de25b", "displayName":
- "fabcli000003", "workspaceId": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1"}]}'
+ string: '{"value": [{"id": "b6144bfa-24f7-49b2-b848-0c2bf45158e4", "displayName":
+ "fabcli000003", "workspaceId": "2c29fee0-222c-4751-b351-99b41f590032"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2922,15 +2877,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:09 GMT
+ - Wed, 20 May 2026 09:30:24 GMT
Pragma:
- no-cache
RequestId:
- - facf8463-3c9f-4def-8d15-d31c967c65ca
+ - ebaba67f-8707-4e50-b407-c24f4a507c17
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2958,9 +2913,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/folders/9e62aa3f-368e-4b58-aed4-f8d0632de25b
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/folders/b6144bfa-24f7-49b2-b848-0c2bf45158e4
response:
body:
string: ''
@@ -2976,11 +2931,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:30:10 GMT
+ - Wed, 20 May 2026 09:30:25 GMT
Pragma:
- no-cache
RequestId:
- - cd697629-5ae3-4981-8287-384092e65c5c
+ - 2ac60d45-94c7-4277-bd48-23352cd1848d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3006,16 +2961,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "92eb7715-46b8-4aa4-ab55-680935cf0635", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9d333cee-7d75-4024-9eee-dea08bf151e8", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2c29fee0-222c-4751-b351-99b41f590032", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3024,15 +2982,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2884'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:11 GMT
+ - Wed, 20 May 2026 09:30:25 GMT
Pragma:
- no-cache
RequestId:
- - 6fae67b6-f3b6-40d6-ba5f-d46dd6fec119
+ - f4cc052b-fbce-4701-8003-9ef92d3e0b5b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3058,13 +3016,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "75575781-b775-4df2-be7c-eb7a330992fd", "displayName":
- "fabcli000003", "workspaceId": "92eb7715-46b8-4aa4-ab55-680935cf0635"}]}'
+ string: '{"value": [{"id": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64", "displayName":
+ "fabcli000003", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3073,15 +3031,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:11 GMT
+ - Wed, 20 May 2026 09:30:26 GMT
Pragma:
- no-cache
RequestId:
- - 088d5091-77c1-4078-a5e8-92e3a2c853c8
+ - 1763c0f8-f628-425b-85f9-1338204a254f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3107,14 +3065,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/items
response:
body:
- string: '{"value": [{"id": "0a9a9dea-0db8-4d41-b71b-e8ed10a8c91f", "type": "Reflex",
- "displayName": "fabcli000004", "workspaceId":
- "92eb7715-46b8-4aa4-ab55-680935cf0635", "folderId": "75575781-b775-4df2-be7c-eb7a330992fd"}]}'
+ string: '{"value": [{"id": "a5062f6e-ef9a-4a89-99e6-37fa0c5cdf91", "type": "Reflex",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8",
+ "folderId": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3123,15 +3081,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '207'
+ - '195'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:12 GMT
+ - Wed, 20 May 2026 09:30:27 GMT
Pragma:
- no-cache
RequestId:
- - 622c837f-8988-4f4f-a0f4-228e52eed519
+ - 8e264f12-ca12-471e-97ff-7a58ea1f9f3a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3157,13 +3115,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "75575781-b775-4df2-be7c-eb7a330992fd", "displayName":
- "fabcli000003", "workspaceId": "92eb7715-46b8-4aa4-ab55-680935cf0635"}]}'
+ string: '{"value": [{"id": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64", "displayName":
+ "fabcli000003", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3172,15 +3130,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:13 GMT
+ - Wed, 20 May 2026 09:30:27 GMT
Pragma:
- no-cache
RequestId:
- - 1f981592-e86b-4b99-a9ba-7c1077edfa4a
+ - c5a2f323-4665-4fa7-9194-8d124776ceac
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3208,9 +3166,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635/items/0a9a9dea-0db8-4d41-b71b-e8ed10a8c91f
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/items/a5062f6e-ef9a-4a89-99e6-37fa0c5cdf91
response:
body:
string: ''
@@ -3226,11 +3184,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:30:14 GMT
+ - Wed, 20 May 2026 09:30:28 GMT
Pragma:
- no-cache
RequestId:
- - 4e2d9664-5c4f-4c4e-918e-631df7b80acf
+ - ed316716-cbc2-4029-be1b-4e457744e9be
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3256,16 +3214,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "92eb7715-46b8-4aa4-ab55-680935cf0635", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9d333cee-7d75-4024-9eee-dea08bf151e8", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2c29fee0-222c-4751-b351-99b41f590032", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3274,15 +3235,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2884'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:14 GMT
+ - Wed, 20 May 2026 09:30:29 GMT
Pragma:
- no-cache
RequestId:
- - 912208de-1a08-41ae-ac4e-4c4e5cf1b8c8
+ - a7358ba5-98c8-4c6a-a241-13eee6db026a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3308,13 +3269,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "75575781-b775-4df2-be7c-eb7a330992fd", "displayName":
- "fabcli000003", "workspaceId": "92eb7715-46b8-4aa4-ab55-680935cf0635"}]}'
+ string: '{"value": [{"id": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64", "displayName":
+ "fabcli000003", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3323,15 +3284,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:15 GMT
+ - Wed, 20 May 2026 09:30:29 GMT
Pragma:
- no-cache
RequestId:
- - ae1ee2f8-7768-44df-af97-236080a7c381
+ - 1daf4bd0-4ea0-4805-a4d3-95584e0f5ea9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3359,9 +3320,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635/folders/75575781-b775-4df2-be7c-eb7a330992fd
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/folders/c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64
response:
body:
string: ''
@@ -3377,11 +3338,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:30:16 GMT
+ - Wed, 20 May 2026 09:30:30 GMT
Pragma:
- no-cache
RequestId:
- - 889b4323-1af7-4f73-bb4c-40ef93bd0a5d
+ - 441e141b-1c1f-4674-a41b-3e0d830fd033
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3407,16 +3368,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "92eb7715-46b8-4aa4-ab55-680935cf0635", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9d333cee-7d75-4024-9eee-dea08bf151e8", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2c29fee0-222c-4751-b351-99b41f590032", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3425,15 +3389,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2884'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:17 GMT
+ - Wed, 20 May 2026 09:30:30 GMT
Pragma:
- no-cache
RequestId:
- - 52099bfe-9ff7-481e-b106-0743c98cb52a
+ - 7fb843a3-7031-4374-9f6e-92a340d1a7a4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3459,9 +3423,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/items
response:
body:
string: '{"value": []}'
@@ -3477,11 +3441,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:17 GMT
+ - Wed, 20 May 2026 09:30:31 GMT
Pragma:
- no-cache
RequestId:
- - f429b6ec-85b4-4c9a-a5fe-4e53f887b4c0
+ - 19fa7d5f-61f4-4dc8-a091-3750c5ae4097
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3509,9 +3473,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8
response:
body:
string: ''
@@ -3527,11 +3491,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:30:19 GMT
+ - Wed, 20 May 2026 09:30:31 GMT
Pragma:
- no-cache
RequestId:
- - e617413b-20a4-4a94-9953-72f5f111dc07
+ - d71e13cf-3053-4287-82bd-34ab9b357ecc
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3557,15 +3521,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2c29fee0-222c-4751-b351-99b41f590032", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3574,15 +3540,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2842'
+ - '2657'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:19 GMT
+ - Wed, 20 May 2026 09:30:32 GMT
Pragma:
- no-cache
RequestId:
- - 7f986954-9ac8-4e3b-9e92-b602b2c87046
+ - 4b54349d-4111-43cd-86dd-c92304747c62
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3608,9 +3574,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/items
response:
body:
string: '{"value": []}'
@@ -3626,11 +3592,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:20 GMT
+ - Wed, 20 May 2026 09:30:33 GMT
Pragma:
- no-cache
RequestId:
- - a887d3da-062c-4a82-9e30-aaeffaad0185
+ - 6a3befef-9f14-4ff2-bc9f-d54a9d068f17
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3658,9 +3624,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/4db2ea4d-49a9-4fa5-8522-328ed395bcc1
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032
response:
body:
string: ''
@@ -3676,11 +3642,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:30:21 GMT
+ - Wed, 20 May 2026 09:30:34 GMT
Pragma:
- no-cache
RequestId:
- - 90c86ef5-addc-4ed8-9b46-85bbbae310fd
+ - e4cdaf07-fa11-4e58-9ce8-89e5dc918c4b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[SparkJobDefinition].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[SparkJobDefinition].yaml
index 797efb939..3a02ac599 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[SparkJobDefinition].yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[SparkJobDefinition].yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:22 GMT
+ - Wed, 20 May 2026 09:30:34 GMT
Pragma:
- no-cache
RequestId:
- - 8dd48fad-07db-4d64-99b2-21edfb60def3
+ - ce720d65-d3ce-425d-a7fc-f1b1895f3b42
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,14 +62,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -77,15 +79,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:23 GMT
+ - Wed, 20 May 2026 09:30:35 GMT
Pragma:
- no-cache
RequestId:
- - 7275f64e-58cf-4cdb-bbe2-4a1eadb3bbdb
+ - 41a299d9-59d8-47fa-bddd-3400a7df2e58
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -111,7 +113,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -127,15 +129,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '424'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:28 GMT
+ - Wed, 20 May 2026 09:30:40 GMT
Pragma:
- no-cache
RequestId:
- - 6a8e51cc-7c97-45b9-90a2-9ae8032667c9
+ - 3e680607-5822-46b3-8ae6-b4fdd16b63d2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -150,8 +152,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000001", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -160,16 +161,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "747d69b2-79bb-48c9-a284-3f9a777297fc", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -178,17 +180,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '154'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:37 GMT
+ - Wed, 20 May 2026 09:30:46 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc
+ - https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc
Pragma:
- no-cache
RequestId:
- - b6c0f5ec-3e96-4d59-b03f-3c92f5394774
+ - 86412443-3413-42f7-9904-83cf96f480c4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -214,15 +216,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "747d69b2-79bb-48c9-a284-3f9a777297fc", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -231,15 +235,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2841'
+ - '2659'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:38 GMT
+ - Wed, 20 May 2026 09:30:48 GMT
Pragma:
- no-cache
RequestId:
- - 22472458-39d0-45a7-890f-fc8adab27d6e
+ - 344dccaa-8545-46c2-b061-3c82de07c480
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -265,15 +269,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "747d69b2-79bb-48c9-a284-3f9a777297fc", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -282,15 +288,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2841'
+ - '2659'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:39 GMT
+ - Wed, 20 May 2026 09:30:48 GMT
Pragma:
- no-cache
RequestId:
- - b4ddec1e-044f-466b-a671-77e57abc7a95
+ - 77295a8a-31ed-4bb6-9227-87d56454ed12
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -316,7 +322,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -332,15 +338,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '424'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:44 GMT
+ - Wed, 20 May 2026 09:30:52 GMT
Pragma:
- no-cache
RequestId:
- - b6b11c84-acae-4ece-91cd-fe17da052c1b
+ - 2597fc8a-e06e-4e0d-a30b-a24617c6b33d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -355,8 +361,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000002", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -365,16 +370,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -383,17 +389,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '155'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:52 GMT
+ - Wed, 20 May 2026 09:30:58 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/40eb0da3-18e1-4ecb-ba83-349893d9a3ed
+ - https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a
Pragma:
- no-cache
RequestId:
- - 35d1ef55-7c3c-4017-9092-654264878790
+ - 9a058842-7ae0-46ff-b4a2-024126491a7d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -419,16 +425,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "747d69b2-79bb-48c9-a284-3f9a777297fc", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -437,15 +446,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:52 GMT
+ - Wed, 20 May 2026 09:30:59 GMT
Pragma:
- no-cache
RequestId:
- - eb6cfbfc-4186-414f-ab22-dbcfd80d065b
+ - 36ca344a-ea61-4637-b9b7-1b7e109bde7f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -471,9 +480,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -489,11 +498,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:53 GMT
+ - Wed, 20 May 2026 09:30:59 GMT
Pragma:
- no-cache
RequestId:
- - 29c80bd6-8341-4c3a-b688-7cb590e9443d
+ - 333d408e-584d-4bb5-a95e-39170e12b57f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -519,9 +528,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -537,11 +546,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:54 GMT
+ - Wed, 20 May 2026 09:31:00 GMT
Pragma:
- no-cache
RequestId:
- - 62f8921a-7870-4eb9-bf7d-d4fa29bd6f28
+ - 5b494d1f-a748-421a-8073-8a0585bded0c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -565,17 +574,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/folders
response:
body:
- string: '{"id": "6f48997a-cb6a-4c8b-b653-9a89060553dc", "displayName": "fabcli000003",
- "workspaceId": "747d69b2-79bb-48c9-a284-3f9a777297fc"}'
+ string: '{"id": "6477e14d-f9f0-4180-a26d-2d72cbf3b034", "displayName": "fabcli000003",
+ "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -588,13 +597,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:54 GMT
+ - Wed, 20 May 2026 09:31:00 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/folders/6f48997a-cb6a-4c8b-b653-9a89060553dc
+ - https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/folders/6477e14d-f9f0-4180-a26d-2d72cbf3b034
Pragma:
- no-cache
RequestId:
- - 7fe77e4f-ae62-4ae8-8e59-cd804f87ba86
+ - b3464a6f-f1e9-4d07-984a-3865d34907d2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -620,16 +629,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "747d69b2-79bb-48c9-a284-3f9a777297fc", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -638,15 +650,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:55 GMT
+ - Wed, 20 May 2026 09:31:01 GMT
Pragma:
- no-cache
RequestId:
- - cf2202a3-a7f4-4c23-b7e8-023b230cdee5
+ - ee7055e7-901a-4922-86a8-a2b5b4d377b8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -672,13 +684,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "6f48997a-cb6a-4c8b-b653-9a89060553dc", "displayName":
- "fabcli000003", "workspaceId": "747d69b2-79bb-48c9-a284-3f9a777297fc"}]}'
+ string: '{"value": [{"id": "6477e14d-f9f0-4180-a26d-2d72cbf3b034", "displayName":
+ "fabcli000003", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -687,15 +699,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:55 GMT
+ - Wed, 20 May 2026 09:31:02 GMT
Pragma:
- no-cache
RequestId:
- - 13e4f45f-4317-4ffa-9617-66afaeaaa06b
+ - e410b88c-4d02-4c94-a291-c51264ff7459
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -721,9 +733,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/items
response:
body:
string: '{"value": []}'
@@ -739,11 +751,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:56 GMT
+ - Wed, 20 May 2026 09:31:03 GMT
Pragma:
- no-cache
RequestId:
- - 7074d730-7ede-4ec5-a4e4-feee17350988
+ - 1e06c4fd-6333-466e-b5a5-89fb98c6c928
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -769,9 +781,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/items
response:
body:
string: '{"value": []}'
@@ -787,11 +799,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:57 GMT
+ - Wed, 20 May 2026 09:31:04 GMT
Pragma:
- no-cache
RequestId:
- - 4ea82e1d-0e59-4260-aade-04c8392dc162
+ - 2daadc78-22b9-436e-912f-bbad2741b779
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -806,8 +818,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000004", "type":
- "SparkJobDefinition", "folderId": "6f48997a-cb6a-4c8b-b653-9a89060553dc"}'
+ body: '{"displayName": "fabcli000004", "type": "SparkJobDefinition", "folderId":
+ "6477e14d-f9f0-4180-a26d-2d72cbf3b034"}'
headers:
Accept:
- '*/*'
@@ -816,18 +828,18 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '150'
+ - '117'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/sparkJobDefinitions
+ uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/sparkJobDefinitions
response:
body:
- string: '{"id": "c31f55a0-96ee-47d4-a89d-4adfdaa2face", "type": "SparkJobDefinition",
- "displayName": "fabcli000004", "workspaceId":
- "747d69b2-79bb-48c9-a284-3f9a777297fc", "folderId": "6f48997a-cb6a-4c8b-b653-9a89060553dc"}'
+ string: '{"id": "9dbfcedb-283e-45c7-a836-fbe4386807e4", "type": "SparkJobDefinition",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc",
+ "folderId": "6477e14d-f9f0-4180-a26d-2d72cbf3b034"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -836,17 +848,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '206'
+ - '195'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:30:59 GMT
+ - Wed, 20 May 2026 09:31:06 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 54e6945e-a2f7-45c3-970d-65e78880cad7
+ - 27eeea93-a5a8-4df0-a4c0-254567893b63
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -872,16 +884,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "747d69b2-79bb-48c9-a284-3f9a777297fc", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -890,15 +905,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:31:00 GMT
+ - Wed, 20 May 2026 09:31:08 GMT
Pragma:
- no-cache
RequestId:
- - 2acd6fb6-2d48-4bd8-a665-2790cd30d69c
+ - e73b8b52-1145-49d6-a99d-7a7010762a6a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -924,53 +939,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/folders?recursive=True
- response:
- body:
- string: '{"requestId": "f5e637f3-dc2f-44fc-88ae-a7eb3040d538", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 8:31:04 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 08:31:01 GMT
- RequestId:
- - f5e637f3-dc2f-44fc-88ae-a7eb3040d538
- Retry-After:
- - '3'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "6f48997a-cb6a-4c8b-b653-9a89060553dc", "displayName":
- "fabcli000003", "workspaceId": "747d69b2-79bb-48c9-a284-3f9a777297fc"}]}'
+ string: '{"value": [{"id": "6477e14d-f9f0-4180-a26d-2d72cbf3b034", "displayName":
+ "fabcli000003", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -979,15 +954,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:31:05 GMT
+ - Wed, 20 May 2026 09:31:09 GMT
Pragma:
- no-cache
RequestId:
- - d36183dc-64e4-4cef-b0e6-7ae9122f964b
+ - 5f726f35-19b1-4718-b43f-e1ae0d549012
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1013,16 +988,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "747d69b2-79bb-48c9-a284-3f9a777297fc", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1031,15 +1009,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:31:05 GMT
+ - Wed, 20 May 2026 09:31:09 GMT
Pragma:
- no-cache
RequestId:
- - 175c3fa3-4ba5-4278-b93c-6d05fdcd7ac5
+ - e6d0e06c-b835-4acb-ae72-52959dcba3ab
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1065,16 +1043,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "747d69b2-79bb-48c9-a284-3f9a777297fc", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1083,15 +1064,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:31:06 GMT
+ - Wed, 20 May 2026 09:31:11 GMT
Pragma:
- no-cache
RequestId:
- - 5fac3109-39e0-4a26-af07-9830247bef5f
+ - ca8d40c7-19e1-42cd-b2c0-8c43d3f37d9d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1117,9 +1098,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -1135,11 +1116,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:31:07 GMT
+ - Wed, 20 May 2026 09:31:12 GMT
Pragma:
- no-cache
RequestId:
- - 00953e0c-60de-4ff2-8cf8-0da85e2510c8
+ - d6ea53fd-a199-4dc4-9e0a-d3fa72189513
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1165,9 +1146,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -1183,11 +1164,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:31:08 GMT
+ - Wed, 20 May 2026 09:31:13 GMT
Pragma:
- no-cache
RequestId:
- - 08728652-887b-4837-81f6-cffb5c904597
+ - 25578cea-6a4b-4811-850a-c90580eba2c0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1211,17 +1192,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/folders
response:
body:
- string: '{"id": "dfccfe1d-c393-41df-823c-ff7da7146ea7", "displayName": "fabcli000003",
- "workspaceId": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed"}'
+ string: '{"id": "d8c0511f-d62b-419b-bcd1-c4fc7545d280", "displayName": "fabcli000003",
+ "workspaceId": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -1234,13 +1215,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:31:08 GMT
+ - Wed, 20 May 2026 09:31:13 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/folders/dfccfe1d-c393-41df-823c-ff7da7146ea7
+ - https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/folders/d8c0511f-d62b-419b-bcd1-c4fc7545d280
Pragma:
- no-cache
RequestId:
- - eb4ec6a7-591c-4398-a6ef-efc62945f141
+ - dd68ff49-62b6-43af-bd89-fb3804a9c41b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1266,14 +1247,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/items
response:
body:
- string: '{"value": [{"id": "c31f55a0-96ee-47d4-a89d-4adfdaa2face", "type": "SparkJobDefinition",
- "displayName": "fabcli000004", "workspaceId":
- "747d69b2-79bb-48c9-a284-3f9a777297fc", "folderId": "6f48997a-cb6a-4c8b-b653-9a89060553dc"}]}'
+ string: '{"value": [{"id": "9dbfcedb-283e-45c7-a836-fbe4386807e4", "type": "SparkJobDefinition",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc",
+ "folderId": "6477e14d-f9f0-4180-a26d-2d72cbf3b034"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1282,15 +1263,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '216'
+ - '206'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:31:09 GMT
+ - Wed, 20 May 2026 09:31:14 GMT
Pragma:
- no-cache
RequestId:
- - b0eae9bc-1541-45f0-baff-d43258c9351c
+ - e9612649-6508-4f77-9d0e-064d860ec123
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1316,13 +1297,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "6f48997a-cb6a-4c8b-b653-9a89060553dc", "displayName":
- "fabcli000003", "workspaceId": "747d69b2-79bb-48c9-a284-3f9a777297fc"}]}'
+ string: '{"value": [{"id": "6477e14d-f9f0-4180-a26d-2d72cbf3b034", "displayName":
+ "fabcli000003", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1331,15 +1312,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:31:10 GMT
+ - Wed, 20 May 2026 09:31:15 GMT
Pragma:
- no-cache
RequestId:
- - 9f82e1a9-2a61-434b-801b-e1e8ecb31801
+ - f1012873-7d9b-48e6-be84-aa27552ccc9a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1365,13 +1346,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "6f48997a-cb6a-4c8b-b653-9a89060553dc", "displayName":
- "fabcli000003", "workspaceId": "747d69b2-79bb-48c9-a284-3f9a777297fc"}]}'
+ string: '{"value": [{"id": "6477e14d-f9f0-4180-a26d-2d72cbf3b034", "displayName":
+ "fabcli000003", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1380,15 +1361,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:31:10 GMT
+ - Wed, 20 May 2026 09:31:15 GMT
Pragma:
- no-cache
RequestId:
- - 4840ff38-0881-4643-b2b5-f99b28eb1311
+ - c97b5b5c-eedb-40c6-a0ed-20bfff3d7a9d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1414,14 +1395,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/items
response:
body:
- string: '{"value": [{"id": "c31f55a0-96ee-47d4-a89d-4adfdaa2face", "type": "SparkJobDefinition",
- "displayName": "fabcli000004", "workspaceId":
- "747d69b2-79bb-48c9-a284-3f9a777297fc", "folderId": "6f48997a-cb6a-4c8b-b653-9a89060553dc"}]}'
+ string: '{"value": [{"id": "9dbfcedb-283e-45c7-a836-fbe4386807e4", "type": "SparkJobDefinition",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc",
+ "folderId": "6477e14d-f9f0-4180-a26d-2d72cbf3b034"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1430,15 +1411,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '216'
+ - '206'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:31:11 GMT
+ - Wed, 20 May 2026 09:31:16 GMT
Pragma:
- no-cache
RequestId:
- - 8c245d85-3473-42d1-91da-e1b795fb2cea
+ - c3057e6d-7a6f-4f15-bb48-c09324ea683b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1464,13 +1445,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "6f48997a-cb6a-4c8b-b653-9a89060553dc", "displayName":
- "fabcli000003", "workspaceId": "747d69b2-79bb-48c9-a284-3f9a777297fc"}]}'
+ string: '{"value": [{"id": "6477e14d-f9f0-4180-a26d-2d72cbf3b034", "displayName":
+ "fabcli000003", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1479,15 +1460,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:31:12 GMT
+ - Wed, 20 May 2026 09:31:17 GMT
Pragma:
- no-cache
RequestId:
- - 88a9db3d-d97d-440f-aec9-2982800be532
+ - 94573697-d15a-456d-a9f7-55963058d418
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1513,13 +1494,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "6f48997a-cb6a-4c8b-b653-9a89060553dc", "displayName":
- "fabcli000003", "workspaceId": "747d69b2-79bb-48c9-a284-3f9a777297fc"}]}'
+ string: '{"value": [{"id": "6477e14d-f9f0-4180-a26d-2d72cbf3b034", "displayName":
+ "fabcli000003", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1528,15 +1509,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:31:13 GMT
+ - Wed, 20 May 2026 09:31:18 GMT
Pragma:
- no-cache
RequestId:
- - 3afe09a4-3c9b-4b38-a3a1-df1d9c4fa6af
+ - 490f5ce7-b3a1-4637-8c39-a955fb23b6e7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1562,16 +1543,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "747d69b2-79bb-48c9-a284-3f9a777297fc", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1580,15 +1564,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:31:14 GMT
+ - Wed, 20 May 2026 09:31:19 GMT
Pragma:
- no-cache
RequestId:
- - 3f598b15-e7c7-403e-b39b-bce8f9182847
+ - 56641731-68fc-472c-bdf2-b063732656ad
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1614,13 +1598,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "dfccfe1d-c393-41df-823c-ff7da7146ea7", "displayName":
- "fabcli000003", "workspaceId": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed"}]}'
+ string: '{"value": [{"id": "d8c0511f-d62b-419b-bcd1-c4fc7545d280", "displayName":
+ "fabcli000003", "workspaceId": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1633,11 +1617,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:31:14 GMT
+ - Wed, 20 May 2026 09:31:20 GMT
Pragma:
- no-cache
RequestId:
- - 938420f6-964f-42c6-83ad-c953aa19f1e4
+ - 7232f02c-b938-4a64-b6de-f869fdce4c0c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1663,9 +1647,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/items
response:
body:
string: '{"value": []}'
@@ -1681,11 +1665,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:31:16 GMT
+ - Wed, 20 May 2026 09:31:21 GMT
Pragma:
- no-cache
RequestId:
- - d36113c0-185c-4bff-b339-b2010ac8a238
+ - 9d028e19-d62b-4d29-af1c-2aa372b53ad7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1711,9 +1695,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/items
response:
body:
string: '{"value": []}'
@@ -1729,11 +1713,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:31:16 GMT
+ - Wed, 20 May 2026 09:31:22 GMT
Pragma:
- no-cache
RequestId:
- - f1f7fe1d-4198-4c09-aec5-025a4d20b3b5
+ - 54c4ec64-a5fe-4ca8-a6f7-3054d09f0174
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1759,9 +1743,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/items
response:
body:
string: '{"value": []}'
@@ -1777,11 +1761,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:31:17 GMT
+ - Wed, 20 May 2026 09:31:23 GMT
Pragma:
- no-cache
RequestId:
- - 8d2bebe0-7779-4635-938d-deb61b03b221
+ - 2ee816f6-a35c-461d-bcd9-c8daa9921224
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1807,14 +1791,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/items/c31f55a0-96ee-47d4-a89d-4adfdaa2face
+ uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/items/9dbfcedb-283e-45c7-a836-fbe4386807e4
response:
body:
- string: '{"id": "c31f55a0-96ee-47d4-a89d-4adfdaa2face", "type": "SparkJobDefinition",
- "displayName": "fabcli000004", "workspaceId":
- "747d69b2-79bb-48c9-a284-3f9a777297fc", "folderId": "6f48997a-cb6a-4c8b-b653-9a89060553dc"}'
+ string: '{"id": "9dbfcedb-283e-45c7-a836-fbe4386807e4", "type": "SparkJobDefinition",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc",
+ "folderId": "6477e14d-f9f0-4180-a26d-2d72cbf3b034"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1823,17 +1807,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '206'
+ - '195'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:31:18 GMT
+ - Wed, 20 May 2026 09:31:23 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 830bd552-74a6-4610-9297-f2b14bf4f4ae
+ - 09c53e8c-0d6e-4f83-8d05-9badad0c1798
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1861,14 +1845,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/items/c31f55a0-96ee-47d4-a89d-4adfdaa2face/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/items/9dbfcedb-283e-45c7-a836-fbe4386807e4/getDefinition
response:
body:
string: '{"definition": {"parts": [{"path": "SparkJobDefinitionV1.json", "payload":
"ew0KICAiZXhlY3V0YWJsZUZpbGUiOiBudWxsLA0KICAiZGVmYXVsdExha2Vob3VzZUFydGlmYWN0SWQiOiBudWxsLA0KICAibWFpbkNsYXNzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMYWtlaG91c2VJZHMiOiBbXSwNCiAgInJldHJ5UG9saWN5IjogbnVsbCwNCiAgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMaWJyYXJ5VXJpcyI6IG51bGwsDQogICJsYW5ndWFnZSI6IG51bGwsDQogICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsDQp9",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
"payloadType": "InlineBase64"}]}}'
headers:
Access-Control-Expose-Headers:
@@ -1878,15 +1862,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '616'
+ - '585'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:31:19 GMT
+ - Wed, 20 May 2026 09:31:25 GMT
Pragma:
- no-cache
RequestId:
- - bc355f3f-ad84-452c-8361-38121fcb70d5
+ - 348b169a-eaf6-4324-9265-4065f8a9e704
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1901,11 +1885,10 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "SparkJobDefinition", "displayName":
- "fabcli000004", "definition": {"parts": [{"path": "SparkJobDefinitionV1.json",
- "payload": "ew0KICAiZXhlY3V0YWJsZUZpbGUiOiBudWxsLA0KICAiZGVmYXVsdExha2Vob3VzZUFydGlmYWN0SWQiOiBudWxsLA0KICAibWFpbkNsYXNzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMYWtlaG91c2VJZHMiOiBbXSwNCiAgInJldHJ5UG9saWN5IjogbnVsbCwNCiAgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMaWJyYXJ5VXJpcyI6IG51bGwsDQogICJsYW5ndWFnZSI6IG51bGwsDQogICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsDQp9",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
- "payloadType": "InlineBase64"}]}, "folderId": "dfccfe1d-c393-41df-823c-ff7da7146ea7"}'
+ body: '{"type": "SparkJobDefinition", "displayName": "fabcli000004", "definition":
+ {"parts": [{"path": "SparkJobDefinitionV1.json", "payload": "ew0KICAiZXhlY3V0YWJsZUZpbGUiOiBudWxsLA0KICAiZGVmYXVsdExha2Vob3VzZUFydGlmYWN0SWQiOiBudWxsLA0KICAibWFpbkNsYXNzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMYWtlaG91c2VJZHMiOiBbXSwNCiAgInJldHJ5UG9saWN5IjogbnVsbCwNCiAgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMaWJyYXJ5VXJpcyI6IG51bGwsDQogICJsYW5ndWFnZSI6IG51bGwsDQogICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsDQp9",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
+ "payloadType": "InlineBase64"}]}, "folderId": "d8c0511f-d62b-419b-bcd1-c4fc7545d280"}'
headers:
Accept:
- '*/*'
@@ -1914,18 +1897,18 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1159'
+ - '1074'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/items
response:
body:
- string: '{"id": "2dc8f689-e555-4462-9718-7122e32cbf33", "type": "SparkJobDefinition",
- "displayName": "fabcli000004", "workspaceId":
- "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "folderId": "dfccfe1d-c393-41df-823c-ff7da7146ea7"}'
+ string: '{"id": "08a168a4-6b8e-4ae3-9464-99aae422593a", "type": "SparkJobDefinition",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a",
+ "folderId": "d8c0511f-d62b-419b-bcd1-c4fc7545d280"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1934,17 +1917,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '205'
+ - '194'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:31:21 GMT
+ - Wed, 20 May 2026 09:31:28 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 73c0ec40-7bef-4ef9-9857-a24c82251d51
+ - 813f510f-97ad-4b35-a9f9-05650926d235
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1970,14 +1953,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/items
response:
body:
- string: '{"value": [{"id": "c31f55a0-96ee-47d4-a89d-4adfdaa2face", "type": "SparkJobDefinition",
- "displayName": "fabcli000004", "workspaceId":
- "747d69b2-79bb-48c9-a284-3f9a777297fc", "folderId": "6f48997a-cb6a-4c8b-b653-9a89060553dc"}]}'
+ string: '{"value": [{"id": "9dbfcedb-283e-45c7-a836-fbe4386807e4", "type": "SparkJobDefinition",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc",
+ "folderId": "6477e14d-f9f0-4180-a26d-2d72cbf3b034"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1986,15 +1969,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '216'
+ - '206'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:31:22 GMT
+ - Wed, 20 May 2026 09:31:28 GMT
Pragma:
- no-cache
RequestId:
- - f8ac2263-da34-4399-94bf-2c138a9f16ef
+ - cf32766a-b9fb-44ce-aa82-4ae05f1f333b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2020,13 +2003,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "6f48997a-cb6a-4c8b-b653-9a89060553dc", "displayName":
- "fabcli000003", "workspaceId": "747d69b2-79bb-48c9-a284-3f9a777297fc"}]}'
+ string: '{"value": [{"id": "6477e14d-f9f0-4180-a26d-2d72cbf3b034", "displayName":
+ "fabcli000003", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2035,15 +2018,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:31:23 GMT
+ - Wed, 20 May 2026 09:31:29 GMT
Pragma:
- no-cache
RequestId:
- - 31e91d47-d27d-4369-9f1f-a8435c91d494
+ - 12ade1e9-1bd9-422e-a934-0f24e8fff6af
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2069,13 +2052,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "6f48997a-cb6a-4c8b-b653-9a89060553dc", "displayName":
- "fabcli000003", "workspaceId": "747d69b2-79bb-48c9-a284-3f9a777297fc"}]}'
+ string: '{"value": [{"id": "6477e14d-f9f0-4180-a26d-2d72cbf3b034", "displayName":
+ "fabcli000003", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2084,15 +2067,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:31:23 GMT
+ - Wed, 20 May 2026 09:31:30 GMT
Pragma:
- no-cache
RequestId:
- - 74471907-db08-4f07-be13-a1ec0aba554a
+ - 821c15e0-2dce-474e-8863-917b8d6005ba
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2118,16 +2101,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "747d69b2-79bb-48c9-a284-3f9a777297fc", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2136,15 +2122,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:31:24 GMT
+ - Wed, 20 May 2026 09:31:31 GMT
Pragma:
- no-cache
RequestId:
- - d7a8b5b3-afb2-407a-af80-6cb9977adc3b
+ - c431139a-83fc-4095-9de9-69bd930b2c28
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2170,14 +2156,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/items
response:
body:
- string: '{"value": [{"id": "2dc8f689-e555-4462-9718-7122e32cbf33", "type": "SparkJobDefinition",
- "displayName": "fabcli000004", "workspaceId":
- "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "folderId": "dfccfe1d-c393-41df-823c-ff7da7146ea7"}]}'
+ string: '{"value": [{"id": "08a168a4-6b8e-4ae3-9464-99aae422593a", "type": "SparkJobDefinition",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a",
+ "folderId": "d8c0511f-d62b-419b-bcd1-c4fc7545d280"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2186,15 +2172,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '216'
+ - '205'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:31:24 GMT
+ - Wed, 20 May 2026 09:31:31 GMT
Pragma:
- no-cache
RequestId:
- - a990969e-93d1-43ac-9515-4389958ade16
+ - 71e61d05-774c-4122-85cc-743ebde69d0f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2220,53 +2206,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/folders?recursive=True
response:
body:
- string: '{"requestId": "c231a1bd-d103-46dc-950a-8f708f7b0d3e", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 8:32:05 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 08:31:25 GMT
- RequestId:
- - c231a1bd-d103-46dc-950a-8f708f7b0d3e
- Retry-After:
- - '40'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/folders?recursive=True
- response:
- body:
- string: '{"value": [{"id": "dfccfe1d-c393-41df-823c-ff7da7146ea7", "displayName":
- "fabcli000003", "workspaceId": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed"}]}'
+ string: '{"value": [{"id": "d8c0511f-d62b-419b-bcd1-c4fc7545d280", "displayName":
+ "fabcli000003", "workspaceId": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2279,11 +2225,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:32:08 GMT
+ - Wed, 20 May 2026 09:31:33 GMT
Pragma:
- no-cache
RequestId:
- - ded98fae-82d8-4e10-99ac-04132a7a87b8
+ - b2f75407-6f08-4b14-ac23-e3331ca28ffe
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2309,13 +2255,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "dfccfe1d-c393-41df-823c-ff7da7146ea7", "displayName":
- "fabcli000003", "workspaceId": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed"}]}'
+ string: '{"value": [{"id": "d8c0511f-d62b-419b-bcd1-c4fc7545d280", "displayName":
+ "fabcli000003", "workspaceId": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2328,11 +2274,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:32:09 GMT
+ - Wed, 20 May 2026 09:31:33 GMT
Pragma:
- no-cache
RequestId:
- - 5a54a527-c705-4d7b-a36a-8697333a938e
+ - d384b7be-4ef1-4450-b03d-15d9ca795e44
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2358,16 +2304,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "747d69b2-79bb-48c9-a284-3f9a777297fc", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2376,15 +2325,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:32:09 GMT
+ - Wed, 20 May 2026 09:31:34 GMT
Pragma:
- no-cache
RequestId:
- - 3c2ac28b-fba2-4428-9b59-f2a8aede322b
+ - 5a3cd8e2-c1ee-49c9-acab-f46550662d94
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2410,13 +2359,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "dfccfe1d-c393-41df-823c-ff7da7146ea7", "displayName":
- "fabcli000003", "workspaceId": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed"}]}'
+ string: '{"value": [{"id": "d8c0511f-d62b-419b-bcd1-c4fc7545d280", "displayName":
+ "fabcli000003", "workspaceId": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2429,11 +2378,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:32:10 GMT
+ - Wed, 20 May 2026 09:31:35 GMT
Pragma:
- no-cache
RequestId:
- - 60fe1c81-6088-4f72-a8a1-24710c6e4f50
+ - 3aabb5a2-5a52-46e9-9d4a-065d7e832f60
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2459,14 +2408,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/items
response:
body:
- string: '{"value": [{"id": "2dc8f689-e555-4462-9718-7122e32cbf33", "type": "SparkJobDefinition",
- "displayName": "fabcli000004", "workspaceId":
- "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "folderId": "dfccfe1d-c393-41df-823c-ff7da7146ea7"}]}'
+ string: '{"value": [{"id": "08a168a4-6b8e-4ae3-9464-99aae422593a", "type": "SparkJobDefinition",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a",
+ "folderId": "d8c0511f-d62b-419b-bcd1-c4fc7545d280"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2475,15 +2424,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '216'
+ - '205'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:32:11 GMT
+ - Wed, 20 May 2026 09:31:35 GMT
Pragma:
- no-cache
RequestId:
- - d0d37ebb-c889-4b8c-a2d9-b942db92f279
+ - 136d52f6-a26a-4afc-b526-0198574eb8e1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2509,13 +2458,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "dfccfe1d-c393-41df-823c-ff7da7146ea7", "displayName":
- "fabcli000003", "workspaceId": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed"}]}'
+ string: '{"value": [{"id": "d8c0511f-d62b-419b-bcd1-c4fc7545d280", "displayName":
+ "fabcli000003", "workspaceId": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2528,11 +2477,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:32:11 GMT
+ - Wed, 20 May 2026 09:31:36 GMT
Pragma:
- no-cache
RequestId:
- - c7ecd01f-e72e-41b3-8890-5e3b1907f418
+ - 5fc450a7-207e-4b86-945e-dc7f96e1f07a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2558,13 +2507,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "dfccfe1d-c393-41df-823c-ff7da7146ea7", "displayName":
- "fabcli000003", "workspaceId": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed"}]}'
+ string: '{"value": [{"id": "d8c0511f-d62b-419b-bcd1-c4fc7545d280", "displayName":
+ "fabcli000003", "workspaceId": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2577,11 +2526,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:32:13 GMT
+ - Wed, 20 May 2026 09:31:36 GMT
Pragma:
- no-cache
RequestId:
- - 1a3073fe-a19c-40e8-9dba-df34557b65b2
+ - 3de522eb-6c37-4a58-970b-b5cc1b2b1194
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2607,16 +2556,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "747d69b2-79bb-48c9-a284-3f9a777297fc", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2625,15 +2577,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:32:14 GMT
+ - Wed, 20 May 2026 09:31:37 GMT
Pragma:
- no-cache
RequestId:
- - e46dd814-4e7d-4056-9279-52ff00cb36fa
+ - 3fbf522f-596a-4eec-8ac7-97f0b52db1b3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2659,13 +2611,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "dfccfe1d-c393-41df-823c-ff7da7146ea7", "displayName":
- "fabcli000003", "workspaceId": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed"}]}'
+ string: '{"value": [{"id": "d8c0511f-d62b-419b-bcd1-c4fc7545d280", "displayName":
+ "fabcli000003", "workspaceId": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2678,11 +2630,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:32:14 GMT
+ - Wed, 20 May 2026 09:31:39 GMT
Pragma:
- no-cache
RequestId:
- - 9cff34b2-a1a2-4809-94bc-a74a5e753397
+ - 43ed4892-9cc5-487b-bde7-b277cf497ac0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2708,14 +2660,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/items
response:
body:
- string: '{"value": [{"id": "2dc8f689-e555-4462-9718-7122e32cbf33", "type": "SparkJobDefinition",
- "displayName": "fabcli000004", "workspaceId":
- "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "folderId": "dfccfe1d-c393-41df-823c-ff7da7146ea7"}]}'
+ string: '{"value": [{"id": "08a168a4-6b8e-4ae3-9464-99aae422593a", "type": "SparkJobDefinition",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a",
+ "folderId": "d8c0511f-d62b-419b-bcd1-c4fc7545d280"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2724,15 +2676,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '216'
+ - '205'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:32:15 GMT
+ - Wed, 20 May 2026 09:31:39 GMT
Pragma:
- no-cache
RequestId:
- - dfab5c5b-144b-4bf3-a6e7-4492887ef302
+ - 997b2126-cf37-4a26-ad3a-3f426a8f0192
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2758,13 +2710,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "dfccfe1d-c393-41df-823c-ff7da7146ea7", "displayName":
- "fabcli000003", "workspaceId": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed"}]}'
+ string: '{"value": [{"id": "d8c0511f-d62b-419b-bcd1-c4fc7545d280", "displayName":
+ "fabcli000003", "workspaceId": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2777,11 +2729,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:32:16 GMT
+ - Wed, 20 May 2026 09:31:40 GMT
Pragma:
- no-cache
RequestId:
- - 3a6282fc-609f-4cca-b718-4f491838ed76
+ - 34f324e6-e82a-467e-b84b-44a8f0af6694
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2809,9 +2761,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/items/2dc8f689-e555-4462-9718-7122e32cbf33
+ uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/items/08a168a4-6b8e-4ae3-9464-99aae422593a
response:
body:
string: ''
@@ -2827,11 +2779,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:32:17 GMT
+ - Wed, 20 May 2026 09:31:41 GMT
Pragma:
- no-cache
RequestId:
- - 271d9aa0-0336-4152-ade3-c20c9e9ae2e8
+ - 9f59014b-2b9e-4698-9a55-81411a0b48b3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2857,16 +2809,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "747d69b2-79bb-48c9-a284-3f9a777297fc", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2875,15 +2830,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:32:18 GMT
+ - Wed, 20 May 2026 09:31:42 GMT
Pragma:
- no-cache
RequestId:
- - ab7f3e2d-6b4b-494d-88fb-6f07bfb16b52
+ - 1e859659-3835-439f-97c0-2acfd6284254
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2909,13 +2864,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "dfccfe1d-c393-41df-823c-ff7da7146ea7", "displayName":
- "fabcli000003", "workspaceId": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed"}]}'
+ string: '{"value": [{"id": "d8c0511f-d62b-419b-bcd1-c4fc7545d280", "displayName":
+ "fabcli000003", "workspaceId": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2928,11 +2883,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:32:18 GMT
+ - Wed, 20 May 2026 09:31:43 GMT
Pragma:
- no-cache
RequestId:
- - 255fd04a-dc34-4ab8-a248-933f679b1492
+ - 2f5ecb23-8067-41a1-b87e-87280a24eee2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2960,9 +2915,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/folders/dfccfe1d-c393-41df-823c-ff7da7146ea7
+ uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/folders/d8c0511f-d62b-419b-bcd1-c4fc7545d280
response:
body:
string: ''
@@ -2978,11 +2933,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:32:19 GMT
+ - Wed, 20 May 2026 09:31:43 GMT
Pragma:
- no-cache
RequestId:
- - d20cc6a1-cf24-4662-be86-f83ea3d2371b
+ - 76ecfde5-ef87-49ad-b644-8987177891b8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3008,16 +2963,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "747d69b2-79bb-48c9-a284-3f9a777297fc", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3026,15 +2984,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:32:20 GMT
+ - Wed, 20 May 2026 09:31:44 GMT
Pragma:
- no-cache
RequestId:
- - 96929eec-accc-4814-8a90-24788287e9c9
+ - 2ed4a36f-6516-48d2-a5e6-6f6dbd62acd7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3060,13 +3018,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "6f48997a-cb6a-4c8b-b653-9a89060553dc", "displayName":
- "fabcli000003", "workspaceId": "747d69b2-79bb-48c9-a284-3f9a777297fc"}]}'
+ string: '{"value": [{"id": "6477e14d-f9f0-4180-a26d-2d72cbf3b034", "displayName":
+ "fabcli000003", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3075,15 +3033,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:32:21 GMT
+ - Wed, 20 May 2026 09:31:45 GMT
Pragma:
- no-cache
RequestId:
- - 05765cd1-12fb-4e99-b690-f34e877814a3
+ - 4f2bbff1-e50c-471f-98d2-576fef0121e3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3109,14 +3067,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/items
response:
body:
- string: '{"value": [{"id": "c31f55a0-96ee-47d4-a89d-4adfdaa2face", "type": "SparkJobDefinition",
- "displayName": "fabcli000004", "workspaceId":
- "747d69b2-79bb-48c9-a284-3f9a777297fc", "folderId": "6f48997a-cb6a-4c8b-b653-9a89060553dc"}]}'
+ string: '{"value": [{"id": "9dbfcedb-283e-45c7-a836-fbe4386807e4", "type": "SparkJobDefinition",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc",
+ "folderId": "6477e14d-f9f0-4180-a26d-2d72cbf3b034"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3125,15 +3083,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '216'
+ - '206'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:32:21 GMT
+ - Wed, 20 May 2026 09:31:46 GMT
Pragma:
- no-cache
RequestId:
- - fee9ce10-47b1-490b-bf8c-4d18ccf163ca
+ - 3ad09487-d3a5-4386-aa2c-e18060e9e2a0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3159,13 +3117,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "6f48997a-cb6a-4c8b-b653-9a89060553dc", "displayName":
- "fabcli000003", "workspaceId": "747d69b2-79bb-48c9-a284-3f9a777297fc"}]}'
+ string: '{"value": [{"id": "6477e14d-f9f0-4180-a26d-2d72cbf3b034", "displayName":
+ "fabcli000003", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3174,15 +3132,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:32:22 GMT
+ - Wed, 20 May 2026 09:31:47 GMT
Pragma:
- no-cache
RequestId:
- - fddf023b-7d0f-477b-9ceb-b4b9b6abd8b9
+ - a5e091cf-3b92-4905-9e9d-cdc8264a2962
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3210,9 +3168,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/items/c31f55a0-96ee-47d4-a89d-4adfdaa2face
+ uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/items/9dbfcedb-283e-45c7-a836-fbe4386807e4
response:
body:
string: ''
@@ -3228,11 +3186,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:32:24 GMT
+ - Wed, 20 May 2026 09:31:48 GMT
Pragma:
- no-cache
RequestId:
- - 7787a5d5-91ae-439d-8caa-2b50a53a19cf
+ - e92b4c4c-25bd-4742-a81f-47dcac0a9f0d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3258,16 +3216,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "747d69b2-79bb-48c9-a284-3f9a777297fc", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3276,15 +3237,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:32:24 GMT
+ - Wed, 20 May 2026 09:31:48 GMT
Pragma:
- no-cache
RequestId:
- - ed08a9bb-d2cf-4468-8f01-182ace1011c1
+ - c37f9e6e-6086-470e-8f60-c8f9daa019ae
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3310,53 +3271,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/folders?recursive=True
response:
body:
- string: '{"requestId": "fab194b2-3a1f-455b-bef5-92384485704e", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 8:33:09 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 08:32:25 GMT
- RequestId:
- - fab194b2-3a1f-455b-bef5-92384485704e
- Retry-After:
- - '44'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/folders?recursive=True
- response:
- body:
- string: '{"value": [{"id": "6f48997a-cb6a-4c8b-b653-9a89060553dc", "displayName":
- "fabcli000003", "workspaceId": "747d69b2-79bb-48c9-a284-3f9a777297fc"}]}'
+ string: '{"value": [{"id": "6477e14d-f9f0-4180-a26d-2d72cbf3b034", "displayName":
+ "fabcli000003", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3365,15 +3286,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:33:12 GMT
+ - Wed, 20 May 2026 09:31:49 GMT
Pragma:
- no-cache
RequestId:
- - 5bfc5c20-a08c-4139-9394-cc04b6b1b946
+ - 36195dff-488b-4590-b81e-f21ad53c53b4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3401,9 +3322,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/folders/6f48997a-cb6a-4c8b-b653-9a89060553dc
+ uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/folders/6477e14d-f9f0-4180-a26d-2d72cbf3b034
response:
body:
string: ''
@@ -3419,11 +3340,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:33:13 GMT
+ - Wed, 20 May 2026 09:31:50 GMT
Pragma:
- no-cache
RequestId:
- - c7ee7c92-02ce-4eb7-a89b-16a025c4d1e3
+ - bfa05f28-9e92-430c-9f5d-6cf249e7171d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3449,16 +3370,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "747d69b2-79bb-48c9-a284-3f9a777297fc", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3467,15 +3391,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:33:14 GMT
+ - Wed, 20 May 2026 09:31:51 GMT
Pragma:
- no-cache
RequestId:
- - f2ca89b3-338b-4b4c-b7b2-86c732cc8cd1
+ - 89c21dc4-9038-4b15-903d-5499389123bb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3501,9 +3425,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/items
response:
body:
string: '{"value": []}'
@@ -3519,11 +3443,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:33:15 GMT
+ - Wed, 20 May 2026 09:31:51 GMT
Pragma:
- no-cache
RequestId:
- - 89bc07e3-cb31-48ab-97a4-f2fbb5734c4a
+ - 3d2bbbcf-2828-4608-997f-e8155516015d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3551,9 +3475,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc
+ uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc
response:
body:
string: ''
@@ -3569,11 +3493,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:33:16 GMT
+ - Wed, 20 May 2026 09:31:52 GMT
Pragma:
- no-cache
RequestId:
- - 307d8a29-456c-4076-9996-8ce800d63644
+ - 52ba5f7f-6584-4fea-bd5b-a133067ee507
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3599,15 +3523,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3616,15 +3542,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2844'
+ - '2660'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:33:16 GMT
+ - Wed, 20 May 2026 09:31:52 GMT
Pragma:
- no-cache
RequestId:
- - b40f25a8-bdd7-4d7f-b6b8-0ffdc312d618
+ - ce5dda8c-9a14-464d-9122-e2df5eb23b5f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3650,9 +3576,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/items
response:
body:
string: '{"value": []}'
@@ -3668,11 +3594,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:33:16 GMT
+ - Wed, 20 May 2026 09:31:53 GMT
Pragma:
- no-cache
RequestId:
- - dc555566-ffcc-4f8b-be62-2f75b9a160cf
+ - 9cd7292a-84e5-4b52-b94e-3db2299ac6ac
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3700,9 +3626,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/40eb0da3-18e1-4ecb-ba83-349893d9a3ed
+ uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a
response:
body:
string: ''
@@ -3718,11 +3644,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:33:18 GMT
+ - Wed, 20 May 2026 09:31:54 GMT
Pragma:
- no-cache
RequestId:
- - 37bf8062-794c-475b-94b3-6ea300759f7c
+ - 96f9abff-bb6b-4578-85d8-8abac3fb752e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[UserDataFunction].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[UserDataFunction].yaml
index 2c81b5532..1a1daf8ae 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[UserDataFunction].yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[UserDataFunction].yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:36:59 GMT
+ - Wed, 20 May 2026 09:34:32 GMT
Pragma:
- no-cache
RequestId:
- - fc71c787-252f-4cfd-ba77-cc1954085995
+ - ffe94b05-931c-4be8-b84f-160d24bff2ac
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,14 +62,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -77,15 +79,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:00 GMT
+ - Wed, 20 May 2026 09:34:32 GMT
Pragma:
- no-cache
RequestId:
- - b9f248a8-48f8-4ff8-befd-24aaac83369d
+ - 2e053c0e-7334-4ac5-8dea-e7c0fb8639e4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -111,7 +113,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -127,15 +129,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '427'
+ - '425'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:06 GMT
+ - Wed, 20 May 2026 09:34:38 GMT
Pragma:
- no-cache
RequestId:
- - 8e79e504-beb2-48e0-b049-633e19933ad2
+ - 3f867412-3d95-4bc9-a2f6-99beedfa4110
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -150,8 +152,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000001", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -160,16 +161,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "8a45ab65-004c-4701-8010-749472af28d8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "3de1955c-4351-4fd7-b13c-c3293865efdf", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -178,17 +180,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '167'
+ - '155'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:14 GMT
+ - Wed, 20 May 2026 09:34:44 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8
+ - https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf
Pragma:
- no-cache
RequestId:
- - 57628633-73a9-4e0f-a723-0eba2ffdc172
+ - bd766985-9b24-4e09-9c46-92ea91d31eb4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -214,15 +216,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "8a45ab65-004c-4701-8010-749472af28d8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "3de1955c-4351-4fd7-b13c-c3293865efdf", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -231,15 +235,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2843'
+ - '2656'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:15 GMT
+ - Wed, 20 May 2026 09:34:45 GMT
Pragma:
- no-cache
RequestId:
- - 076e9389-00f7-439d-9363-1212baf7c55a
+ - c600824d-2bbb-48e7-98d1-de9c79a1403a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -265,15 +269,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "8a45ab65-004c-4701-8010-749472af28d8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "3de1955c-4351-4fd7-b13c-c3293865efdf", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -282,15 +288,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2843'
+ - '2656'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:15 GMT
+ - Wed, 20 May 2026 09:34:46 GMT
Pragma:
- no-cache
RequestId:
- - 6c0ee6a8-5457-4550-b6f7-3d93aafbe6db
+ - 1dbb4c8c-b9d2-413d-80ba-7570f5ddf5d4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -316,7 +322,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -332,15 +338,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '427'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:20 GMT
+ - Wed, 20 May 2026 09:34:49 GMT
Pragma:
- no-cache
RequestId:
- - 82ef3f0a-8db0-4079-926d-9321b30cc16d
+ - 999530c0-7a55-48d7-8384-f12087378080
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -355,8 +361,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000002", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -365,16 +370,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "93eb3596-2c8f-4aa4-be02-d3420853704e", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "5389187e-90dc-42d8-b7af-a37dfe3e8640", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -383,17 +389,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '165'
+ - '155'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:29 GMT
+ - Wed, 20 May 2026 09:34:56 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/93eb3596-2c8f-4aa4-be02-d3420853704e
+ - https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640
Pragma:
- no-cache
RequestId:
- - 5c5d84dc-4378-4203-932b-35c2d695f3c0
+ - 2f590b86-677b-4c96-bc20-8ebfe1012f38
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -419,16 +425,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "8a45ab65-004c-4701-8010-749472af28d8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "93eb3596-2c8f-4aa4-be02-d3420853704e", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "3de1955c-4351-4fd7-b13c-c3293865efdf", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "5389187e-90dc-42d8-b7af-a37dfe3e8640", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -437,15 +446,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2692'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:30 GMT
+ - Wed, 20 May 2026 09:34:57 GMT
Pragma:
- no-cache
RequestId:
- - 092cbeb5-120b-4006-adf9-4044bf8dd0fb
+ - 2c1e6f87-49d3-44d3-8019-ac029534c5b1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -471,9 +480,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -489,11 +498,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:30 GMT
+ - Wed, 20 May 2026 09:34:57 GMT
Pragma:
- no-cache
RequestId:
- - 214d9a46-3c6c-4af1-be43-38ad5b923b93
+ - 9d0bf31d-f097-4b65-91b1-8abf5c11b3af
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -519,9 +528,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -537,11 +546,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:30 GMT
+ - Wed, 20 May 2026 09:34:58 GMT
Pragma:
- no-cache
RequestId:
- - f6d5bcfc-a5ae-4f93-aab8-788b3a9b8c79
+ - 4909052d-8aff-4b99-82a9-4d8689170f69
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -565,17 +574,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/folders
response:
body:
- string: '{"id": "7a343f3b-0a57-4adb-95fb-5723e265f971", "displayName": "fabcli000003",
- "workspaceId": "8a45ab65-004c-4701-8010-749472af28d8"}'
+ string: '{"id": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a", "displayName": "fabcli000003",
+ "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -588,13 +597,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:31 GMT
+ - Wed, 20 May 2026 09:34:59 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/folders/7a343f3b-0a57-4adb-95fb-5723e265f971
+ - https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/folders/f3ad0c8e-b066-46f4-897a-2f9f7cafd71a
Pragma:
- no-cache
RequestId:
- - c50a9b70-fad6-4546-b29c-d212109ea07b
+ - 3ad55417-8335-443a-b61c-2e831b5958e7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -620,16 +629,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "8a45ab65-004c-4701-8010-749472af28d8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "93eb3596-2c8f-4aa4-be02-d3420853704e", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "3de1955c-4351-4fd7-b13c-c3293865efdf", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "5389187e-90dc-42d8-b7af-a37dfe3e8640", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -638,15 +650,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2692'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:31 GMT
+ - Wed, 20 May 2026 09:35:01 GMT
Pragma:
- no-cache
RequestId:
- - fbd9380b-47c4-455a-92e1-40f1e2d5f1eb
+ - 47d64ffe-a2ef-4313-80cd-95a97bdb378a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -672,13 +684,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "7a343f3b-0a57-4adb-95fb-5723e265f971", "displayName":
- "fabcli000003", "workspaceId": "8a45ab65-004c-4701-8010-749472af28d8"}]}'
+ string: '{"value": [{"id": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a", "displayName":
+ "fabcli000003", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -687,15 +699,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '145'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:32 GMT
+ - Wed, 20 May 2026 09:35:01 GMT
Pragma:
- no-cache
RequestId:
- - 78a03236-10df-4fc4-9d1b-b94c66556b51
+ - a39a70dd-d39d-404d-903b-dc721b15ee64
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -721,9 +733,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/items
response:
body:
string: '{"value": []}'
@@ -739,11 +751,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:33 GMT
+ - Wed, 20 May 2026 09:35:02 GMT
Pragma:
- no-cache
RequestId:
- - ce265d78-4820-4090-b5e1-89600001b706
+ - b32d1927-1513-4f03-84d2-3e2d65f7cd37
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -769,9 +781,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/items
response:
body:
string: '{"value": []}'
@@ -787,11 +799,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:33 GMT
+ - Wed, 20 May 2026 09:35:03 GMT
Pragma:
- no-cache
RequestId:
- - dfdd70f0-2ee4-419e-adc7-e29c2c1126fa
+ - 56b37933-068f-4667-a26e-548e950d4d6e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -806,8 +818,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000004", "type":
- "UserDataFunction", "folderId": "7a343f3b-0a57-4adb-95fb-5723e265f971"}'
+ body: '{"displayName": "fabcli000004", "type": "UserDataFunction", "folderId":
+ "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a"}'
headers:
Accept:
- '*/*'
@@ -816,18 +828,18 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '148'
+ - '115'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/userdatafunctions
+ uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/userdatafunctions
response:
body:
- string: '{"id": "63c6dd9c-e3c1-4304-b2fe-1dd7f03b3208", "type": "UserDataFunction",
- "displayName": "fabcli000004", "workspaceId":
- "8a45ab65-004c-4701-8010-749472af28d8", "folderId": "7a343f3b-0a57-4adb-95fb-5723e265f971"}'
+ string: '{"id": "cc71f28b-c903-4fee-a0e1-f47b2dcc51e2", "type": "UserDataFunction",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf",
+ "folderId": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -836,17 +848,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '204'
+ - '193'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:36 GMT
+ - Wed, 20 May 2026 09:35:06 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 67f1fca1-2482-4e8e-80cd-64e2d9849aaa
+ - 55a451fc-05bb-4c5f-a4ad-c314ed6767a3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -872,16 +884,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "8a45ab65-004c-4701-8010-749472af28d8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "93eb3596-2c8f-4aa4-be02-d3420853704e", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "3de1955c-4351-4fd7-b13c-c3293865efdf", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "5389187e-90dc-42d8-b7af-a37dfe3e8640", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -890,15 +905,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2692'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:37 GMT
+ - Wed, 20 May 2026 09:35:06 GMT
Pragma:
- no-cache
RequestId:
- - 35aa9f19-d6c6-4010-b24e-b403f72c0fa7
+ - 1b959f71-5fb8-4cc8-a630-b4bc24b017a6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -924,53 +939,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/folders?recursive=True
- response:
- body:
- string: '{"requestId": "6686cfb4-b276-4cfd-b3d7-e2b59b94e3e3", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 8:37:43 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 08:37:38 GMT
- RequestId:
- - 6686cfb4-b276-4cfd-b3d7-e2b59b94e3e3
- Retry-After:
- - '5'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "7a343f3b-0a57-4adb-95fb-5723e265f971", "displayName":
- "fabcli000003", "workspaceId": "8a45ab65-004c-4701-8010-749472af28d8"}]}'
+ string: '{"value": [{"id": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a", "displayName":
+ "fabcli000003", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -979,15 +954,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '145'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:43 GMT
+ - Wed, 20 May 2026 09:35:08 GMT
Pragma:
- no-cache
RequestId:
- - 9f29875b-7590-4ccf-807f-f1c5e976543f
+ - 289f3fb3-9360-44b4-8201-ba7ace675ad5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1013,16 +988,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "8a45ab65-004c-4701-8010-749472af28d8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "93eb3596-2c8f-4aa4-be02-d3420853704e", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "3de1955c-4351-4fd7-b13c-c3293865efdf", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "5389187e-90dc-42d8-b7af-a37dfe3e8640", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1031,15 +1009,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2692'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:43 GMT
+ - Wed, 20 May 2026 09:35:08 GMT
Pragma:
- no-cache
RequestId:
- - 8c9e743d-1e93-4eb8-a65b-66d3144a55e0
+ - 2d2d3776-8cc9-42b9-9005-eac89ce2fd17
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1065,16 +1043,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "8a45ab65-004c-4701-8010-749472af28d8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "93eb3596-2c8f-4aa4-be02-d3420853704e", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "3de1955c-4351-4fd7-b13c-c3293865efdf", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "5389187e-90dc-42d8-b7af-a37dfe3e8640", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1083,15 +1064,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2692'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:44 GMT
+ - Wed, 20 May 2026 09:35:09 GMT
Pragma:
- no-cache
RequestId:
- - 9a1e4a73-c3b5-41f9-ba0e-97707e441a7b
+ - a602e019-7635-4599-a78f-86f6ef8e1ea9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1117,9 +1098,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/93eb3596-2c8f-4aa4-be02-d3420853704e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -1135,11 +1116,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:45 GMT
+ - Wed, 20 May 2026 09:35:10 GMT
Pragma:
- no-cache
RequestId:
- - 7cc2cea1-5541-4c91-8d64-243c8113c99b
+ - b616075a-50ca-425f-832b-a0fccf1f64a1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1165,9 +1146,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/93eb3596-2c8f-4aa4-be02-d3420853704e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -1183,11 +1164,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:46 GMT
+ - Wed, 20 May 2026 09:35:12 GMT
Pragma:
- no-cache
RequestId:
- - 46466059-c026-4f65-be6c-1de06f921265
+ - 99ceb505-8bd5-4d56-a2a1-e7e1455b199a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1211,17 +1192,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/93eb3596-2c8f-4aa4-be02-d3420853704e/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/folders
response:
body:
- string: '{"id": "1e9dc060-5f16-46c9-b7c5-81504b8d888c", "displayName": "fabcli000003",
- "workspaceId": "93eb3596-2c8f-4aa4-be02-d3420853704e"}'
+ string: '{"id": "2f96208a-7830-4db7-9575-1170bf953db5", "displayName": "fabcli000003",
+ "workspaceId": "5389187e-90dc-42d8-b7af-a37dfe3e8640"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -1230,17 +1211,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '133'
+ - '134'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:46 GMT
+ - Wed, 20 May 2026 09:35:12 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/93eb3596-2c8f-4aa4-be02-d3420853704e/folders/1e9dc060-5f16-46c9-b7c5-81504b8d888c
+ - https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/folders/2f96208a-7830-4db7-9575-1170bf953db5
Pragma:
- no-cache
RequestId:
- - 43e0d2c1-66e5-4219-a071-04828a129632
+ - 9a1525d7-c5c8-4017-80f4-6f9c51f22b4c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1266,14 +1247,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/items
response:
body:
- string: '{"value": [{"id": "63c6dd9c-e3c1-4304-b2fe-1dd7f03b3208", "type": "UserDataFunction",
- "displayName": "fabcli000004", "workspaceId":
- "8a45ab65-004c-4701-8010-749472af28d8", "folderId": "7a343f3b-0a57-4adb-95fb-5723e265f971"}]}'
+ string: '{"value": [{"id": "cc71f28b-c903-4fee-a0e1-f47b2dcc51e2", "type": "UserDataFunction",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf",
+ "folderId": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1282,15 +1263,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '215'
+ - '205'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:47 GMT
+ - Wed, 20 May 2026 09:35:13 GMT
Pragma:
- no-cache
RequestId:
- - abaa3db6-bcd3-4bce-bfbd-d4b4bca9c236
+ - 0012c717-4d55-4841-b9be-1c3492f2b68b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1316,13 +1297,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "7a343f3b-0a57-4adb-95fb-5723e265f971", "displayName":
- "fabcli000003", "workspaceId": "8a45ab65-004c-4701-8010-749472af28d8"}]}'
+ string: '{"value": [{"id": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a", "displayName":
+ "fabcli000003", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1331,15 +1312,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '145'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:48 GMT
+ - Wed, 20 May 2026 09:35:14 GMT
Pragma:
- no-cache
RequestId:
- - 53d2a2e3-fe01-4cd9-a89f-71d963c40c57
+ - 435a5e8d-8e1c-45ba-a5bb-6d2c8d56fb62
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1365,13 +1346,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "7a343f3b-0a57-4adb-95fb-5723e265f971", "displayName":
- "fabcli000003", "workspaceId": "8a45ab65-004c-4701-8010-749472af28d8"}]}'
+ string: '{"value": [{"id": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a", "displayName":
+ "fabcli000003", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1380,15 +1361,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '145'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:49 GMT
+ - Wed, 20 May 2026 09:35:14 GMT
Pragma:
- no-cache
RequestId:
- - 8aab5f90-a3f0-493b-b3b0-f90252b53928
+ - d099a913-1106-482a-bcbc-e4786340be92
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1414,14 +1395,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/items
response:
body:
- string: '{"value": [{"id": "63c6dd9c-e3c1-4304-b2fe-1dd7f03b3208", "type": "UserDataFunction",
- "displayName": "fabcli000004", "workspaceId":
- "8a45ab65-004c-4701-8010-749472af28d8", "folderId": "7a343f3b-0a57-4adb-95fb-5723e265f971"}]}'
+ string: '{"value": [{"id": "cc71f28b-c903-4fee-a0e1-f47b2dcc51e2", "type": "UserDataFunction",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf",
+ "folderId": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1430,15 +1411,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '215'
+ - '205'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:50 GMT
+ - Wed, 20 May 2026 09:35:15 GMT
Pragma:
- no-cache
RequestId:
- - c98e5395-b81d-4544-ae05-e0241d231ac0
+ - 74208172-8999-4896-8f01-7f2f1c3a6549
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1464,13 +1445,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "7a343f3b-0a57-4adb-95fb-5723e265f971", "displayName":
- "fabcli000003", "workspaceId": "8a45ab65-004c-4701-8010-749472af28d8"}]}'
+ string: '{"value": [{"id": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a", "displayName":
+ "fabcli000003", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1479,15 +1460,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '145'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:51 GMT
+ - Wed, 20 May 2026 09:35:16 GMT
Pragma:
- no-cache
RequestId:
- - e04c6e10-d316-4014-a927-51b652967a63
+ - f29bb0b7-98e8-494b-838f-1e2f866828a2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1513,13 +1494,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "7a343f3b-0a57-4adb-95fb-5723e265f971", "displayName":
- "fabcli000003", "workspaceId": "8a45ab65-004c-4701-8010-749472af28d8"}]}'
+ string: '{"value": [{"id": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a", "displayName":
+ "fabcli000003", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1528,15 +1509,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '145'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:51 GMT
+ - Wed, 20 May 2026 09:35:17 GMT
Pragma:
- no-cache
RequestId:
- - a235576d-b436-4928-aded-bebbbe325a30
+ - 184fe864-3d04-4cd5-bc9a-a993c486f4dd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1562,16 +1543,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "8a45ab65-004c-4701-8010-749472af28d8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "93eb3596-2c8f-4aa4-be02-d3420853704e", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "3de1955c-4351-4fd7-b13c-c3293865efdf", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "5389187e-90dc-42d8-b7af-a37dfe3e8640", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1580,15 +1564,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2692'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:52 GMT
+ - Wed, 20 May 2026 09:35:18 GMT
Pragma:
- no-cache
RequestId:
- - 441b610e-df10-4364-a18d-4145251958dd
+ - 154d58c6-698d-4467-a1e6-cf7b97682183
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1614,13 +1598,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/93eb3596-2c8f-4aa4-be02-d3420853704e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "1e9dc060-5f16-46c9-b7c5-81504b8d888c", "displayName":
- "fabcli000003", "workspaceId": "93eb3596-2c8f-4aa4-be02-d3420853704e"}]}'
+ string: '{"value": [{"id": "2f96208a-7830-4db7-9575-1170bf953db5", "displayName":
+ "fabcli000003", "workspaceId": "5389187e-90dc-42d8-b7af-a37dfe3e8640"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1633,11 +1617,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:53 GMT
+ - Wed, 20 May 2026 09:35:19 GMT
Pragma:
- no-cache
RequestId:
- - cc65c624-4b79-46b0-a5d4-a3c793f3153b
+ - 4707c41a-bc4b-4611-9233-5a9edb1ae7df
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1663,9 +1647,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/93eb3596-2c8f-4aa4-be02-d3420853704e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/items
response:
body:
string: '{"value": []}'
@@ -1681,11 +1665,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:54 GMT
+ - Wed, 20 May 2026 09:35:20 GMT
Pragma:
- no-cache
RequestId:
- - 2ab4f0c2-b0b5-477e-8ecf-2f405d0d1cac
+ - a62c22ff-9069-4977-a070-63c1ca42151c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1711,9 +1695,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/93eb3596-2c8f-4aa4-be02-d3420853704e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/items
response:
body:
string: '{"value": []}'
@@ -1729,11 +1713,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:55 GMT
+ - Wed, 20 May 2026 09:35:21 GMT
Pragma:
- no-cache
RequestId:
- - 3ea489ba-bb0c-493d-aea2-d3f9c17df4b2
+ - 73c7fce7-a7c1-43da-acfe-e28fc3980f75
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1759,9 +1743,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/93eb3596-2c8f-4aa4-be02-d3420853704e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/items
response:
body:
string: '{"value": []}'
@@ -1777,11 +1761,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:55 GMT
+ - Wed, 20 May 2026 09:35:22 GMT
Pragma:
- no-cache
RequestId:
- - 603417ce-3f9f-4019-8f18-79243f582593
+ - 6fc3cf1e-7115-41ad-89c2-9363d6fb9818
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1807,14 +1791,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/items/63c6dd9c-e3c1-4304-b2fe-1dd7f03b3208
+ uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/items/cc71f28b-c903-4fee-a0e1-f47b2dcc51e2
response:
body:
- string: '{"id": "63c6dd9c-e3c1-4304-b2fe-1dd7f03b3208", "type": "UserDataFunction",
- "displayName": "fabcli000004", "workspaceId":
- "8a45ab65-004c-4701-8010-749472af28d8", "folderId": "7a343f3b-0a57-4adb-95fb-5723e265f971"}'
+ string: '{"id": "cc71f28b-c903-4fee-a0e1-f47b2dcc51e2", "type": "UserDataFunction",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf",
+ "folderId": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1823,17 +1807,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '204'
+ - '193'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:56 GMT
+ - Wed, 20 May 2026 09:35:23 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - e77d81d0-fa67-479f-aea9-29542ec891d7
+ - 02b00b52-6928-44c7-9116-94e21190fd1a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1861,9 +1845,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/items/63c6dd9c-e3c1-4304-b2fe-1dd7f03b3208/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/items/cc71f28b-c903-4fee-a0e1-f47b2dcc51e2/getDefinition
response:
body:
string: 'null'
@@ -1879,13 +1863,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:37:57 GMT
+ - Wed, 20 May 2026 09:35:24 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d0455930-f492-431e-aed7-3dcc08790238
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/557c2ab3-8f99-4190-8295-d415ce67b072
Pragma:
- no-cache
RequestId:
- - 66fd0dc8-bcf4-4982-a619-071e33fbe753
+ - a4a718d3-e1d6-4862-8c31-c52b10d60559
Retry-After:
- '20'
Strict-Transport-Security:
@@ -1899,7 +1883,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - d0455930-f492-431e-aed7-3dcc08790238
+ - 557c2ab3-8f99-4190-8295-d415ce67b072
status:
code: 202
message: Accepted
@@ -1915,13 +1899,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d0455930-f492-431e-aed7-3dcc08790238
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/557c2ab3-8f99-4190-8295-d415ce67b072
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:37:57.8195758",
- "lastUpdatedTimeUtc": "2026-02-06T08:37:58.1009934", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:35:24.7730849",
+ "lastUpdatedTimeUtc": "2026-05-20T09:35:25.0753044", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -1935,13 +1919,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:38:19 GMT
+ - Wed, 20 May 2026 09:35:45 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d0455930-f492-431e-aed7-3dcc08790238/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/557c2ab3-8f99-4190-8295-d415ce67b072/result
Pragma:
- no-cache
RequestId:
- - 6a3f647e-c475-4d5c-b2e4-8cecb86b91e0
+ - 589e7773-e561-4d15-88a6-b1f1b1868ba5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1949,7 +1933,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - d0455930-f492-431e-aed7-3dcc08790238
+ - 557c2ab3-8f99-4190-8295-d415ce67b072
status:
code: 200
message: OK
@@ -1965,13 +1949,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d0455930-f492-431e-aed7-3dcc08790238/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/557c2ab3-8f99-4190-8295-d415ce67b072/result
response:
body:
string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS91c2VyRGF0YUZ1bmN0aW9uL2RlZmluaXRpb24vMS4xLjAvc2NoZW1hLmpzb24iLA0KICAicnVudGltZSI6ICJQWVRIT04iLA0KICAiY29ubmVjdGVkRGF0YVNvdXJjZXMiOiBbXSwNCiAgImZ1bmN0aW9ucyI6IFtdLA0KICAibGlicmFyaWVzIjogew0KICAgICJwdWJsaWMiOiBbXSwNCiAgICAicHJpdmF0ZSI6IFtdDQogIH0NCn0=",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlVzZXJEYXRhRnVuY3Rpb24iLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwNCIsCiAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlVzZXJEYXRhRnVuY3Rpb24iLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwNCIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
"payloadType": "InlineBase64"}]}}'
headers:
Access-Control-Expose-Headers:
@@ -1983,11 +1967,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 08:38:20 GMT
+ - Wed, 20 May 2026 09:35:46 GMT
Pragma:
- no-cache
RequestId:
- - d3c79c0f-1a51-44f2-882d-160edc44734e
+ - 71e86d07-79c6-4407-ab2a-d0b926af2321
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -2000,11 +1984,10 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "UserDataFunction", "displayName":
- "fabcli000004", "definition": {"parts": [{"path": "definition.json", "payload":
- "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS91c2VyRGF0YUZ1bmN0aW9uL2RlZmluaXRpb24vMS4xLjAvc2NoZW1hLmpzb24iLA0KICAicnVudGltZSI6ICJQWVRIT04iLA0KICAiY29ubmVjdGVkRGF0YVNvdXJjZXMiOiBbXSwNCiAgImZ1bmN0aW9ucyI6IFtdLA0KICAibGlicmFyaWVzIjogew0KICAgICJwdWJsaWMiOiBbXSwNCiAgICAicHJpdmF0ZSI6IFtdDQogIH0NCn0=",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlVzZXJEYXRhRnVuY3Rpb24iLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwNCIsCiAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
- "payloadType": "InlineBase64"}]}, "folderId": "1e9dc060-5f16-46c9-b7c5-81504b8d888c"}'
+ body: '{"type": "UserDataFunction", "displayName": "fabcli000004", "definition":
+ {"parts": [{"path": "definition.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS91c2VyRGF0YUZ1bmN0aW9uL2RlZmluaXRpb24vMS4xLjAvc2NoZW1hLmpzb24iLA0KICAicnVudGltZSI6ICJQWVRIT04iLA0KICAiY29ubmVjdGVkRGF0YVNvdXJjZXMiOiBbXSwNCiAgImZ1bmN0aW9ucyI6IFtdLA0KICAibGlicmFyaWVzIjogew0KICAgICJwdWJsaWMiOiBbXSwNCiAgICAicHJpdmF0ZSI6IFtdDQogIH0NCn0=",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlVzZXJEYXRhRnVuY3Rpb24iLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwNCIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
+ "payloadType": "InlineBase64"}]}, "folderId": "2f96208a-7830-4db7-9575-1170bf953db5"}'
headers:
Accept:
- '*/*'
@@ -2013,13 +1996,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1131'
+ - '1050'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/93eb3596-2c8f-4aa4-be02-d3420853704e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/items
response:
body:
string: 'null'
@@ -2035,15 +2018,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:38:21 GMT
+ - Wed, 20 May 2026 09:35:48 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fec68534-b3d9-4f5e-9b37-46a64e6520d4
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2a55f337-c5b1-4f38-b23c-a7d1f05e9fd9
Pragma:
- no-cache
RequestId:
- - e882e0b3-dbd2-4e5e-adc3-2239b5ea0717
+ - 42e9f202-25e6-451d-ad32-00ae1821bb59
Retry-After:
- '20'
Strict-Transport-Security:
@@ -2057,7 +2040,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - fec68534-b3d9-4f5e-9b37-46a64e6520d4
+ - 2a55f337-c5b1-4f38-b23c-a7d1f05e9fd9
status:
code: 202
message: Accepted
@@ -2073,13 +2056,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fec68534-b3d9-4f5e-9b37-46a64e6520d4
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2a55f337-c5b1-4f38-b23c-a7d1f05e9fd9
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:38:21.7008693",
- "lastUpdatedTimeUtc": "2026-02-06T08:38:24.9198959", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:35:47.5676048",
+ "lastUpdatedTimeUtc": "2026-05-20T09:35:50.6886914", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -2089,17 +2072,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '131'
+ - '132'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:38:44 GMT
+ - Wed, 20 May 2026 09:36:08 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fec68534-b3d9-4f5e-9b37-46a64e6520d4/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2a55f337-c5b1-4f38-b23c-a7d1f05e9fd9/result
Pragma:
- no-cache
RequestId:
- - 5b1744d4-96af-4712-aa14-19c004934151
+ - 4d32b403-dd41-40f5-973c-33c5ddf97d5c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2107,7 +2090,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - fec68534-b3d9-4f5e-9b37-46a64e6520d4
+ - 2a55f337-c5b1-4f38-b23c-a7d1f05e9fd9
status:
code: 200
message: OK
@@ -2123,14 +2106,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fec68534-b3d9-4f5e-9b37-46a64e6520d4/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2a55f337-c5b1-4f38-b23c-a7d1f05e9fd9/result
response:
body:
- string: '{"id": "43474723-2eec-45e1-b0f6-e1664d472a07", "type": "UserDataFunction",
- "displayName": "fabcli000004", "workspaceId":
- "93eb3596-2c8f-4aa4-be02-d3420853704e", "folderId": "1e9dc060-5f16-46c9-b7c5-81504b8d888c"}'
+ string: '{"id": "21faf9e4-5f52-4581-821d-875938815ace", "type": "UserDataFunction",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "5389187e-90dc-42d8-b7af-a37dfe3e8640",
+ "folderId": "2f96208a-7830-4db7-9575-1170bf953db5"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2141,11 +2124,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 08:38:44 GMT
+ - Wed, 20 May 2026 09:36:10 GMT
Pragma:
- no-cache
RequestId:
- - 6f2fcbcf-b9de-4231-b063-b3b49ba4151d
+ - f6fad8f7-097c-44a4-81aa-dee4f23930a3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -2169,14 +2152,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/items
response:
body:
- string: '{"value": [{"id": "63c6dd9c-e3c1-4304-b2fe-1dd7f03b3208", "type": "UserDataFunction",
- "displayName": "fabcli000004", "workspaceId":
- "8a45ab65-004c-4701-8010-749472af28d8", "folderId": "7a343f3b-0a57-4adb-95fb-5723e265f971"}]}'
+ string: '{"value": [{"id": "cc71f28b-c903-4fee-a0e1-f47b2dcc51e2", "type": "UserDataFunction",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf",
+ "folderId": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2185,15 +2168,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '215'
+ - '205'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:38:45 GMT
+ - Wed, 20 May 2026 09:36:10 GMT
Pragma:
- no-cache
RequestId:
- - 1f25c32e-226a-4b73-ae09-0de04ed8af72
+ - b075c9b2-0732-437e-af61-54604666f333
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2219,13 +2202,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "7a343f3b-0a57-4adb-95fb-5723e265f971", "displayName":
- "fabcli000003", "workspaceId": "8a45ab65-004c-4701-8010-749472af28d8"}]}'
+ string: '{"value": [{"id": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a", "displayName":
+ "fabcli000003", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2234,15 +2217,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '145'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:38:46 GMT
+ - Wed, 20 May 2026 09:36:12 GMT
Pragma:
- no-cache
RequestId:
- - 2b1a9fb0-5e3d-4e5c-8a15-555c4ecaac18
+ - 34e188f5-42ab-420c-b3b4-36730f1ffb18
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2268,13 +2251,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "7a343f3b-0a57-4adb-95fb-5723e265f971", "displayName":
- "fabcli000003", "workspaceId": "8a45ab65-004c-4701-8010-749472af28d8"}]}'
+ string: '{"value": [{"id": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a", "displayName":
+ "fabcli000003", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2283,15 +2266,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '145'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:38:47 GMT
+ - Wed, 20 May 2026 09:36:12 GMT
Pragma:
- no-cache
RequestId:
- - 797717d6-0b55-4874-bbef-4d7905d2986b
+ - 936be4c8-b7bc-4f29-8466-946c56016e12
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2317,16 +2300,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "8a45ab65-004c-4701-8010-749472af28d8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "93eb3596-2c8f-4aa4-be02-d3420853704e", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "3de1955c-4351-4fd7-b13c-c3293865efdf", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "5389187e-90dc-42d8-b7af-a37dfe3e8640", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2335,15 +2321,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2692'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:38:47 GMT
+ - Wed, 20 May 2026 09:36:13 GMT
Pragma:
- no-cache
RequestId:
- - 564b2095-0358-4c52-ac77-5b0bc574427e
+ - ec199cf1-da27-4c10-b734-86482e57305a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2369,14 +2355,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/93eb3596-2c8f-4aa4-be02-d3420853704e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/items
response:
body:
- string: '{"value": [{"id": "43474723-2eec-45e1-b0f6-e1664d472a07", "type": "UserDataFunction",
- "displayName": "fabcli000004", "workspaceId":
- "93eb3596-2c8f-4aa4-be02-d3420853704e", "folderId": "1e9dc060-5f16-46c9-b7c5-81504b8d888c"}]}'
+ string: '{"value": [{"id": "21faf9e4-5f52-4581-821d-875938815ace", "type": "UserDataFunction",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "5389187e-90dc-42d8-b7af-a37dfe3e8640",
+ "folderId": "2f96208a-7830-4db7-9575-1170bf953db5"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2385,15 +2371,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '215'
+ - '206'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:38:48 GMT
+ - Wed, 20 May 2026 09:36:14 GMT
Pragma:
- no-cache
RequestId:
- - 0a34c5c3-776f-47fe-a5ad-b8650797c55d
+ - 8c333f67-d83f-4ccf-9612-4a00f7989054
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2419,13 +2405,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/93eb3596-2c8f-4aa4-be02-d3420853704e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "1e9dc060-5f16-46c9-b7c5-81504b8d888c", "displayName":
- "fabcli000003", "workspaceId": "93eb3596-2c8f-4aa4-be02-d3420853704e"}]}'
+ string: '{"value": [{"id": "2f96208a-7830-4db7-9575-1170bf953db5", "displayName":
+ "fabcli000003", "workspaceId": "5389187e-90dc-42d8-b7af-a37dfe3e8640"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2438,11 +2424,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:38:49 GMT
+ - Wed, 20 May 2026 09:36:15 GMT
Pragma:
- no-cache
RequestId:
- - bc16fd0d-bc05-4775-9e53-b51382f2e534
+ - 04753b54-7d23-41b7-8765-26af0662866a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2468,13 +2454,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/93eb3596-2c8f-4aa4-be02-d3420853704e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "1e9dc060-5f16-46c9-b7c5-81504b8d888c", "displayName":
- "fabcli000003", "workspaceId": "93eb3596-2c8f-4aa4-be02-d3420853704e"}]}'
+ string: '{"value": [{"id": "2f96208a-7830-4db7-9575-1170bf953db5", "displayName":
+ "fabcli000003", "workspaceId": "5389187e-90dc-42d8-b7af-a37dfe3e8640"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2487,11 +2473,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:38:50 GMT
+ - Wed, 20 May 2026 09:36:15 GMT
Pragma:
- no-cache
RequestId:
- - b49c6eae-c75c-41af-9638-f8a3c49269e9
+ - 1768ee22-b07f-41c3-b673-f262f313b054
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2517,16 +2503,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "8a45ab65-004c-4701-8010-749472af28d8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "93eb3596-2c8f-4aa4-be02-d3420853704e", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "3de1955c-4351-4fd7-b13c-c3293865efdf", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "5389187e-90dc-42d8-b7af-a37dfe3e8640", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2535,15 +2524,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2692'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:38:50 GMT
+ - Wed, 20 May 2026 09:36:16 GMT
Pragma:
- no-cache
RequestId:
- - 0121f926-a5b1-4253-8a91-5308fccb0add
+ - 699bc207-ea61-4b87-b431-c900cd4b9b42
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2569,13 +2558,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/93eb3596-2c8f-4aa4-be02-d3420853704e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "1e9dc060-5f16-46c9-b7c5-81504b8d888c", "displayName":
- "fabcli000003", "workspaceId": "93eb3596-2c8f-4aa4-be02-d3420853704e"}]}'
+ string: '{"value": [{"id": "2f96208a-7830-4db7-9575-1170bf953db5", "displayName":
+ "fabcli000003", "workspaceId": "5389187e-90dc-42d8-b7af-a37dfe3e8640"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2588,11 +2577,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:38:51 GMT
+ - Wed, 20 May 2026 09:36:17 GMT
Pragma:
- no-cache
RequestId:
- - 3e574a9e-3060-40ff-a53c-8cd6f9606a54
+ - 640e6750-f4cc-457c-a297-46e562bdf52a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2618,14 +2607,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/93eb3596-2c8f-4aa4-be02-d3420853704e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/items
response:
body:
- string: '{"value": [{"id": "43474723-2eec-45e1-b0f6-e1664d472a07", "type": "UserDataFunction",
- "displayName": "fabcli000004", "workspaceId":
- "93eb3596-2c8f-4aa4-be02-d3420853704e", "folderId": "1e9dc060-5f16-46c9-b7c5-81504b8d888c"}]}'
+ string: '{"value": [{"id": "21faf9e4-5f52-4581-821d-875938815ace", "type": "UserDataFunction",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "5389187e-90dc-42d8-b7af-a37dfe3e8640",
+ "folderId": "2f96208a-7830-4db7-9575-1170bf953db5"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2634,15 +2623,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '215'
+ - '206'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:38:52 GMT
+ - Wed, 20 May 2026 09:36:19 GMT
Pragma:
- no-cache
RequestId:
- - d0b46e78-132e-4497-abe2-5f3142a104f9
+ - 13f4458b-3cc0-4387-baea-913ee209a1fc
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2668,13 +2657,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/93eb3596-2c8f-4aa4-be02-d3420853704e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "1e9dc060-5f16-46c9-b7c5-81504b8d888c", "displayName":
- "fabcli000003", "workspaceId": "93eb3596-2c8f-4aa4-be02-d3420853704e"}]}'
+ string: '{"value": [{"id": "2f96208a-7830-4db7-9575-1170bf953db5", "displayName":
+ "fabcli000003", "workspaceId": "5389187e-90dc-42d8-b7af-a37dfe3e8640"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2687,11 +2676,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:38:53 GMT
+ - Wed, 20 May 2026 09:36:19 GMT
Pragma:
- no-cache
RequestId:
- - 41bdff14-5ba3-4cc8-a186-0739da6e38bf
+ - 2cc60212-78ae-4e81-aefd-cad5f89ee68b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2717,13 +2706,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/93eb3596-2c8f-4aa4-be02-d3420853704e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "1e9dc060-5f16-46c9-b7c5-81504b8d888c", "displayName":
- "fabcli000003", "workspaceId": "93eb3596-2c8f-4aa4-be02-d3420853704e"}]}'
+ string: '{"value": [{"id": "2f96208a-7830-4db7-9575-1170bf953db5", "displayName":
+ "fabcli000003", "workspaceId": "5389187e-90dc-42d8-b7af-a37dfe3e8640"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2736,11 +2725,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:38:54 GMT
+ - Wed, 20 May 2026 09:36:20 GMT
Pragma:
- no-cache
RequestId:
- - f33f66a3-0d86-4a72-9fb0-5a9719136569
+ - 57173688-743e-41ec-a84d-29354b438227
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2766,16 +2755,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "8a45ab65-004c-4701-8010-749472af28d8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "93eb3596-2c8f-4aa4-be02-d3420853704e", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "3de1955c-4351-4fd7-b13c-c3293865efdf", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "5389187e-90dc-42d8-b7af-a37dfe3e8640", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2784,15 +2776,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2692'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:38:55 GMT
+ - Wed, 20 May 2026 09:36:20 GMT
Pragma:
- no-cache
RequestId:
- - f9ca7307-3474-480a-b1d4-891aad2e487a
+ - 935616a8-36b8-4a41-8338-aaeed62c4302
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2818,13 +2810,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/93eb3596-2c8f-4aa4-be02-d3420853704e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "1e9dc060-5f16-46c9-b7c5-81504b8d888c", "displayName":
- "fabcli000003", "workspaceId": "93eb3596-2c8f-4aa4-be02-d3420853704e"}]}'
+ string: '{"value": [{"id": "2f96208a-7830-4db7-9575-1170bf953db5", "displayName":
+ "fabcli000003", "workspaceId": "5389187e-90dc-42d8-b7af-a37dfe3e8640"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2837,11 +2829,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:38:55 GMT
+ - Wed, 20 May 2026 09:36:22 GMT
Pragma:
- no-cache
RequestId:
- - a67687f9-a404-41b1-a039-676b6a4184c5
+ - babb4c39-1f2c-4302-b1de-e4b5e88d31de
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2867,14 +2859,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/93eb3596-2c8f-4aa4-be02-d3420853704e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/items
response:
body:
- string: '{"value": [{"id": "43474723-2eec-45e1-b0f6-e1664d472a07", "type": "UserDataFunction",
- "displayName": "fabcli000004", "workspaceId":
- "93eb3596-2c8f-4aa4-be02-d3420853704e", "folderId": "1e9dc060-5f16-46c9-b7c5-81504b8d888c"}]}'
+ string: '{"value": [{"id": "21faf9e4-5f52-4581-821d-875938815ace", "type": "UserDataFunction",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "5389187e-90dc-42d8-b7af-a37dfe3e8640",
+ "folderId": "2f96208a-7830-4db7-9575-1170bf953db5"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2883,15 +2875,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '215'
+ - '206'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:38:56 GMT
+ - Wed, 20 May 2026 09:36:22 GMT
Pragma:
- no-cache
RequestId:
- - d3382c5b-092d-4c3c-ae16-fd73402aa6e8
+ - 6c2c196c-f3f1-4656-bc36-e38b822d9197
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2917,13 +2909,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/93eb3596-2c8f-4aa4-be02-d3420853704e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "1e9dc060-5f16-46c9-b7c5-81504b8d888c", "displayName":
- "fabcli000003", "workspaceId": "93eb3596-2c8f-4aa4-be02-d3420853704e"}]}'
+ string: '{"value": [{"id": "2f96208a-7830-4db7-9575-1170bf953db5", "displayName":
+ "fabcli000003", "workspaceId": "5389187e-90dc-42d8-b7af-a37dfe3e8640"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2936,11 +2928,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:38:58 GMT
+ - Wed, 20 May 2026 09:36:23 GMT
Pragma:
- no-cache
RequestId:
- - c9e95c92-ba99-4bdb-92fa-b7f8ac9422b3
+ - af3feb39-60e9-402d-89d4-2a9779d99e4d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2968,9 +2960,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/93eb3596-2c8f-4aa4-be02-d3420853704e/items/43474723-2eec-45e1-b0f6-e1664d472a07
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/items/21faf9e4-5f52-4581-821d-875938815ace
response:
body:
string: ''
@@ -2986,11 +2978,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:38:59 GMT
+ - Wed, 20 May 2026 09:36:24 GMT
Pragma:
- no-cache
RequestId:
- - c2ce6381-cc7b-4dbc-9011-6327dd848b1b
+ - 660d0b66-511c-4fe5-a157-29c44acd6001
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3016,16 +3008,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "8a45ab65-004c-4701-8010-749472af28d8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "93eb3596-2c8f-4aa4-be02-d3420853704e", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "3de1955c-4351-4fd7-b13c-c3293865efdf", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "5389187e-90dc-42d8-b7af-a37dfe3e8640", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3034,15 +3029,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2692'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:38:59 GMT
+ - Wed, 20 May 2026 09:36:25 GMT
Pragma:
- no-cache
RequestId:
- - 738416ef-7851-4cce-9d38-e3e310308546
+ - b0046c7c-382a-4cb9-b2c4-e66c55407d84
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3068,13 +3063,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/93eb3596-2c8f-4aa4-be02-d3420853704e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "1e9dc060-5f16-46c9-b7c5-81504b8d888c", "displayName":
- "fabcli000003", "workspaceId": "93eb3596-2c8f-4aa4-be02-d3420853704e"}]}'
+ string: '{"value": [{"id": "2f96208a-7830-4db7-9575-1170bf953db5", "displayName":
+ "fabcli000003", "workspaceId": "5389187e-90dc-42d8-b7af-a37dfe3e8640"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3087,11 +3082,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:38:59 GMT
+ - Wed, 20 May 2026 09:36:26 GMT
Pragma:
- no-cache
RequestId:
- - a6ac7d65-5522-44b1-b0c5-bff9f8a9ac14
+ - 585bbf63-d9f8-4f18-86be-b4cbc40614ee
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3119,9 +3114,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/93eb3596-2c8f-4aa4-be02-d3420853704e/folders/1e9dc060-5f16-46c9-b7c5-81504b8d888c
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/folders/2f96208a-7830-4db7-9575-1170bf953db5
response:
body:
string: ''
@@ -3137,11 +3132,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:39:01 GMT
+ - Wed, 20 May 2026 09:36:27 GMT
Pragma:
- no-cache
RequestId:
- - 359e63dd-4723-46ed-b45d-bdf51e43fe52
+ - 97d9d680-a999-46b3-b2d2-f7b496408e33
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3167,16 +3162,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "8a45ab65-004c-4701-8010-749472af28d8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "93eb3596-2c8f-4aa4-be02-d3420853704e", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "3de1955c-4351-4fd7-b13c-c3293865efdf", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "5389187e-90dc-42d8-b7af-a37dfe3e8640", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3185,15 +3183,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2692'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:39:01 GMT
+ - Wed, 20 May 2026 09:36:27 GMT
Pragma:
- no-cache
RequestId:
- - 56c722d0-8a23-4c60-bc3d-dc87e88248e9
+ - 72c7434d-8844-473f-bb5b-38f4d2a12bd1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3219,53 +3217,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/folders?recursive=True
response:
body:
- string: '{"requestId": "fdb8e242-134b-426c-aa3c-8f8fcdf4543d", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 8:39:47 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 08:39:02 GMT
- RequestId:
- - fdb8e242-134b-426c-aa3c-8f8fcdf4543d
- Retry-After:
- - '44'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/folders?recursive=True
- response:
- body:
- string: '{"value": [{"id": "7a343f3b-0a57-4adb-95fb-5723e265f971", "displayName":
- "fabcli000003", "workspaceId": "8a45ab65-004c-4701-8010-749472af28d8"}]}'
+ string: '{"value": [{"id": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a", "displayName":
+ "fabcli000003", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3274,15 +3232,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '145'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:39:49 GMT
+ - Wed, 20 May 2026 09:36:28 GMT
Pragma:
- no-cache
RequestId:
- - 931a99a1-e241-4e17-ba17-9cb65b443a69
+ - 3670a0d4-5c00-4628-afaf-cc756f0278a8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3308,14 +3266,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/items
response:
body:
- string: '{"value": [{"id": "63c6dd9c-e3c1-4304-b2fe-1dd7f03b3208", "type": "UserDataFunction",
- "displayName": "fabcli000004", "workspaceId":
- "8a45ab65-004c-4701-8010-749472af28d8", "folderId": "7a343f3b-0a57-4adb-95fb-5723e265f971"}]}'
+ string: '{"value": [{"id": "cc71f28b-c903-4fee-a0e1-f47b2dcc51e2", "type": "UserDataFunction",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf",
+ "folderId": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3324,15 +3282,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '215'
+ - '205'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:39:50 GMT
+ - Wed, 20 May 2026 09:36:29 GMT
Pragma:
- no-cache
RequestId:
- - f565a509-fdc8-4a5b-9126-d94a7db6ee44
+ - 2a1ff1d7-8386-49e8-bd23-7ce910f7ace8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3358,13 +3316,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "7a343f3b-0a57-4adb-95fb-5723e265f971", "displayName":
- "fabcli000003", "workspaceId": "8a45ab65-004c-4701-8010-749472af28d8"}]}'
+ string: '{"value": [{"id": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a", "displayName":
+ "fabcli000003", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3373,15 +3331,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '145'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:39:51 GMT
+ - Wed, 20 May 2026 09:36:30 GMT
Pragma:
- no-cache
RequestId:
- - d1f25d1b-2004-4890-8679-2ab29e5cce45
+ - d42a56b6-33cd-4dd7-be75-43b865044cb7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3409,9 +3367,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/items/63c6dd9c-e3c1-4304-b2fe-1dd7f03b3208
+ uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/items/cc71f28b-c903-4fee-a0e1-f47b2dcc51e2
response:
body:
string: ''
@@ -3427,11 +3385,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:39:51 GMT
+ - Wed, 20 May 2026 09:36:31 GMT
Pragma:
- no-cache
RequestId:
- - c45033d9-679b-4ef4-8f45-f07f92abfb35
+ - a4214b6a-2c1e-4126-a42f-4764c47d8e14
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3457,16 +3415,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "8a45ab65-004c-4701-8010-749472af28d8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "93eb3596-2c8f-4aa4-be02-d3420853704e", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "3de1955c-4351-4fd7-b13c-c3293865efdf", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "5389187e-90dc-42d8-b7af-a37dfe3e8640", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3475,15 +3436,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2692'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:39:53 GMT
+ - Wed, 20 May 2026 09:36:31 GMT
Pragma:
- no-cache
RequestId:
- - e44eb33d-bd5e-410d-accf-5b5df87e7308
+ - 7c46c7c7-da0a-4213-a5af-ccdbda548b5e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3509,13 +3470,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "7a343f3b-0a57-4adb-95fb-5723e265f971", "displayName":
- "fabcli000003", "workspaceId": "8a45ab65-004c-4701-8010-749472af28d8"}]}'
+ string: '{"value": [{"id": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a", "displayName":
+ "fabcli000003", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3524,15 +3485,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '145'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:39:53 GMT
+ - Wed, 20 May 2026 09:36:32 GMT
Pragma:
- no-cache
RequestId:
- - f4cd3849-2b4b-4c79-86c7-fc4af25acab3
+ - 605407bd-9865-4629-a33d-3db948de967e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3560,9 +3521,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/folders/7a343f3b-0a57-4adb-95fb-5723e265f971
+ uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/folders/f3ad0c8e-b066-46f4-897a-2f9f7cafd71a
response:
body:
string: ''
@@ -3578,11 +3539,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:39:53 GMT
+ - Wed, 20 May 2026 09:36:33 GMT
Pragma:
- no-cache
RequestId:
- - 90a84c74-1731-45d8-836d-c45e1a01633b
+ - e89f07a8-0823-4aea-95e3-69b058d41c83
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3608,16 +3569,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "8a45ab65-004c-4701-8010-749472af28d8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "93eb3596-2c8f-4aa4-be02-d3420853704e", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "3de1955c-4351-4fd7-b13c-c3293865efdf", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "5389187e-90dc-42d8-b7af-a37dfe3e8640", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3626,15 +3590,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2692'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:39:55 GMT
+ - Wed, 20 May 2026 09:36:34 GMT
Pragma:
- no-cache
RequestId:
- - 37251518-498f-4b16-aeb4-7cdb493abccf
+ - 4de1178b-50ec-4b5e-87cb-fd6aeeb0a4f4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3660,9 +3624,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/items
response:
body:
string: '{"value": []}'
@@ -3678,11 +3642,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:39:56 GMT
+ - Wed, 20 May 2026 09:36:35 GMT
Pragma:
- no-cache
RequestId:
- - 0fa8a934-af0b-439c-bf2b-8804dfdf8be8
+ - de1940bd-2d8c-4346-9995-0a7d9bed1568
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3710,9 +3674,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8
+ uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf
response:
body:
string: ''
@@ -3728,11 +3692,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:39:56 GMT
+ - Wed, 20 May 2026 09:36:36 GMT
Pragma:
- no-cache
RequestId:
- - 9b1d2ca5-adb6-4e49-9233-1dd821febaf8
+ - 56ef2ae8-f433-4bfb-aa0b-52340d66f1ba
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3758,15 +3722,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "93eb3596-2c8f-4aa4-be02-d3420853704e", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "5389187e-90dc-42d8-b7af-a37dfe3e8640", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3775,15 +3741,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2841'
+ - '2656'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:39:58 GMT
+ - Wed, 20 May 2026 09:36:37 GMT
Pragma:
- no-cache
RequestId:
- - 1bc48798-d3d6-4c74-80e2-67049030c903
+ - 64adb217-a09c-41c5-b870-0857592fe554
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3809,9 +3775,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/93eb3596-2c8f-4aa4-be02-d3420853704e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/items
response:
body:
string: '{"value": []}'
@@ -3827,11 +3793,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:39:58 GMT
+ - Wed, 20 May 2026 09:36:38 GMT
Pragma:
- no-cache
RequestId:
- - 60d29784-694b-4dcf-9fd1-8c7390197712
+ - 22346094-1d89-43d0-a4cc-cd72b15d340d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3859,9 +3825,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/93eb3596-2c8f-4aa4-be02-d3420853704e
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640
response:
body:
string: ''
@@ -3877,11 +3843,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:39:59 GMT
+ - Wed, 20 May 2026 09:36:38 GMT
Pragma:
- no-cache
RequestId:
- - afdb9ea4-7deb-4685-bcd5-32eda43d0dee
+ - 322491dc-f75e-4ff6-8bef-11859f1fb503
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_from_local_recursive_unsupported.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_from_local_recursive_unsupported.yaml
index f6dd4b12f..09280c1ce 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_from_local_recursive_unsupported.yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_from_local_recursive_unsupported.yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:03 GMT
+ - Wed, 20 May 2026 09:01:39 GMT
Pragma:
- no-cache
RequestId:
- - de212870-98a8-4fd4-983b-5859d149bb7a
+ - ffd5af1e-06be-4737-8625-dae26d2e727e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,9 +62,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
string: '{"value": []}'
@@ -79,11 +80,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:04 GMT
+ - Wed, 20 May 2026 09:01:39 GMT
Pragma:
- no-cache
RequestId:
- - 830b6a15-41e6-414a-b050-4c785fe631b1
+ - 825213cb-8978-4943-962e-b0ac171111fc
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -109,9 +110,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
string: '{"value": []}'
@@ -127,11 +128,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:04 GMT
+ - Wed, 20 May 2026 09:01:39 GMT
Pragma:
- no-cache
RequestId:
- - 170473f4-5308-4141-951a-078786578782
+ - 3a2f33b0-be07-4afc-b890-5df8c84ba5a9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -156,18 +157,16 @@ interactions:
- keep-alive
Content-Length:
- '74'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/lakehouses
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/lakehouses
response:
body:
- string: '{"id": "6d6316b7-9fc5-4982-b3be-bd88df335e52", "type": "Lakehouse",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}'
+ string: '{"id": "6ed40638-3d41-43b8-b9ac-064e9885744f", "type": "Lakehouse",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -176,17 +175,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '167'
+ - '157'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:07 GMT
+ - Wed, 20 May 2026 09:01:43 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 2e0ba51a-d84b-47a5-9415-f9d64916582c
+ - e9c05aab-69cb-4b70-b18b-d401a6fffddf
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -212,14 +211,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -228,15 +228,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:08 GMT
+ - Wed, 20 May 2026 09:01:43 GMT
Pragma:
- no-cache
RequestId:
- - 2ad1f27f-e193-4019-bcc7-65f57fc3cb76
+ - 25388e77-48d1-4cde-96ed-626580d11d69
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -262,14 +262,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "6d6316b7-9fc5-4982-b3be-bd88df335e52", "type": "Lakehouse",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "6ed40638-3d41-43b8-b9ac-064e9885744f", "type": "Lakehouse",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -278,15 +277,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '179'
+ - '168'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:08 GMT
+ - Wed, 20 May 2026 09:01:44 GMT
Pragma:
- no-cache
RequestId:
- - 737b81de-c4d6-47c5-a32e-99c9d5ec45ae
+ - 78a23091-1142-4235-8fb9-154f807dadfc
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -312,14 +311,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -328,15 +328,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:10 GMT
+ - Wed, 20 May 2026 09:01:45 GMT
Pragma:
- no-cache
RequestId:
- - e08a5fde-9b3d-4f23-a2b5-4e2858f20ffc
+ - 31d2630e-042f-4137-b56e-c86f799ab91e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -362,14 +362,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "6d6316b7-9fc5-4982-b3be-bd88df335e52", "type": "Lakehouse",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "6ed40638-3d41-43b8-b9ac-064e9885744f", "type": "Lakehouse",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -378,15 +377,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '179'
+ - '168'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:11 GMT
+ - Wed, 20 May 2026 09:01:46 GMT
Pragma:
- no-cache
RequestId:
- - c8ca4f03-1afd-4e14-ba8b-8ee9aeaf24da
+ - f4ebdf15-9cac-4ec9-bbd7-52a8b5970d30
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -414,9 +413,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items/6d6316b7-9fc5-4982-b3be-bd88df335e52
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items/6ed40638-3d41-43b8-b9ac-064e9885744f
response:
body:
string: ''
@@ -432,11 +431,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:46:11 GMT
+ - Wed, 20 May 2026 09:01:47 GMT
Pragma:
- no-cache
RequestId:
- - c9780798-f2fa-4f1a-bd40-cdf02a4c1619
+ - a6f78384-8a04-49a4-98e9-9eead3aeaf9b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_from_onelake_recursive_unsupported.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_from_onelake_recursive_unsupported.yaml
index 4a75b924a..3f356d2cd 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_from_onelake_recursive_unsupported.yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_from_onelake_recursive_unsupported.yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:38 GMT
+ - Wed, 20 May 2026 09:00:05 GMT
Pragma:
- no-cache
RequestId:
- - a7234d27-b84e-4212-949c-24ad1267df06
+ - 40b2f33b-64be-47cb-8053-c39194cee1f3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,9 +62,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
string: '{"value": []}'
@@ -79,11 +80,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:39 GMT
+ - Wed, 20 May 2026 09:00:06 GMT
Pragma:
- no-cache
RequestId:
- - 1f94a77c-7648-483c-9625-70c89b0c618f
+ - f2b44197-7bbe-40ea-ad05-bd28437931b2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -109,9 +110,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
string: '{"value": []}'
@@ -127,11 +128,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:40 GMT
+ - Wed, 20 May 2026 09:00:07 GMT
Pragma:
- no-cache
RequestId:
- - 8ed29525-5483-44d0-8574-f69478e2dfc0
+ - b86c8c42-4400-4a3d-88ee-3458c2f1dd48
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -156,18 +157,16 @@ interactions:
- keep-alive
Content-Length:
- '74'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/lakehouses
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/lakehouses
response:
body:
- string: '{"id": "bfebde03-6387-45cc-b29e-1492d6f16508", "type": "Lakehouse",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}'
+ string: '{"id": "94fdff66-2c62-434d-b776-8abc16bba8a0", "type": "Lakehouse",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -176,17 +175,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '168'
+ - '156'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:43 GMT
+ - Wed, 20 May 2026 09:00:10 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - fa8196d0-1a63-430f-bd76-a75f4c529a5d
+ - 7e3b2b6d-32cf-4178-91fe-fea27d995bad
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -212,14 +211,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -228,15 +228,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:44 GMT
+ - Wed, 20 May 2026 09:00:11 GMT
Pragma:
- no-cache
RequestId:
- - 61576702-0773-47a2-a56b-e275aaaccc97
+ - 3a8a88d7-1fd6-4d68-b2fc-aebafb5c5e93
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -262,14 +262,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "bfebde03-6387-45cc-b29e-1492d6f16508", "type": "Lakehouse",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "94fdff66-2c62-434d-b776-8abc16bba8a0", "type": "Lakehouse",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -278,15 +277,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '180'
+ - '167'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:45 GMT
+ - Wed, 20 May 2026 09:00:12 GMT
Pragma:
- no-cache
RequestId:
- - be94c987-cffa-4a3e-83fa-b7828602c727
+ - 5822fe73-f580-41bb-837d-016a7bbee922
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -312,14 +311,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "bfebde03-6387-45cc-b29e-1492d6f16508", "type": "Lakehouse",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "94fdff66-2c62-434d-b776-8abc16bba8a0", "type": "Lakehouse",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -328,15 +326,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '180'
+ - '167'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:46 GMT
+ - Wed, 20 May 2026 09:00:14 GMT
Pragma:
- no-cache
RequestId:
- - e1c92233-649f-4ccc-b6b8-878687777ffc
+ - 1eb8678c-d12e-4ab1-aa98-9d1067b46bf3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -361,18 +359,16 @@ interactions:
- keep-alive
Content-Length:
- '74'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/lakehouses
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/lakehouses
response:
body:
- string: '{"id": "d009bff7-2d71-43eb-b5bd-a2278f6bbece", "type": "Lakehouse",
- "displayName": "fabcli000002", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}'
+ string: '{"id": "65c45d86-4167-4d89-a1d5-4eaa80f2412b", "type": "Lakehouse",
+ "displayName": "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -381,17 +377,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '156'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:48 GMT
+ - Wed, 20 May 2026 09:00:16 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 5833ccef-1d39-4833-8e07-b4c8d0c50477
+ - 705fa441-9f35-441b-a1f2-1621b799408b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -417,14 +413,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -433,15 +430,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:49 GMT
+ - Wed, 20 May 2026 09:00:17 GMT
Pragma:
- no-cache
RequestId:
- - 72cb9aca-f4b7-411e-a41c-53d7db79d397
+ - 7841f71b-ad6f-472b-b25c-9d66af58315a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -467,15 +464,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "bfebde03-6387-45cc-b29e-1492d6f16508", "type": "Lakehouse",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, {"id": "d009bff7-2d71-43eb-b5bd-a2278f6bbece",
- "type": "Lakehouse", "displayName": "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "94fdff66-2c62-434d-b776-8abc16bba8a0", "type": "Lakehouse",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "65c45d86-4167-4d89-a1d5-4eaa80f2412b", "type": "Lakehouse", "displayName":
+ "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -484,15 +481,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '223'
+ - '212'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:49 GMT
+ - Wed, 20 May 2026 09:00:19 GMT
Pragma:
- no-cache
RequestId:
- - d01bed36-b056-41fb-8c54-39a213a8bea0
+ - cc0984bd-175c-40fe-918c-0ac5e0c9d7d6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -518,14 +515,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -534,15 +532,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:50 GMT
+ - Wed, 20 May 2026 09:00:19 GMT
Pragma:
- no-cache
RequestId:
- - dc9e29e4-5550-42ec-91e9-acfb72965a91
+ - da3a7a3c-bf2e-4a7a-b5e3-ddff1af8136c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -568,15 +566,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "bfebde03-6387-45cc-b29e-1492d6f16508", "type": "Lakehouse",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, {"id": "d009bff7-2d71-43eb-b5bd-a2278f6bbece",
- "type": "Lakehouse", "displayName": "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "94fdff66-2c62-434d-b776-8abc16bba8a0", "type": "Lakehouse",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "65c45d86-4167-4d89-a1d5-4eaa80f2412b", "type": "Lakehouse", "displayName":
+ "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -585,15 +583,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '223'
+ - '212'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:51 GMT
+ - Wed, 20 May 2026 09:00:21 GMT
Pragma:
- no-cache
RequestId:
- - 8b785ce9-ac69-4bb8-b552-c8eeab119993
+ - deb862be-59fc-4688-b297-32feea987007
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -619,14 +617,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -635,15 +634,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:51 GMT
+ - Wed, 20 May 2026 09:00:21 GMT
Pragma:
- no-cache
RequestId:
- - 826c9231-ac3c-4e75-82f5-c4c6d1e6ed28
+ - 7796c2ea-7240-48c7-97ea-228428e8352f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -669,15 +668,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "bfebde03-6387-45cc-b29e-1492d6f16508", "type": "Lakehouse",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, {"id": "d009bff7-2d71-43eb-b5bd-a2278f6bbece",
- "type": "Lakehouse", "displayName": "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "75898bd5-e2a8-4e7a-bfd8-0e29f4f1970e", "type": "SQLEndpoint",
+ "displayName": "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "94fdff66-2c62-434d-b776-8abc16bba8a0", "type": "Lakehouse", "displayName":
+ "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "65c45d86-4167-4d89-a1d5-4eaa80f2412b", "type": "Lakehouse", "displayName":
+ "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -686,15 +687,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '223'
+ - '252'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:52 GMT
+ - Wed, 20 May 2026 09:00:22 GMT
Pragma:
- no-cache
RequestId:
- - a862d1fb-2c17-4c06-881b-53a22814a78a
+ - f578b155-510b-464e-8cda-f5e36803126b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -722,9 +723,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items/d009bff7-2d71-43eb-b5bd-a2278f6bbece
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items/65c45d86-4167-4d89-a1d5-4eaa80f2412b
response:
body:
string: ''
@@ -740,11 +741,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:44:53 GMT
+ - Wed, 20 May 2026 09:00:23 GMT
Pragma:
- no-cache
RequestId:
- - 4d0365e2-fd4a-4c41-af9a-094099b6a54a
+ - 1c10b98c-1feb-4cb1-b276-0fc211f09665
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -770,14 +771,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -786,15 +788,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:53 GMT
+ - Wed, 20 May 2026 09:00:24 GMT
Pragma:
- no-cache
RequestId:
- - c7eb1129-9128-46ac-8af4-2fae2db8e482
+ - 55a388e9-0284-4be9-816d-e5e25cfa6fcc
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -820,14 +822,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "bfebde03-6387-45cc-b29e-1492d6f16508", "type": "Lakehouse",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "bdc5cae6-167f-42e6-afda-1cd8b59865ea", "type": "SQLEndpoint",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "94fdff66-2c62-434d-b776-8abc16bba8a0", "type": "Lakehouse", "displayName":
+ "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -836,15 +839,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '180'
+ - '214'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:54 GMT
+ - Wed, 20 May 2026 09:00:24 GMT
Pragma:
- no-cache
RequestId:
- - c909ebbe-8006-47a3-9994-e5284a349157
+ - 3aa7ed73-d238-4e21-8cfb-9ea79dbf2906
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -872,9 +875,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items/bfebde03-6387-45cc-b29e-1492d6f16508
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items/94fdff66-2c62-434d-b776-8abc16bba8a0
response:
body:
string: ''
@@ -890,11 +893,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:44:56 GMT
+ - Wed, 20 May 2026 09:00:25 GMT
Pragma:
- no-cache
RequestId:
- - 2cb01745-6a20-403a-aa47-de697f80c033
+ - 263e64d4-4649-4b07-a59d-876bf6f4fdeb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_existing_name_different_location_with_block_on_path_collision_failure.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_existing_name_different_location_with_block_on_path_collision_failure.yaml
index 154d77905..e6bdf123f 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_existing_name_different_location_with_block_on_path_collision_failure.yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_existing_name_different_location_with_block_on_path_collision_failure.yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:12:39 GMT
+ - Wed, 20 May 2026 09:19:09 GMT
Pragma:
- no-cache
RequestId:
- - 3d646010-0312-470a-abfc-85c65f0b6d44
+ - 047486dd-60ba-44a2-b569-34a5f7885402
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,14 +62,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -77,15 +79,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:12:40 GMT
+ - Wed, 20 May 2026 09:19:10 GMT
Pragma:
- no-cache
RequestId:
- - 8cd0fa65-b4d3-4641-8e77-9eaf50a6c921
+ - 45e126db-0f35-42ac-a233-79afdba9e55a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -111,7 +113,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -131,11 +133,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:12:44 GMT
+ - Wed, 20 May 2026 09:19:16 GMT
Pragma:
- no-cache
RequestId:
- - f49f56fd-edf6-4c65-a6e1-ec84bef7d2e2
+ - f5b8f042-b7b5-4e67-885f-4f1bcd1ad56c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -160,16 +162,16 @@ interactions:
- keep-alive
Content-Length:
- '89'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "06eac17b-a935-4074-aaba-4984997c6704", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -178,17 +180,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '165'
+ - '154'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:12:51 GMT
+ - Wed, 20 May 2026 09:19:23 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/06eac17b-a935-4074-aaba-4984997c6704
+ - https://api.fabric.microsoft.com/v1/workspaces/83d27cc5-3f52-4f4e-8a3d-63555f5d780d
Pragma:
- no-cache
RequestId:
- - aa598f3f-efda-4d1c-9f9a-b9bec21a1af4
+ - b65ebf1e-1b52-4cd2-a8cf-0940a129473d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -214,15 +216,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "06eac17b-a935-4074-aaba-4984997c6704", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -231,15 +235,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2841'
+ - '2658'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:12:52 GMT
+ - Wed, 20 May 2026 09:19:23 GMT
Pragma:
- no-cache
RequestId:
- - ae747753-e81a-485c-ad1a-ff5a69a0c416
+ - 0312946c-74c9-48ff-bd31-85a5447ee1b8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -265,15 +269,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "06eac17b-a935-4074-aaba-4984997c6704", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -282,15 +288,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2841'
+ - '2658'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:12:52 GMT
+ - Wed, 20 May 2026 09:19:25 GMT
Pragma:
- no-cache
RequestId:
- - 2ae67d2f-bb62-412a-b5d9-bb85ac2e7277
+ - 99f06632-7de0-43e1-87dc-176ef931073e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -316,7 +322,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -332,15 +338,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '429'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:12:56 GMT
+ - Wed, 20 May 2026 09:19:30 GMT
Pragma:
- no-cache
RequestId:
- - 00831512-6713-4f28-8479-a1b4126fad57
+ - e460b9c2-d728-4d3f-8ab2-d8d89033d749
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -365,16 +371,16 @@ interactions:
- keep-alive
Content-Length:
- '89'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "6558b0ea-37f3-46fc-8905-ab94f315b5da", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "541d978c-5d0a-4e26-a93b-2346895d4b49", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -383,17 +389,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '153'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:13:03 GMT
+ - Wed, 20 May 2026 09:19:36 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/6558b0ea-37f3-46fc-8905-ab94f315b5da
+ - https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49
Pragma:
- no-cache
RequestId:
- - a75ef8b8-b0ac-42e7-988c-e501cffc96b6
+ - 97e7e303-e2b8-4f83-81dc-76d132f5389a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -419,16 +425,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "06eac17b-a935-4074-aaba-4984997c6704", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "6558b0ea-37f3-46fc-8905-ab94f315b5da", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "541d978c-5d0a-4e26-a93b-2346895d4b49", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -437,15 +446,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:13:04 GMT
+ - Wed, 20 May 2026 09:19:36 GMT
Pragma:
- no-cache
RequestId:
- - 2bd77aa7-1149-4b58-9bbe-4ea3840aa54b
+ - bd746cf0-a3ae-4d5f-bdf4-117c29cde413
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -471,9 +480,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/06eac17b-a935-4074-aaba-4984997c6704/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/83d27cc5-3f52-4f4e-8a3d-63555f5d780d/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -489,11 +498,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:13:05 GMT
+ - Wed, 20 May 2026 09:19:37 GMT
Pragma:
- no-cache
RequestId:
- - 0b31837e-2a42-4b32-9797-a5a9255579fc
+ - 6d611647-ed00-4cbc-94cd-153893dea09a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -519,9 +528,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/06eac17b-a935-4074-aaba-4984997c6704/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/83d27cc5-3f52-4f4e-8a3d-63555f5d780d/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -537,11 +546,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:13:05 GMT
+ - Wed, 20 May 2026 09:19:39 GMT
Pragma:
- no-cache
RequestId:
- - 00d20a14-f8c0-4181-abe0-49df242c50f3
+ - 9c3791a7-232f-4f1c-824e-6c081637642a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -565,17 +574,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/06eac17b-a935-4074-aaba-4984997c6704/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/83d27cc5-3f52-4f4e-8a3d-63555f5d780d/folders
response:
body:
- string: '{"id": "d381ab60-87eb-427c-9423-94bace295d79", "displayName": "fabcli000003",
- "workspaceId": "06eac17b-a935-4074-aaba-4984997c6704"}'
+ string: '{"id": "6e6533ef-ba28-4853-ae3f-301d046c2954", "displayName": "fabcli000003",
+ "workspaceId": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -588,13 +597,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:13:06 GMT
+ - Wed, 20 May 2026 09:19:39 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/06eac17b-a935-4074-aaba-4984997c6704/folders/d381ab60-87eb-427c-9423-94bace295d79
+ - https://api.fabric.microsoft.com/v1/workspaces/83d27cc5-3f52-4f4e-8a3d-63555f5d780d/folders/6e6533ef-ba28-4853-ae3f-301d046c2954
Pragma:
- no-cache
RequestId:
- - db66c07c-0509-4592-baf0-0515541cfe99
+ - b2bac6bc-19a4-46c5-a3cb-373299fbf87f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -620,16 +629,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "06eac17b-a935-4074-aaba-4984997c6704", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "6558b0ea-37f3-46fc-8905-ab94f315b5da", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "541d978c-5d0a-4e26-a93b-2346895d4b49", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -638,15 +650,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:13:07 GMT
+ - Wed, 20 May 2026 09:19:40 GMT
Pragma:
- no-cache
RequestId:
- - 3d563abb-74d6-4610-9b84-c0ea15921d14
+ - a49a227b-66bb-4d7e-8517-615e987a8330
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -672,9 +684,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/6558b0ea-37f3-46fc-8905-ab94f315b5da/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -690,11 +702,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:13:08 GMT
+ - Wed, 20 May 2026 09:19:41 GMT
Pragma:
- no-cache
RequestId:
- - fe118e26-ac1e-4d54-b784-8a087d9c0aeb
+ - 00cb4d08-359d-4909-8e2a-71b5a0436bd6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -720,9 +732,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/6558b0ea-37f3-46fc-8905-ab94f315b5da/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -738,11 +750,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:13:09 GMT
+ - Wed, 20 May 2026 09:19:42 GMT
Pragma:
- no-cache
RequestId:
- - 6d014186-4625-47d0-a716-f340a61522bf
+ - 92385e90-01ad-4202-ba91-71f0848803f3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -766,17 +778,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/6558b0ea-37f3-46fc-8905-ab94f315b5da/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/folders
response:
body:
- string: '{"id": "3f9e4b85-13e3-401d-909d-a091e08e6cdd", "displayName": "fabcli000004",
- "workspaceId": "6558b0ea-37f3-46fc-8905-ab94f315b5da"}'
+ string: '{"id": "225fb834-e2ae-479b-b951-99b94e6f5e17", "displayName": "fabcli000004",
+ "workspaceId": "541d978c-5d0a-4e26-a93b-2346895d4b49"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -785,17 +797,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '132'
+ - '133'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:13:09 GMT
+ - Wed, 20 May 2026 09:19:42 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/6558b0ea-37f3-46fc-8905-ab94f315b5da/folders/3f9e4b85-13e3-401d-909d-a091e08e6cdd
+ - https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/folders/225fb834-e2ae-479b-b951-99b94e6f5e17
Pragma:
- no-cache
RequestId:
- - 752ad387-ea1a-4b98-93ad-ee13b06506d0
+ - 4a55e691-3922-411d-8941-a7dcd75054e1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -821,16 +833,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "06eac17b-a935-4074-aaba-4984997c6704", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "6558b0ea-37f3-46fc-8905-ab94f315b5da", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "541d978c-5d0a-4e26-a93b-2346895d4b49", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -839,15 +854,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:13:10 GMT
+ - Wed, 20 May 2026 09:19:43 GMT
Pragma:
- no-cache
RequestId:
- - 7f29a307-f1c8-4ad7-8f5f-da654287eea7
+ - fbdb0b34-bc40-4d24-a398-10582cce1a2d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -873,9 +888,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/06eac17b-a935-4074-aaba-4984997c6704/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/83d27cc5-3f52-4f4e-8a3d-63555f5d780d/items
response:
body:
string: '{"value": []}'
@@ -891,11 +906,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:13:10 GMT
+ - Wed, 20 May 2026 09:19:44 GMT
Pragma:
- no-cache
RequestId:
- - 777951d4-86ef-44f5-9ea9-b178231b3069
+ - 8816e0f6-ebce-4f65-b3a3-ac2968387400
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -921,9 +936,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/06eac17b-a935-4074-aaba-4984997c6704/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/83d27cc5-3f52-4f4e-8a3d-63555f5d780d/items
response:
body:
string: '{"value": []}'
@@ -939,11 +954,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:13:11 GMT
+ - Wed, 20 May 2026 09:19:45 GMT
Pragma:
- no-cache
RequestId:
- - 82e5284f-b97c-4c6e-865c-b88a16240ea5
+ - af104439-7dac-4bd2-92f0-8c2522d7ee89
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -958,7 +973,9 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000005", "type": "Notebook", "folderId": null, "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", "payloadType": "InlineBase64"}]}}'
+ body: '{"displayName": "fabcli000005", "type": "Notebook", "folderId": null, "definition":
+ {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
+ "payloadType": "InlineBase64"}]}}'
headers:
Accept:
- '*/*'
@@ -968,13 +985,12 @@ interactions:
- keep-alive
Content-Length:
- '731'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/06eac17b-a935-4074-aaba-4984997c6704/notebooks
+ uri: https://api.fabric.microsoft.com/v1/workspaces/83d27cc5-3f52-4f4e-8a3d-63555f5d780d/notebooks
response:
body:
string: 'null'
@@ -990,15 +1006,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:13:13 GMT
+ - Wed, 20 May 2026 09:19:47 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/75c4851f-7747-47ef-8cab-57b7fb0db383
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1538c261-ede7-4bb7-abb2-dddea8c03c58
Pragma:
- no-cache
RequestId:
- - 37275b78-cb06-4c5d-b609-c9f82c66fda1
+ - 03346537-e0f6-4186-b1ab-819021997900
Retry-After:
- '20'
Strict-Transport-Security:
@@ -1012,7 +1028,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - 75c4851f-7747-47ef-8cab-57b7fb0db383
+ - 1538c261-ede7-4bb7-abb2-dddea8c03c58
status:
code: 202
message: Accepted
@@ -1028,13 +1044,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/75c4851f-7747-47ef-8cab-57b7fb0db383
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1538c261-ede7-4bb7-abb2-dddea8c03c58
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:13:12.7023819",
- "lastUpdatedTimeUtc": "2026-02-06T08:13:14.3904671", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:19:46.5850539",
+ "lastUpdatedTimeUtc": "2026-05-20T09:19:50.2084901", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -1048,13 +1064,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:13:34 GMT
+ - Wed, 20 May 2026 09:20:07 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/75c4851f-7747-47ef-8cab-57b7fb0db383/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1538c261-ede7-4bb7-abb2-dddea8c03c58/result
Pragma:
- no-cache
RequestId:
- - d2c363c5-0267-4b50-b045-e3bed7bbc181
+ - 626ee7f9-5df9-4d66-9615-fae3b4f79a7b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1062,7 +1078,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - 75c4851f-7747-47ef-8cab-57b7fb0db383
+ - 1538c261-ede7-4bb7-abb2-dddea8c03c58
status:
code: 200
message: OK
@@ -1078,14 +1094,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/75c4851f-7747-47ef-8cab-57b7fb0db383/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1538c261-ede7-4bb7-abb2-dddea8c03c58/result
response:
body:
- string: '{"id": "4a9f2d42-b08e-448f-afc1-183097f41abc", "type": "Notebook",
- "displayName": "fabcli000005", "workspaceId":
- "06eac17b-a935-4074-aaba-4984997c6704"}'
+ string: '{"id": "8085b4c7-24b4-464c-bc1d-0a4446b13841", "type": "Notebook",
+ "displayName": "fabcli000005", "description": "", "workspaceId": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1096,11 +1111,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 08:13:35 GMT
+ - Wed, 20 May 2026 09:20:09 GMT
Pragma:
- no-cache
RequestId:
- - 85654b13-d8a9-4122-b028-1c83ce311eb7
+ - ba2c7c2a-2e93-4c93-864f-3e8fa001f769
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -1124,16 +1139,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "06eac17b-a935-4074-aaba-4984997c6704", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "6558b0ea-37f3-46fc-8905-ab94f315b5da", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "541d978c-5d0a-4e26-a93b-2346895d4b49", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1142,15 +1160,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:13:37 GMT
+ - Wed, 20 May 2026 09:20:09 GMT
Pragma:
- no-cache
RequestId:
- - 478a3483-a624-4173-abc6-10b5babf8b8e
+ - 20c69248-71bd-43d4-b7e4-5ad53f248f4e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1176,13 +1194,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/6558b0ea-37f3-46fc-8905-ab94f315b5da/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "3f9e4b85-13e3-401d-909d-a091e08e6cdd", "displayName":
- "fabcli000004", "workspaceId": "6558b0ea-37f3-46fc-8905-ab94f315b5da"}]}'
+ string: '{"value": [{"id": "225fb834-e2ae-479b-b951-99b94e6f5e17", "displayName":
+ "fabcli000004", "workspaceId": "541d978c-5d0a-4e26-a93b-2346895d4b49"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1191,15 +1209,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:13:38 GMT
+ - Wed, 20 May 2026 09:20:10 GMT
Pragma:
- no-cache
RequestId:
- - 7233bdde-2319-4b88-967f-3937e1a80196
+ - e3206010-d1ae-4d7e-8027-43a23c958a68
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1225,9 +1243,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/6558b0ea-37f3-46fc-8905-ab94f315b5da/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/items
response:
body:
string: '{"value": []}'
@@ -1243,11 +1261,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:13:39 GMT
+ - Wed, 20 May 2026 09:20:11 GMT
Pragma:
- no-cache
RequestId:
- - 579d5bbe-7f89-4855-ad87-43166857ab8b
+ - a9bbb853-80d4-4d25-b966-a15882300da9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1273,9 +1291,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/6558b0ea-37f3-46fc-8905-ab94f315b5da/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/items
response:
body:
string: '{"value": []}'
@@ -1291,11 +1309,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:13:39 GMT
+ - Wed, 20 May 2026 09:20:12 GMT
Pragma:
- no-cache
RequestId:
- - f017a981-db69-4167-a303-6d211e5a78e7
+ - 79ea6797-e625-43ab-956d-4c5c2f6d049e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1310,9 +1328,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000005", "type":
- "Notebook", "folderId": "3f9e4b85-13e3-401d-909d-a091e08e6cdd", "definition":
- {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
+ body: '{"displayName": "fabcli000005", "type": "Notebook", "folderId": "225fb834-e2ae-479b-b951-99b94e6f5e17",
+ "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
"payloadType": "InlineBase64"}]}}'
headers:
Accept:
@@ -1323,13 +1340,12 @@ interactions:
- keep-alive
Content-Length:
- '765'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/6558b0ea-37f3-46fc-8905-ab94f315b5da/notebooks
+ uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/notebooks
response:
body:
string: 'null'
@@ -1345,15 +1361,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:13:41 GMT
+ - Wed, 20 May 2026 09:20:13 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/424ff7a0-8faa-4971-a799-6290792324b7
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a4219f21-4b6f-4d7c-9218-052e6dd310c9
Pragma:
- no-cache
RequestId:
- - 3e23b419-af8e-4c5d-a5b1-424735c0a386
+ - 35fb7353-ba33-4831-84b6-c090108e4449
Retry-After:
- '20'
Strict-Transport-Security:
@@ -1367,7 +1383,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - 424ff7a0-8faa-4971-a799-6290792324b7
+ - a4219f21-4b6f-4d7c-9218-052e6dd310c9
status:
code: 202
message: Accepted
@@ -1383,13 +1399,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/424ff7a0-8faa-4971-a799-6290792324b7
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a4219f21-4b6f-4d7c-9218-052e6dd310c9
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:13:41.2406298",
- "lastUpdatedTimeUtc": "2026-02-06T08:13:42.8343897", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:20:13.5883325",
+ "lastUpdatedTimeUtc": "2026-05-20T09:20:15.1365548", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -1403,13 +1419,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:03 GMT
+ - Wed, 20 May 2026 09:20:34 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/424ff7a0-8faa-4971-a799-6290792324b7/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a4219f21-4b6f-4d7c-9218-052e6dd310c9/result
Pragma:
- no-cache
RequestId:
- - f3b74303-068b-4881-8a24-3d1ba94ddabe
+ - 5fa29054-c49e-4aaa-9438-2b48d0f9aff6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1417,7 +1433,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - 424ff7a0-8faa-4971-a799-6290792324b7
+ - a4219f21-4b6f-4d7c-9218-052e6dd310c9
status:
code: 200
message: OK
@@ -1433,14 +1449,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/424ff7a0-8faa-4971-a799-6290792324b7/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a4219f21-4b6f-4d7c-9218-052e6dd310c9/result
response:
body:
- string: '{"id": "ffe7200b-1cb2-4931-98fa-7a39e082c364", "type": "Notebook",
- "displayName": "fabcli000005", "workspaceId":
- "6558b0ea-37f3-46fc-8905-ab94f315b5da", "folderId": "3f9e4b85-13e3-401d-909d-a091e08e6cdd"}'
+ string: '{"id": "f4a0d098-e6b4-470b-b73e-1c99689874d3", "type": "Notebook",
+ "displayName": "fabcli000005", "description": "", "workspaceId": "541d978c-5d0a-4e26-a93b-2346895d4b49",
+ "folderId": "225fb834-e2ae-479b-b951-99b94e6f5e17"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1451,11 +1467,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 08:14:04 GMT
+ - Wed, 20 May 2026 09:20:35 GMT
Pragma:
- no-cache
RequestId:
- - 46ff083c-8457-4950-b56d-117d7ee50b9a
+ - aa2f6849-1ac1-4435-8273-edc59d999a52
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -1479,16 +1495,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "06eac17b-a935-4074-aaba-4984997c6704", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "6558b0ea-37f3-46fc-8905-ab94f315b5da", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "541d978c-5d0a-4e26-a93b-2346895d4b49", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1497,15 +1516,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:05 GMT
+ - Wed, 20 May 2026 09:20:36 GMT
Pragma:
- no-cache
RequestId:
- - 0e9de9b3-1c1c-4208-bbc2-71077dccda66
+ - f31ba0d3-6554-4125-860e-a0fb72fe8492
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1531,14 +1550,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/06eac17b-a935-4074-aaba-4984997c6704/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/83d27cc5-3f52-4f4e-8a3d-63555f5d780d/items
response:
body:
- string: '{"value": [{"id": "4a9f2d42-b08e-448f-afc1-183097f41abc", "type": "Notebook",
- "displayName": "fabcli000005", "workspaceId":
- "06eac17b-a935-4074-aaba-4984997c6704"}]}'
+ string: '{"value": [{"id": "8085b4c7-24b4-464c-bc1d-0a4446b13841", "type": "Notebook",
+ "displayName": "fabcli000005", "description": "", "workspaceId": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1547,15 +1565,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '176'
+ - '166'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:06 GMT
+ - Wed, 20 May 2026 09:20:37 GMT
Pragma:
- no-cache
RequestId:
- - d19ad972-7d1a-4abc-b91f-91ac4f16e657
+ - 2577e407-e0eb-4ad7-8010-81f98af04dee
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1581,16 +1599,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "06eac17b-a935-4074-aaba-4984997c6704", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "6558b0ea-37f3-46fc-8905-ab94f315b5da", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "541d978c-5d0a-4e26-a93b-2346895d4b49", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1599,15 +1620,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:07 GMT
+ - Wed, 20 May 2026 09:20:38 GMT
Pragma:
- no-cache
RequestId:
- - d5f427b5-ddfe-499e-91d6-abbf57251227
+ - e0d375a2-eb35-473d-9c61-dcd552246ba2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1633,14 +1654,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/6558b0ea-37f3-46fc-8905-ab94f315b5da/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/items
response:
body:
- string: '{"value": [{"id": "ffe7200b-1cb2-4931-98fa-7a39e082c364", "type": "Notebook",
- "displayName": "fabcli000005", "workspaceId":
- "6558b0ea-37f3-46fc-8905-ab94f315b5da", "folderId": "3f9e4b85-13e3-401d-909d-a091e08e6cdd"}]}'
+ string: '{"value": [{"id": "f4a0d098-e6b4-470b-b73e-1c99689874d3", "type": "Notebook",
+ "displayName": "fabcli000005", "description": "", "workspaceId": "541d978c-5d0a-4e26-a93b-2346895d4b49",
+ "folderId": "225fb834-e2ae-479b-b951-99b94e6f5e17"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1649,15 +1670,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '208'
+ - '198'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:07 GMT
+ - Wed, 20 May 2026 09:20:38 GMT
Pragma:
- no-cache
RequestId:
- - f2796d6c-e65f-42bd-be1e-77ac840175a6
+ - 8638311d-940f-4e75-9ca2-3b3155e1cfd8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1683,13 +1704,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/6558b0ea-37f3-46fc-8905-ab94f315b5da/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "3f9e4b85-13e3-401d-909d-a091e08e6cdd", "displayName":
- "fabcli000004", "workspaceId": "6558b0ea-37f3-46fc-8905-ab94f315b5da"}]}'
+ string: '{"value": [{"id": "225fb834-e2ae-479b-b951-99b94e6f5e17", "displayName":
+ "fabcli000004", "workspaceId": "541d978c-5d0a-4e26-a93b-2346895d4b49"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1698,15 +1719,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:09 GMT
+ - Wed, 20 May 2026 09:20:39 GMT
Pragma:
- no-cache
RequestId:
- - 3c697520-042f-4446-ac0b-545cd1939126
+ - dcc528eb-16db-44f9-9c0d-c1aa24b194d5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1732,14 +1753,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/6558b0ea-37f3-46fc-8905-ab94f315b5da/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/items
response:
body:
- string: '{"value": [{"id": "ffe7200b-1cb2-4931-98fa-7a39e082c364", "type": "Notebook",
- "displayName": "fabcli000005", "workspaceId":
- "6558b0ea-37f3-46fc-8905-ab94f315b5da", "folderId": "3f9e4b85-13e3-401d-909d-a091e08e6cdd"}]}'
+ string: '{"value": [{"id": "f4a0d098-e6b4-470b-b73e-1c99689874d3", "type": "Notebook",
+ "displayName": "fabcli000005", "description": "", "workspaceId": "541d978c-5d0a-4e26-a93b-2346895d4b49",
+ "folderId": "225fb834-e2ae-479b-b951-99b94e6f5e17"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1748,15 +1769,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '208'
+ - '198'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:09 GMT
+ - Wed, 20 May 2026 09:20:41 GMT
Pragma:
- no-cache
RequestId:
- - cd1e1dd8-dd61-4242-b0e3-d6f3421e5f7f
+ - 29ae1c5b-0f4e-4c5c-8a08-d94c6c340da7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1782,13 +1803,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/6558b0ea-37f3-46fc-8905-ab94f315b5da/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "3f9e4b85-13e3-401d-909d-a091e08e6cdd", "displayName":
- "fabcli000004", "workspaceId": "6558b0ea-37f3-46fc-8905-ab94f315b5da"}]}'
+ string: '{"value": [{"id": "225fb834-e2ae-479b-b951-99b94e6f5e17", "displayName":
+ "fabcli000004", "workspaceId": "541d978c-5d0a-4e26-a93b-2346895d4b49"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1797,15 +1818,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:10 GMT
+ - Wed, 20 May 2026 09:20:42 GMT
Pragma:
- no-cache
RequestId:
- - c3847df0-1afa-4021-8567-83e453336fdb
+ - 76c7666d-9ce8-43b3-a369-13c65c83e8d5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1831,16 +1852,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "06eac17b-a935-4074-aaba-4984997c6704", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "6558b0ea-37f3-46fc-8905-ab94f315b5da", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "541d978c-5d0a-4e26-a93b-2346895d4b49", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1849,15 +1873,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:11 GMT
+ - Wed, 20 May 2026 09:20:42 GMT
Pragma:
- no-cache
RequestId:
- - c1f184c7-1200-4335-88d8-98e6d245d5cd
+ - a90ec008-d52f-48c1-8837-6e0d29f072b2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1883,13 +1907,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/6558b0ea-37f3-46fc-8905-ab94f315b5da/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "3f9e4b85-13e3-401d-909d-a091e08e6cdd", "displayName":
- "fabcli000004", "workspaceId": "6558b0ea-37f3-46fc-8905-ab94f315b5da"}]}'
+ string: '{"value": [{"id": "225fb834-e2ae-479b-b951-99b94e6f5e17", "displayName":
+ "fabcli000004", "workspaceId": "541d978c-5d0a-4e26-a93b-2346895d4b49"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1898,15 +1922,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:11 GMT
+ - Wed, 20 May 2026 09:20:43 GMT
Pragma:
- no-cache
RequestId:
- - 3ef7d485-a6a3-4124-ac27-8de9951cb138
+ - 1cb0d40e-c970-43c6-a90d-51808a94e5af
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1932,14 +1956,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/6558b0ea-37f3-46fc-8905-ab94f315b5da/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/items
response:
body:
- string: '{"value": [{"id": "ffe7200b-1cb2-4931-98fa-7a39e082c364", "type": "Notebook",
- "displayName": "fabcli000005", "workspaceId":
- "6558b0ea-37f3-46fc-8905-ab94f315b5da", "folderId": "3f9e4b85-13e3-401d-909d-a091e08e6cdd"}]}'
+ string: '{"value": [{"id": "f4a0d098-e6b4-470b-b73e-1c99689874d3", "type": "Notebook",
+ "displayName": "fabcli000005", "description": "", "workspaceId": "541d978c-5d0a-4e26-a93b-2346895d4b49",
+ "folderId": "225fb834-e2ae-479b-b951-99b94e6f5e17"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1948,15 +1972,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '208'
+ - '198'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:12 GMT
+ - Wed, 20 May 2026 09:20:44 GMT
Pragma:
- no-cache
RequestId:
- - a6d6c5c3-d065-4859-931c-5ff90dbc2317
+ - f4ba5bf7-ef47-4f67-870e-e94a0fe2c4b2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1982,13 +2006,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/6558b0ea-37f3-46fc-8905-ab94f315b5da/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "3f9e4b85-13e3-401d-909d-a091e08e6cdd", "displayName":
- "fabcli000004", "workspaceId": "6558b0ea-37f3-46fc-8905-ab94f315b5da"}]}'
+ string: '{"value": [{"id": "225fb834-e2ae-479b-b951-99b94e6f5e17", "displayName":
+ "fabcli000004", "workspaceId": "541d978c-5d0a-4e26-a93b-2346895d4b49"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1997,15 +2021,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:13 GMT
+ - Wed, 20 May 2026 09:20:45 GMT
Pragma:
- no-cache
RequestId:
- - a33a53e5-2f5c-4284-894c-790a6db0e51c
+ - d2cd72f9-840b-4453-962f-b41b4c9e4d4d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2033,9 +2057,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/6558b0ea-37f3-46fc-8905-ab94f315b5da/items/ffe7200b-1cb2-4931-98fa-7a39e082c364
+ uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/items/f4a0d098-e6b4-470b-b73e-1c99689874d3
response:
body:
string: ''
@@ -2051,11 +2075,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:14:14 GMT
+ - Wed, 20 May 2026 09:20:46 GMT
Pragma:
- no-cache
RequestId:
- - 1e994137-94b8-42f9-90c4-0f9d25b423cc
+ - d0ebae60-9d3b-4e69-b500-a31e19ce668c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2081,16 +2105,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "06eac17b-a935-4074-aaba-4984997c6704", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "6558b0ea-37f3-46fc-8905-ab94f315b5da", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "541d978c-5d0a-4e26-a93b-2346895d4b49", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2099,15 +2126,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:14 GMT
+ - Wed, 20 May 2026 09:20:47 GMT
Pragma:
- no-cache
RequestId:
- - 3fae3972-103e-4686-b2ab-3da2e7bc5365
+ - 653d79e6-908d-4ca6-92d0-b7f742cf9f3a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2133,14 +2160,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/06eac17b-a935-4074-aaba-4984997c6704/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/83d27cc5-3f52-4f4e-8a3d-63555f5d780d/items
response:
body:
- string: '{"value": [{"id": "4a9f2d42-b08e-448f-afc1-183097f41abc", "type": "Notebook",
- "displayName": "fabcli000005", "workspaceId":
- "06eac17b-a935-4074-aaba-4984997c6704"}]}'
+ string: '{"value": [{"id": "8085b4c7-24b4-464c-bc1d-0a4446b13841", "type": "Notebook",
+ "displayName": "fabcli000005", "description": "", "workspaceId": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2149,15 +2175,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '176'
+ - '166'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:15 GMT
+ - Wed, 20 May 2026 09:20:48 GMT
Pragma:
- no-cache
RequestId:
- - 6f8aeab2-5337-4bb8-98df-a85b9ff34083
+ - f101e0ee-ab52-4fe7-b70b-d3be0cae91c4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2185,9 +2211,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/06eac17b-a935-4074-aaba-4984997c6704/items/4a9f2d42-b08e-448f-afc1-183097f41abc
+ uri: https://api.fabric.microsoft.com/v1/workspaces/83d27cc5-3f52-4f4e-8a3d-63555f5d780d/items/8085b4c7-24b4-464c-bc1d-0a4446b13841
response:
body:
string: ''
@@ -2203,11 +2229,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:14:17 GMT
+ - Wed, 20 May 2026 09:20:48 GMT
Pragma:
- no-cache
RequestId:
- - 7c449c0f-0440-4218-b7cf-a1fcc0a47b3e
+ - ac3ea889-91df-4dcf-a60c-3284a42d9aa4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2233,16 +2259,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "06eac17b-a935-4074-aaba-4984997c6704", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "6558b0ea-37f3-46fc-8905-ab94f315b5da", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "541d978c-5d0a-4e26-a93b-2346895d4b49", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2251,15 +2280,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:17 GMT
+ - Wed, 20 May 2026 09:20:49 GMT
Pragma:
- no-cache
RequestId:
- - 7280145a-33b0-4d27-93d4-a11c4d49586c
+ - 1b052094-aa8b-4777-91eb-4b5335152a0f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2285,13 +2314,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/6558b0ea-37f3-46fc-8905-ab94f315b5da/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "3f9e4b85-13e3-401d-909d-a091e08e6cdd", "displayName":
- "fabcli000004", "workspaceId": "6558b0ea-37f3-46fc-8905-ab94f315b5da"}]}'
+ string: '{"value": [{"id": "225fb834-e2ae-479b-b951-99b94e6f5e17", "displayName":
+ "fabcli000004", "workspaceId": "541d978c-5d0a-4e26-a93b-2346895d4b49"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2300,15 +2329,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '144'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:18 GMT
+ - Wed, 20 May 2026 09:20:51 GMT
Pragma:
- no-cache
RequestId:
- - ebcb5735-c4db-4c67-91b2-b4f89e9ed298
+ - 4cac9670-63f1-477c-8b93-2522627d2dde
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2336,9 +2365,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/6558b0ea-37f3-46fc-8905-ab94f315b5da/folders/3f9e4b85-13e3-401d-909d-a091e08e6cdd
+ uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/folders/225fb834-e2ae-479b-b951-99b94e6f5e17
response:
body:
string: ''
@@ -2354,11 +2383,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:14:18 GMT
+ - Wed, 20 May 2026 09:20:52 GMT
Pragma:
- no-cache
RequestId:
- - 4069f475-6b61-4187-9691-9603a22efa64
+ - 0e1a346f-8514-4ac7-b430-60cb5107d271
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2384,16 +2413,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "06eac17b-a935-4074-aaba-4984997c6704", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "6558b0ea-37f3-46fc-8905-ab94f315b5da", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "541d978c-5d0a-4e26-a93b-2346895d4b49", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2402,15 +2434,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:20 GMT
+ - Wed, 20 May 2026 09:20:52 GMT
Pragma:
- no-cache
RequestId:
- - 14efc1b5-4797-4aec-b9c1-6d796cf85cdf
+ - ab3f364a-66ed-47eb-ad1c-94c2bf1e4abb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2436,13 +2468,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/06eac17b-a935-4074-aaba-4984997c6704/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/83d27cc5-3f52-4f4e-8a3d-63555f5d780d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "d381ab60-87eb-427c-9423-94bace295d79", "displayName":
- "fabcli000003", "workspaceId": "06eac17b-a935-4074-aaba-4984997c6704"}]}'
+ string: '{"value": [{"id": "6e6533ef-ba28-4853-ae3f-301d046c2954", "displayName":
+ "fabcli000003", "workspaceId": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2455,11 +2487,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:20 GMT
+ - Wed, 20 May 2026 09:20:53 GMT
Pragma:
- no-cache
RequestId:
- - 9c612845-914e-4f6a-92bc-4f2c2d69329b
+ - 866bdbcf-2d1f-434d-9100-ab1b839e4ddb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2487,9 +2519,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/06eac17b-a935-4074-aaba-4984997c6704/folders/d381ab60-87eb-427c-9423-94bace295d79
+ uri: https://api.fabric.microsoft.com/v1/workspaces/83d27cc5-3f52-4f4e-8a3d-63555f5d780d/folders/6e6533ef-ba28-4853-ae3f-301d046c2954
response:
body:
string: ''
@@ -2505,11 +2537,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:14:21 GMT
+ - Wed, 20 May 2026 09:20:54 GMT
Pragma:
- no-cache
RequestId:
- - f71d166a-2387-4eb8-ab4c-0e94231c7688
+ - c829e76b-f433-4bdf-8a04-11060f3df407
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2535,16 +2567,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "06eac17b-a935-4074-aaba-4984997c6704", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "6558b0ea-37f3-46fc-8905-ab94f315b5da", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "541d978c-5d0a-4e26-a93b-2346895d4b49", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2553,15 +2588,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:22 GMT
+ - Wed, 20 May 2026 09:20:55 GMT
Pragma:
- no-cache
RequestId:
- - 34764f28-bd94-4cd5-b31d-d8c8ee4dab21
+ - 7f3f90a1-51f8-40f9-b935-dcba7ae4c157
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2587,9 +2622,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/06eac17b-a935-4074-aaba-4984997c6704/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/83d27cc5-3f52-4f4e-8a3d-63555f5d780d/items
response:
body:
string: '{"value": []}'
@@ -2605,11 +2640,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:23 GMT
+ - Wed, 20 May 2026 09:20:55 GMT
Pragma:
- no-cache
RequestId:
- - b75b9c30-ca97-44e3-859b-00adf71f7c5b
+ - ec831c05-f829-465d-bb43-7de17cef84ff
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2637,9 +2672,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/06eac17b-a935-4074-aaba-4984997c6704
+ uri: https://api.fabric.microsoft.com/v1/workspaces/83d27cc5-3f52-4f4e-8a3d-63555f5d780d
response:
body:
string: ''
@@ -2655,11 +2690,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:14:24 GMT
+ - Wed, 20 May 2026 09:20:57 GMT
Pragma:
- no-cache
RequestId:
- - 174bce63-810d-403d-bb07-354f3d941174
+ - 3a0e9673-15d2-4087-8eb0-2c88aba93d0b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2685,15 +2720,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "6558b0ea-37f3-46fc-8905-ab94f315b5da", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "541d978c-5d0a-4e26-a93b-2346895d4b49", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2702,15 +2739,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2842'
+ - '2657'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:24 GMT
+ - Wed, 20 May 2026 09:20:57 GMT
Pragma:
- no-cache
RequestId:
- - f0ad59c2-b8b4-4538-ab69-aa7e7b416b6d
+ - 885017df-9bf0-46d6-a7da-1aa6d6a26f64
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2736,9 +2773,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/6558b0ea-37f3-46fc-8905-ab94f315b5da/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/items
response:
body:
string: '{"value": []}'
@@ -2754,11 +2791,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:14:25 GMT
+ - Wed, 20 May 2026 09:20:58 GMT
Pragma:
- no-cache
RequestId:
- - aa472769-b523-42ea-9462-c1d6aca943d6
+ - f423a6ac-b9be-4018-b0be-e11b8e5f9b92
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2786,9 +2823,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/6558b0ea-37f3-46fc-8905-ab94f315b5da
+ uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49
response:
body:
string: ''
@@ -2804,11 +2841,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:14:26 GMT
+ - Wed, 20 May 2026 09:20:59 GMT
Pragma:
- no-cache
RequestId:
- - ac5f1c43-031f-4d4c-99ab-115d88bac089
+ - cc92b19e-c526-4a16-bfd6-5fd6e0032523
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_existing_name_different_location_without_block_on_path_collision_success.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_existing_name_different_location_without_block_on_path_collision_success.yaml
index 64a651d8c..fb96d9fcf 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_existing_name_different_location_without_block_on_path_collision_success.yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_existing_name_different_location_without_block_on_path_collision_success.yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:10:02 GMT
+ - Wed, 20 May 2026 09:16:31 GMT
Pragma:
- no-cache
RequestId:
- - fe905ab0-eb2d-4530-82c3-5db3c9ca1a82
+ - cf59ae8b-59f0-4665-98e0-ae9b81679b1f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,14 +62,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -77,15 +79,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:10:02 GMT
+ - Wed, 20 May 2026 09:16:33 GMT
Pragma:
- no-cache
RequestId:
- - 64581cfc-e2bd-4f78-a909-7f0dd371e7c8
+ - 5ac55a06-87e8-47b7-8dba-dd8415b67d6f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -111,7 +113,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -127,15 +129,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '429'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:10:08 GMT
+ - Wed, 20 May 2026 09:16:37 GMT
Pragma:
- no-cache
RequestId:
- - 047c69a5-e874-4548-8b6c-133c21f4af8a
+ - d719c691-a32e-4f1b-9515-7f74f7276a88
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -160,16 +162,16 @@ interactions:
- keep-alive
Content-Length:
- '89'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "bccf3171-5cbc-49a2-9686-70c37f7ad943", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -178,17 +180,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '167'
+ - '154'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:10:15 GMT
+ - Wed, 20 May 2026 09:16:46 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/bccf3171-5cbc-49a2-9686-70c37f7ad943
+ - https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205
Pragma:
- no-cache
RequestId:
- - 8ba13d68-41e9-4c08-8c75-9459e65d64c2
+ - 1c663fd1-e462-4537-be9f-124052dfd862
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -214,15 +216,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "bccf3171-5cbc-49a2-9686-70c37f7ad943", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -231,15 +235,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2843'
+ - '2658'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:10:16 GMT
+ - Wed, 20 May 2026 09:16:46 GMT
Pragma:
- no-cache
RequestId:
- - 3415d19e-84c7-440c-8959-4b985ceeb5a5
+ - 98790c75-b374-4154-8c19-3a1da91adb75
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -265,15 +269,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "bccf3171-5cbc-49a2-9686-70c37f7ad943", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -282,15 +288,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2843'
+ - '2658'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:10:16 GMT
+ - Wed, 20 May 2026 09:16:47 GMT
Pragma:
- no-cache
RequestId:
- - dd9391d1-1e8c-4acb-84e1-0bc64fab6d25
+ - f9c4a80f-9b01-4bf0-b80d-d91b53881a79
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -316,7 +322,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -336,11 +342,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:10:20 GMT
+ - Wed, 20 May 2026 09:16:51 GMT
Pragma:
- no-cache
RequestId:
- - 55d7a4d0-1c95-43e7-8343-d426bc3038c2
+ - 5acabe18-2cba-47cf-944c-828760379f54
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -365,16 +371,16 @@ interactions:
- keep-alive
Content-Length:
- '89'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -383,17 +389,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '165'
+ - '154'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:10:27 GMT
+ - Wed, 20 May 2026 09:16:58 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb
+ - https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46
Pragma:
- no-cache
RequestId:
- - fe52ef0b-73b8-41c0-8038-4657e4ccf282
+ - 834f9c78-0d2c-4996-80d4-613e50e93b47
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -419,16 +425,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "bccf3171-5cbc-49a2-9686-70c37f7ad943", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -437,15 +446,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2695'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:10:28 GMT
+ - Wed, 20 May 2026 09:16:58 GMT
Pragma:
- no-cache
RequestId:
- - 3d577320-6e11-43e4-a8bd-eacf8e57a0d0
+ - 275ad4b0-8978-40cb-b82f-71a6d8c18f29
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -471,9 +480,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/bccf3171-5cbc-49a2-9686-70c37f7ad943/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -489,11 +498,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:10:28 GMT
+ - Wed, 20 May 2026 09:16:59 GMT
Pragma:
- no-cache
RequestId:
- - 6516978d-37e8-48ed-9104-3fea2ba0cc5b
+ - ce7d1fe5-8350-41e1-9c4b-a6057059fa25
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -519,9 +528,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/bccf3171-5cbc-49a2-9686-70c37f7ad943/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -537,11 +546,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:10:29 GMT
+ - Wed, 20 May 2026 09:17:00 GMT
Pragma:
- no-cache
RequestId:
- - 41c73f82-051e-44c0-88d0-c62c7d5a1dc0
+ - dfc66b7f-3029-469a-86a9-10598ed9287c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -565,17 +574,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/bccf3171-5cbc-49a2-9686-70c37f7ad943/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205/folders
response:
body:
- string: '{"id": "30f875b4-90d5-4616-ace6-587508a6ee5e", "displayName": "fabcli000003",
- "workspaceId": "bccf3171-5cbc-49a2-9686-70c37f7ad943"}'
+ string: '{"id": "13be0a46-6e7a-425b-a31a-e2170d4525e8", "displayName": "fabcli000003",
+ "workspaceId": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -588,13 +597,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:10:30 GMT
+ - Wed, 20 May 2026 09:17:01 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/bccf3171-5cbc-49a2-9686-70c37f7ad943/folders/30f875b4-90d5-4616-ace6-587508a6ee5e
+ - https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205/folders/13be0a46-6e7a-425b-a31a-e2170d4525e8
Pragma:
- no-cache
RequestId:
- - 9b83083a-58d4-4184-892d-32d0fd731b5f
+ - a99b1e1a-b8e7-4087-a93a-facf69449549
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -620,16 +629,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "bccf3171-5cbc-49a2-9686-70c37f7ad943", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -638,15 +650,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2695'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:10:31 GMT
+ - Wed, 20 May 2026 09:17:01 GMT
Pragma:
- no-cache
RequestId:
- - 6278dcae-8f65-46b9-bf67-8cc9a1de1a46
+ - 4d191566-ba74-4188-b9ea-7ce965c6333f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -672,9 +684,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -690,11 +702,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:10:32 GMT
+ - Wed, 20 May 2026 09:17:03 GMT
Pragma:
- no-cache
RequestId:
- - 2e77c53b-9a37-479d-9b74-72803106ef6e
+ - e125327a-3d3d-4f6b-bcc6-16e8e8a4225a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -720,9 +732,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -738,11 +750,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:10:32 GMT
+ - Wed, 20 May 2026 09:17:03 GMT
Pragma:
- no-cache
RequestId:
- - 3016b896-141a-42e5-80bb-341162760601
+ - f0cf24bd-cb6d-4d93-8fc6-587caf194aa6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -766,17 +778,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/folders
response:
body:
- string: '{"id": "3de4c823-bd95-4344-8b80-730d299687e6", "displayName": "fabcli000004",
- "workspaceId": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb"}'
+ string: '{"id": "dbf46a01-e5c9-41b4-acf7-a1ca4c10aa26", "displayName": "fabcli000004",
+ "workspaceId": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -785,17 +797,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '132'
+ - '133'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:10:33 GMT
+ - Wed, 20 May 2026 09:17:04 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/folders/3de4c823-bd95-4344-8b80-730d299687e6
+ - https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/folders/dbf46a01-e5c9-41b4-acf7-a1ca4c10aa26
Pragma:
- no-cache
RequestId:
- - 7ec19272-565a-413a-8c8d-1f7cc20a9782
+ - 96d7f66e-3974-4711-b4a5-46858c5f6fb2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -821,16 +833,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "bccf3171-5cbc-49a2-9686-70c37f7ad943", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -839,15 +854,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2695'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:10:34 GMT
+ - Wed, 20 May 2026 09:17:05 GMT
Pragma:
- no-cache
RequestId:
- - d1bf7bc5-2f39-43cb-b526-7db16253cc2f
+ - 79200187-5881-4fda-a72f-9329ae88a719
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -873,9 +888,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/bccf3171-5cbc-49a2-9686-70c37f7ad943/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205/items
response:
body:
string: '{"value": []}'
@@ -891,11 +906,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:10:35 GMT
+ - Wed, 20 May 2026 09:17:06 GMT
Pragma:
- no-cache
RequestId:
- - 8b34be73-e2d2-4226-98f4-bf30809b6ce3
+ - a3708e5f-3246-4db2-b55f-ab88ef2b57ec
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -921,9 +936,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/bccf3171-5cbc-49a2-9686-70c37f7ad943/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205/items
response:
body:
string: '{"value": []}'
@@ -939,11 +954,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:10:35 GMT
+ - Wed, 20 May 2026 09:17:06 GMT
Pragma:
- no-cache
RequestId:
- - c5d785f1-5faa-4570-be11-486fe5a4e027
+ - ff0ba580-1a59-4e84-b921-7b7244d4d414
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -958,7 +973,9 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000005", "type": "Notebook", "folderId": null, "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", "payloadType": "InlineBase64"}]}}'
+ body: '{"displayName": "fabcli000005", "type": "Notebook", "folderId": null, "definition":
+ {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
+ "payloadType": "InlineBase64"}]}}'
headers:
Accept:
- '*/*'
@@ -968,13 +985,12 @@ interactions:
- keep-alive
Content-Length:
- '731'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/bccf3171-5cbc-49a2-9686-70c37f7ad943/notebooks
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205/notebooks
response:
body:
string: 'null'
@@ -990,15 +1006,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:10:38 GMT
+ - Wed, 20 May 2026 09:17:09 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/df2b883c-3455-438c-8361-26cbb5c9a23b
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e852db84-d6f4-4b98-9a0a-3e9fe9340719
Pragma:
- no-cache
RequestId:
- - a86ffaf7-3dbe-43eb-a5ce-0c210cc6073d
+ - 80f3ae48-d2a9-4240-9e9b-536525290f33
Retry-After:
- '20'
Strict-Transport-Security:
@@ -1012,7 +1028,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - df2b883c-3455-438c-8361-26cbb5c9a23b
+ - e852db84-d6f4-4b98-9a0a-3e9fe9340719
status:
code: 202
message: Accepted
@@ -1028,13 +1044,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/df2b883c-3455-438c-8361-26cbb5c9a23b
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e852db84-d6f4-4b98-9a0a-3e9fe9340719
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:10:37.5963365",
- "lastUpdatedTimeUtc": "2026-02-06T08:10:39.2057509", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:17:08.5646349",
+ "lastUpdatedTimeUtc": "2026-05-20T09:17:10.0497991", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -1044,17 +1060,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '130'
+ - '131'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:10:59 GMT
+ - Wed, 20 May 2026 09:17:29 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/df2b883c-3455-438c-8361-26cbb5c9a23b/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e852db84-d6f4-4b98-9a0a-3e9fe9340719/result
Pragma:
- no-cache
RequestId:
- - 5a0a8479-4291-4483-985d-6d1990b4b32d
+ - e21a380a-a451-46d5-aca4-1a1aded343af
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1062,7 +1078,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - df2b883c-3455-438c-8361-26cbb5c9a23b
+ - e852db84-d6f4-4b98-9a0a-3e9fe9340719
status:
code: 200
message: OK
@@ -1078,14 +1094,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/df2b883c-3455-438c-8361-26cbb5c9a23b/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e852db84-d6f4-4b98-9a0a-3e9fe9340719/result
response:
body:
- string: '{"id": "90581caf-4d27-4ee8-bed7-d9bc0bc9e41c", "type": "Notebook",
- "displayName": "fabcli000005", "workspaceId":
- "bccf3171-5cbc-49a2-9686-70c37f7ad943"}'
+ string: '{"id": "3d051b19-871c-488f-99ec-8cf19063fbac", "type": "Notebook",
+ "displayName": "fabcli000005", "description": "", "workspaceId": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1096,11 +1111,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 08:11:00 GMT
+ - Wed, 20 May 2026 09:17:30 GMT
Pragma:
- no-cache
RequestId:
- - 1db49416-21a4-4f04-8260-d079e9c49819
+ - a8d8fdd7-074b-437f-a7f4-afa27cbfcaaa
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -1124,16 +1139,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "bccf3171-5cbc-49a2-9686-70c37f7ad943", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1142,15 +1160,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2695'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:11:01 GMT
+ - Wed, 20 May 2026 09:17:31 GMT
Pragma:
- no-cache
RequestId:
- - d0379b0e-ec93-437d-bfc8-2df70469afa7
+ - d4706e44-717e-4036-bfe3-cb7924ec8370
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1176,13 +1194,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "3de4c823-bd95-4344-8b80-730d299687e6", "displayName":
- "fabcli000004", "workspaceId": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb"}]}'
+ string: '{"value": [{"id": "dbf46a01-e5c9-41b4-acf7-a1ca4c10aa26", "displayName":
+ "fabcli000004", "workspaceId": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1191,15 +1209,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:11:02 GMT
+ - Wed, 20 May 2026 09:17:32 GMT
Pragma:
- no-cache
RequestId:
- - 5626f5a0-7bf4-47da-b69c-a460d8dc6a47
+ - 9d6ef1b7-5d05-42ff-b0d7-e6d5b05db56d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1225,9 +1243,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/items
response:
body:
string: '{"value": []}'
@@ -1243,11 +1261,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:11:03 GMT
+ - Wed, 20 May 2026 09:17:33 GMT
Pragma:
- no-cache
RequestId:
- - 61bbca38-444f-486d-9ae7-f8452c0ff8e3
+ - 206d6e20-87b0-477b-b220-83fd24cd1e79
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1273,9 +1291,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/items
response:
body:
string: '{"value": []}'
@@ -1291,11 +1309,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:11:03 GMT
+ - Wed, 20 May 2026 09:17:33 GMT
Pragma:
- no-cache
RequestId:
- - e149a08f-cf95-42e4-bcb0-6e8159ca4ae9
+ - bfc1f0a8-2dad-4e2f-b38a-934945e3eae7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1310,9 +1328,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000005", "type":
- "Notebook", "folderId": "3de4c823-bd95-4344-8b80-730d299687e6", "definition":
- {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
+ body: '{"displayName": "fabcli000005", "type": "Notebook", "folderId": "dbf46a01-e5c9-41b4-acf7-a1ca4c10aa26",
+ "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
"payloadType": "InlineBase64"}]}}'
headers:
Accept:
@@ -1323,13 +1340,12 @@ interactions:
- keep-alive
Content-Length:
- '765'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/notebooks
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/notebooks
response:
body:
string: 'null'
@@ -1345,15 +1361,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:11:06 GMT
+ - Wed, 20 May 2026 09:17:36 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/22b1d809-74aa-4251-9985-c871476eded7
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ec1dcb05-e686-41e9-b9cc-fe5a2f2b88b6
Pragma:
- no-cache
RequestId:
- - fd44f83e-427e-45de-a740-209c54ad0a97
+ - ec83cdc7-6ff2-4381-841e-f1dd15a3e35c
Retry-After:
- '20'
Strict-Transport-Security:
@@ -1367,7 +1383,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - 22b1d809-74aa-4251-9985-c871476eded7
+ - ec1dcb05-e686-41e9-b9cc-fe5a2f2b88b6
status:
code: 202
message: Accepted
@@ -1383,13 +1399,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/22b1d809-74aa-4251-9985-c871476eded7
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ec1dcb05-e686-41e9-b9cc-fe5a2f2b88b6
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:11:05.3846322",
- "lastUpdatedTimeUtc": "2026-02-06T08:11:06.9948043", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:17:35.3949045",
+ "lastUpdatedTimeUtc": "2026-05-20T09:17:37.2362168", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -1403,13 +1419,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:11:27 GMT
+ - Wed, 20 May 2026 09:17:56 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/22b1d809-74aa-4251-9985-c871476eded7/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ec1dcb05-e686-41e9-b9cc-fe5a2f2b88b6/result
Pragma:
- no-cache
RequestId:
- - f6a69940-294e-4ee5-9c2d-73b973c377dd
+ - fc6ced75-a5c7-4ced-b780-79dd5566dfcb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1417,7 +1433,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - 22b1d809-74aa-4251-9985-c871476eded7
+ - ec1dcb05-e686-41e9-b9cc-fe5a2f2b88b6
status:
code: 200
message: OK
@@ -1433,14 +1449,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/22b1d809-74aa-4251-9985-c871476eded7/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ec1dcb05-e686-41e9-b9cc-fe5a2f2b88b6/result
response:
body:
- string: '{"id": "f5f9567f-dab5-48ac-b7b3-4d23e55469ac", "type": "Notebook",
- "displayName": "fabcli000005", "workspaceId":
- "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "folderId": "3de4c823-bd95-4344-8b80-730d299687e6"}'
+ string: '{"id": "6f78aa8d-ec9b-4ac1-a163-6b805f64be63", "type": "Notebook",
+ "displayName": "fabcli000005", "description": "", "workspaceId": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46",
+ "folderId": "dbf46a01-e5c9-41b4-acf7-a1ca4c10aa26"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1451,11 +1467,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 08:11:28 GMT
+ - Wed, 20 May 2026 09:17:57 GMT
Pragma:
- no-cache
RequestId:
- - fd41c2c8-5ea0-4500-99dd-c42f7757e7e5
+ - 8a397fcf-d926-4542-9f29-d38b1e9a0764
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -1479,16 +1495,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "bccf3171-5cbc-49a2-9686-70c37f7ad943", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1497,15 +1516,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2695'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:11:29 GMT
+ - Wed, 20 May 2026 09:17:58 GMT
Pragma:
- no-cache
RequestId:
- - 34ac06d3-9df6-4970-a718-7f0691a73623
+ - e873bb41-491e-4e44-a1d8-989162b5fa25
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1531,14 +1550,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/bccf3171-5cbc-49a2-9686-70c37f7ad943/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205/items
response:
body:
- string: '{"value": [{"id": "90581caf-4d27-4ee8-bed7-d9bc0bc9e41c", "type": "Notebook",
- "displayName": "fabcli000005", "workspaceId":
- "bccf3171-5cbc-49a2-9686-70c37f7ad943"}]}'
+ string: '{"value": [{"id": "3d051b19-871c-488f-99ec-8cf19063fbac", "type": "Notebook",
+ "displayName": "fabcli000005", "description": "", "workspaceId": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1547,15 +1565,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '177'
+ - '166'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:11:29 GMT
+ - Wed, 20 May 2026 09:17:59 GMT
Pragma:
- no-cache
RequestId:
- - eee8f83f-6fa4-42d7-85da-42d8fa1ea9eb
+ - d76c7985-fbc1-4892-ac1f-66c47855bfdc
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1581,16 +1599,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "bccf3171-5cbc-49a2-9686-70c37f7ad943", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1599,15 +1620,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2695'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:11:31 GMT
+ - Wed, 20 May 2026 09:18:00 GMT
Pragma:
- no-cache
RequestId:
- - 5731627b-3d74-4e7d-944e-187cec8af0c2
+ - d0c8d0b4-336a-4bc7-8316-2e5c8d551741
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1633,14 +1654,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/items
response:
body:
- string: '{"value": [{"id": "f5f9567f-dab5-48ac-b7b3-4d23e55469ac", "type": "Notebook",
- "displayName": "fabcli000005", "workspaceId":
- "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "folderId": "3de4c823-bd95-4344-8b80-730d299687e6"}]}'
+ string: '{"value": [{"id": "6f78aa8d-ec9b-4ac1-a163-6b805f64be63", "type": "Notebook",
+ "displayName": "fabcli000005", "description": "", "workspaceId": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46",
+ "folderId": "dbf46a01-e5c9-41b4-acf7-a1ca4c10aa26"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1649,15 +1670,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '207'
+ - '196'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:11:32 GMT
+ - Wed, 20 May 2026 09:18:01 GMT
Pragma:
- no-cache
RequestId:
- - 6265ae77-6934-41cf-8c30-22c4fec96b16
+ - 4b859a0c-d5a3-48b8-b6d5-3c0da1737812
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1683,13 +1704,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "3de4c823-bd95-4344-8b80-730d299687e6", "displayName":
- "fabcli000004", "workspaceId": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb"}]}'
+ string: '{"value": [{"id": "dbf46a01-e5c9-41b4-acf7-a1ca4c10aa26", "displayName":
+ "fabcli000004", "workspaceId": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1698,15 +1719,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:11:32 GMT
+ - Wed, 20 May 2026 09:18:01 GMT
Pragma:
- no-cache
RequestId:
- - c05cc47a-e502-4c70-8f0e-1505fa110f4e
+ - 8043e372-5ab0-4f3c-a2eb-c3f3d10783fd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1732,14 +1753,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/items
response:
body:
- string: '{"value": [{"id": "f5f9567f-dab5-48ac-b7b3-4d23e55469ac", "type": "Notebook",
- "displayName": "fabcli000005", "workspaceId":
- "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "folderId": "3de4c823-bd95-4344-8b80-730d299687e6"}]}'
+ string: '{"value": [{"id": "6f78aa8d-ec9b-4ac1-a163-6b805f64be63", "type": "Notebook",
+ "displayName": "fabcli000005", "description": "", "workspaceId": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46",
+ "folderId": "dbf46a01-e5c9-41b4-acf7-a1ca4c10aa26"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1748,15 +1769,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '207'
+ - '196'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:11:33 GMT
+ - Wed, 20 May 2026 09:18:03 GMT
Pragma:
- no-cache
RequestId:
- - bda79e4c-6d29-41ce-aaa6-4506c03e1fc9
+ - 069c7642-c496-4cd6-9b3b-8f0295d409f6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1782,13 +1803,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "3de4c823-bd95-4344-8b80-730d299687e6", "displayName":
- "fabcli000004", "workspaceId": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb"}]}'
+ string: '{"value": [{"id": "dbf46a01-e5c9-41b4-acf7-a1ca4c10aa26", "displayName":
+ "fabcli000004", "workspaceId": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1797,15 +1818,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:11:34 GMT
+ - Wed, 20 May 2026 09:18:04 GMT
Pragma:
- no-cache
RequestId:
- - 15b3ca0e-f505-4e96-b6f1-0468098c1bd3
+ - d59610c6-a630-4f6a-9486-46337c232f8d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1831,14 +1852,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/bccf3171-5cbc-49a2-9686-70c37f7ad943/items/90581caf-4d27-4ee8-bed7-d9bc0bc9e41c
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205/items/3d051b19-871c-488f-99ec-8cf19063fbac
response:
body:
- string: '{"id": "90581caf-4d27-4ee8-bed7-d9bc0bc9e41c", "type": "Notebook",
- "displayName": "fabcli000005", "workspaceId":
- "bccf3171-5cbc-49a2-9686-70c37f7ad943"}'
+ string: '{"id": "3d051b19-871c-488f-99ec-8cf19063fbac", "type": "Notebook",
+ "displayName": "fabcli000005", "description": "", "workspaceId": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1847,17 +1867,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '165'
+ - '155'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:11:34 GMT
+ - Wed, 20 May 2026 09:18:04 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 887d8680-9a68-4fa8-85e6-1f20a9ecfea3
+ - d971c56a-7815-4902-a914-87a11ecd4eb6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1885,9 +1905,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/bccf3171-5cbc-49a2-9686-70c37f7ad943/items/90581caf-4d27-4ee8-bed7-d9bc0bc9e41c/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205/items/3d051b19-871c-488f-99ec-8cf19063fbac/getDefinition
response:
body:
string: 'null'
@@ -1903,13 +1923,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:11:35 GMT
+ - Wed, 20 May 2026 09:18:06 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1e9b8d3b-2c37-44da-b3e9-93c7da487503
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d31ddf62-18b1-4433-9be4-d4c139b3ab6b
Pragma:
- no-cache
RequestId:
- - b3a65789-85b6-424f-87bf-f33b6ffb260f
+ - 05c04955-8c83-414b-8a47-b622c3ff1401
Retry-After:
- '20'
Strict-Transport-Security:
@@ -1923,7 +1943,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - 1e9b8d3b-2c37-44da-b3e9-93c7da487503
+ - d31ddf62-18b1-4433-9be4-d4c139b3ab6b
status:
code: 202
message: Accepted
@@ -1939,13 +1959,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1e9b8d3b-2c37-44da-b3e9-93c7da487503
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d31ddf62-18b1-4433-9be4-d4c139b3ab6b
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:11:35.800617",
- "lastUpdatedTimeUtc": "2026-02-06T08:11:36.1756195", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:18:06.2717607",
+ "lastUpdatedTimeUtc": "2026-05-20T09:18:07.0159561", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -1959,13 +1979,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:11:56 GMT
+ - Wed, 20 May 2026 09:18:26 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1e9b8d3b-2c37-44da-b3e9-93c7da487503/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d31ddf62-18b1-4433-9be4-d4c139b3ab6b/result
Pragma:
- no-cache
RequestId:
- - 0fb13184-c3ad-48a2-b49a-fb6444a3ce1a
+ - 2ac439a8-b8b5-4653-8cb4-d1c168a1d064
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1973,7 +1993,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - 1e9b8d3b-2c37-44da-b3e9-93c7da487503
+ - d31ddf62-18b1-4433-9be4-d4c139b3ab6b
status:
code: 200
message: OK
@@ -1989,14 +2009,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1e9b8d3b-2c37-44da-b3e9-93c7da487503/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d31ddf62-18b1-4433-9be4-d4c139b3ab6b/result
response:
body:
string: '{"definition": {"parts": [{"path": "notebook-content.py", "payload":
"IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDUiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDUiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
"payloadType": "InlineBase64"}]}}'
headers:
Access-Control-Expose-Headers:
@@ -2008,11 +2028,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 08:11:57 GMT
+ - Wed, 20 May 2026 09:18:27 GMT
Pragma:
- no-cache
RequestId:
- - 06c7d5d9-5e94-465f-9c83-37c3a98c3b45
+ - f37af244-aa64-45ae-beb2-24e8616102c9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -2025,7 +2045,10 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "Notebook", "displayName": "fabcli000005", "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDUiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}, "folderId": null}'
+ body: '{"type": "Notebook", "displayName": "fabcli000005", "definition": {"parts":
+ [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDUiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
+ "payloadType": "InlineBase64"}]}, "folderId": null}'
headers:
Accept:
- '*/*'
@@ -2034,14 +2057,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1252'
-
+ - '1204'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/items/f5f9567f-dab5-48ac-b7b3-4d23e55469ac/updateDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/items/6f78aa8d-ec9b-4ac1-a163-6b805f64be63/updateDefinition
response:
body:
string: 'null'
@@ -2057,13 +2079,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:11:59 GMT
+ - Wed, 20 May 2026 09:18:28 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/55a7a0de-bc76-4e80-a259-061d4d88f4c6
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/765a81d1-ebad-4e91-b7b7-824f664f6795
Pragma:
- no-cache
RequestId:
- - dce29f5c-9812-42c5-985d-6c31f4a7409a
+ - 4c2ba32c-1702-40a9-a692-02cfe07d21bc
Retry-After:
- '20'
Strict-Transport-Security:
@@ -2077,7 +2099,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - 55a7a0de-bc76-4e80-a259-061d4d88f4c6
+ - 765a81d1-ebad-4e91-b7b7-824f664f6795
status:
code: 202
message: Accepted
@@ -2093,13 +2115,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/55a7a0de-bc76-4e80-a259-061d4d88f4c6
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/765a81d1-ebad-4e91-b7b7-824f664f6795
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:11:59.8068946",
- "lastUpdatedTimeUtc": "2026-02-06T08:12:00.0888426", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:18:29.0857109",
+ "lastUpdatedTimeUtc": "2026-05-20T09:18:29.2170245", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -2109,17 +2131,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '132'
+ - '129'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:12:21 GMT
+ - Wed, 20 May 2026 09:18:49 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/55a7a0de-bc76-4e80-a259-061d4d88f4c6/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/765a81d1-ebad-4e91-b7b7-824f664f6795/result
Pragma:
- no-cache
RequestId:
- - 7f498a8b-5e11-4ce7-84e2-98de92ad21db
+ - 50d7201c-5b36-4ff5-950f-d2daac65369a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2127,7 +2149,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - 55a7a0de-bc76-4e80-a259-061d4d88f4c6
+ - 765a81d1-ebad-4e91-b7b7-824f664f6795
status:
code: 200
message: OK
@@ -2143,14 +2165,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/55a7a0de-bc76-4e80-a259-061d4d88f4c6/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/765a81d1-ebad-4e91-b7b7-824f664f6795/result
response:
body:
- string: '{"id": "f5f9567f-dab5-48ac-b7b3-4d23e55469ac", "type": "Notebook",
- "displayName": "fabcli000005", "workspaceId":
- "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "folderId": "3de4c823-bd95-4344-8b80-730d299687e6"}'
+ string: '{"id": "6f78aa8d-ec9b-4ac1-a163-6b805f64be63", "type": "Notebook",
+ "displayName": "fabcli000005", "description": "", "workspaceId": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46",
+ "folderId": "dbf46a01-e5c9-41b4-acf7-a1ca4c10aa26"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2161,11 +2183,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 08:12:21 GMT
+ - Wed, 20 May 2026 09:18:51 GMT
Pragma:
- no-cache
RequestId:
- - 3976a845-ec9e-470d-867c-d07a371dc4fd
+ - 76599129-27b4-4498-9977-fa580af304c1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -2189,16 +2211,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "bccf3171-5cbc-49a2-9686-70c37f7ad943", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2207,15 +2232,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2695'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:12:23 GMT
+ - Wed, 20 May 2026 09:18:51 GMT
Pragma:
- no-cache
RequestId:
- - 0d75e4d5-7dde-4115-9dfc-7c195da4b058
+ - 87500f1b-5d32-4577-9a9f-9cba9691f78b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2241,13 +2266,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "3de4c823-bd95-4344-8b80-730d299687e6", "displayName":
- "fabcli000004", "workspaceId": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb"}]}'
+ string: '{"value": [{"id": "dbf46a01-e5c9-41b4-acf7-a1ca4c10aa26", "displayName":
+ "fabcli000004", "workspaceId": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2256,15 +2281,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:12:23 GMT
+ - Wed, 20 May 2026 09:18:52 GMT
Pragma:
- no-cache
RequestId:
- - 059b7d6e-128f-47aa-ab9c-8656cb3e19b4
+ - 553c9614-b705-4a2b-a264-23dc14498c07
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2290,14 +2315,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/items
response:
body:
- string: '{"value": [{"id": "f5f9567f-dab5-48ac-b7b3-4d23e55469ac", "type": "Notebook",
- "displayName": "fabcli000005", "workspaceId":
- "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "folderId": "3de4c823-bd95-4344-8b80-730d299687e6"}]}'
+ string: '{"value": [{"id": "6f78aa8d-ec9b-4ac1-a163-6b805f64be63", "type": "Notebook",
+ "displayName": "fabcli000005", "description": "", "workspaceId": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46",
+ "folderId": "dbf46a01-e5c9-41b4-acf7-a1ca4c10aa26"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2306,15 +2331,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '207'
+ - '196'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:12:25 GMT
+ - Wed, 20 May 2026 09:18:52 GMT
Pragma:
- no-cache
RequestId:
- - e1afe1af-22d1-4583-acd2-4fefcec03505
+ - 44f7dbf8-3e6c-4af6-b98b-ef7bb0306b09
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2340,13 +2365,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "3de4c823-bd95-4344-8b80-730d299687e6", "displayName":
- "fabcli000004", "workspaceId": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb"}]}'
+ string: '{"value": [{"id": "dbf46a01-e5c9-41b4-acf7-a1ca4c10aa26", "displayName":
+ "fabcli000004", "workspaceId": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2355,15 +2380,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:12:25 GMT
+ - Wed, 20 May 2026 09:18:54 GMT
Pragma:
- no-cache
RequestId:
- - 7dca6909-5f4b-4947-a149-3a943e3f7022
+ - 287e9989-0642-4e3d-ad2f-f161c93d26b4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2391,9 +2416,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/items/f5f9567f-dab5-48ac-b7b3-4d23e55469ac
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/items/6f78aa8d-ec9b-4ac1-a163-6b805f64be63
response:
body:
string: ''
@@ -2409,11 +2434,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:12:26 GMT
+ - Wed, 20 May 2026 09:18:54 GMT
Pragma:
- no-cache
RequestId:
- - 1659cca0-a250-417b-8069-7b74cf243e5b
+ - ff3c5e8f-73c6-4d31-bd1d-48d58a058d94
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2439,16 +2464,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "bccf3171-5cbc-49a2-9686-70c37f7ad943", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2457,15 +2485,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2695'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:12:27 GMT
+ - Wed, 20 May 2026 09:18:56 GMT
Pragma:
- no-cache
RequestId:
- - af0f2f37-88db-4fc7-acf7-f2e6d1983937
+ - 1cb979b3-ca97-4257-a221-646767a6049d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2491,14 +2519,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/bccf3171-5cbc-49a2-9686-70c37f7ad943/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205/items
response:
body:
- string: '{"value": [{"id": "90581caf-4d27-4ee8-bed7-d9bc0bc9e41c", "type": "Notebook",
- "displayName": "fabcli000005", "workspaceId":
- "bccf3171-5cbc-49a2-9686-70c37f7ad943"}]}'
+ string: '{"value": [{"id": "3d051b19-871c-488f-99ec-8cf19063fbac", "type": "Notebook",
+ "displayName": "fabcli000005", "description": "", "workspaceId": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2507,15 +2534,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '177'
+ - '166'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:12:27 GMT
+ - Wed, 20 May 2026 09:18:56 GMT
Pragma:
- no-cache
RequestId:
- - 3e75d1b0-6fd0-4eaf-bd64-44d403eef9ef
+ - 2c74c40d-feb5-4f17-9b39-f116ff8f05ae
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2543,9 +2570,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/bccf3171-5cbc-49a2-9686-70c37f7ad943/items/90581caf-4d27-4ee8-bed7-d9bc0bc9e41c
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205/items/3d051b19-871c-488f-99ec-8cf19063fbac
response:
body:
string: ''
@@ -2561,11 +2588,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:12:29 GMT
+ - Wed, 20 May 2026 09:18:57 GMT
Pragma:
- no-cache
RequestId:
- - ac7d2e0a-bad6-4e8c-9ed9-6db808df06c2
+ - a46b3451-85c7-4dd1-a094-7bd4bcdf56d5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2591,16 +2618,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "bccf3171-5cbc-49a2-9686-70c37f7ad943", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2609,15 +2639,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2695'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:12:29 GMT
+ - Wed, 20 May 2026 09:18:58 GMT
Pragma:
- no-cache
RequestId:
- - 34a8e149-893e-4d18-aae2-1de6cc6cf64d
+ - 626b7447-55a8-465b-a108-4b7b0a21fa96
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2643,13 +2673,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "3de4c823-bd95-4344-8b80-730d299687e6", "displayName":
- "fabcli000004", "workspaceId": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb"}]}'
+ string: '{"value": [{"id": "dbf46a01-e5c9-41b4-acf7-a1ca4c10aa26", "displayName":
+ "fabcli000004", "workspaceId": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2658,15 +2688,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '145'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:12:30 GMT
+ - Wed, 20 May 2026 09:18:59 GMT
Pragma:
- no-cache
RequestId:
- - d510283d-c630-4b44-957a-41ed7faeb199
+ - 9e3558f0-2ae7-4d57-8d85-82dd58d17a1d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2694,9 +2724,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/folders/3de4c823-bd95-4344-8b80-730d299687e6
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/folders/dbf46a01-e5c9-41b4-acf7-a1ca4c10aa26
response:
body:
string: ''
@@ -2712,11 +2742,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:12:31 GMT
+ - Wed, 20 May 2026 09:19:00 GMT
Pragma:
- no-cache
RequestId:
- - 5a0266b4-8d7b-4d1c-b0a3-7af54dbe3f9c
+ - ca220b51-58f6-4364-bdcd-f49318a3d680
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2742,16 +2772,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "bccf3171-5cbc-49a2-9686-70c37f7ad943", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2760,15 +2793,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2695'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:12:31 GMT
+ - Wed, 20 May 2026 09:19:01 GMT
Pragma:
- no-cache
RequestId:
- - 20cee8df-7534-48a2-a8a4-56e1b44620fb
+ - 5439a43f-c6e3-466b-b609-3388fb282ced
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2794,13 +2827,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/bccf3171-5cbc-49a2-9686-70c37f7ad943/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "30f875b4-90d5-4616-ace6-587508a6ee5e", "displayName":
- "fabcli000003", "workspaceId": "bccf3171-5cbc-49a2-9686-70c37f7ad943"}]}'
+ string: '{"value": [{"id": "13be0a46-6e7a-425b-a31a-e2170d4525e8", "displayName":
+ "fabcli000003", "workspaceId": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2813,11 +2846,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:12:33 GMT
+ - Wed, 20 May 2026 09:19:02 GMT
Pragma:
- no-cache
RequestId:
- - 8f542a02-7d33-448b-9d0a-a6baf45d021a
+ - 287c4751-5246-4c13-b1d2-67550af0b819
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2845,9 +2878,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/bccf3171-5cbc-49a2-9686-70c37f7ad943/folders/30f875b4-90d5-4616-ace6-587508a6ee5e
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205/folders/13be0a46-6e7a-425b-a31a-e2170d4525e8
response:
body:
string: ''
@@ -2863,11 +2896,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:12:34 GMT
+ - Wed, 20 May 2026 09:19:03 GMT
Pragma:
- no-cache
RequestId:
- - 2c5c5d90-e005-4643-9240-c125db8756aa
+ - b05cd35f-4390-4fd3-9b78-f50e2d22c761
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2893,16 +2926,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "bccf3171-5cbc-49a2-9686-70c37f7ad943", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2911,15 +2947,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2880'
+ - '2695'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:12:34 GMT
+ - Wed, 20 May 2026 09:19:04 GMT
Pragma:
- no-cache
RequestId:
- - 3b13df5d-78c8-4c64-b46a-45fb335d1d4d
+ - 7d98cfa2-312f-4e5b-8b6d-4e4c96bef4b3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2945,9 +2981,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/bccf3171-5cbc-49a2-9686-70c37f7ad943/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205/items
response:
body:
string: '{"value": []}'
@@ -2963,11 +2999,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:12:34 GMT
+ - Wed, 20 May 2026 09:19:05 GMT
Pragma:
- no-cache
RequestId:
- - bea3a341-52c7-4728-a21e-4574fe356bf1
+ - 66dd1a6a-84ff-436c-8fe0-3a9978637386
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2995,9 +3031,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/bccf3171-5cbc-49a2-9686-70c37f7ad943
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205
response:
body:
string: ''
@@ -3013,11 +3049,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:12:36 GMT
+ - Wed, 20 May 2026 09:19:06 GMT
Pragma:
- no-cache
RequestId:
- - 107cdbf5-6372-4eb1-beae-7b3fc1ff5111
+ - 25418b53-ce18-4290-a8fa-eaee7dec6dfa
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3043,15 +3079,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3060,15 +3098,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2841'
+ - '2659'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:12:36 GMT
+ - Wed, 20 May 2026 09:19:07 GMT
Pragma:
- no-cache
RequestId:
- - 61997f27-1fb2-4c1e-a83c-ee0c66614348
+ - 4052a4e2-6f04-4325-b516-aac684e23f47
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3094,9 +3132,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/items
response:
body:
string: '{"value": []}'
@@ -3112,11 +3150,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 08:12:38 GMT
+ - Wed, 20 May 2026 09:19:07 GMT
Pragma:
- no-cache
RequestId:
- - fce3594e-931f-4321-93e8-9979e0adcf4e
+ - 459f9b93-5915-454e-8fb2-f510fee1e93a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3144,9 +3182,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46
response:
body:
string: ''
@@ -3162,11 +3200,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 08:12:38 GMT
+ - Wed, 20 May 2026 09:19:09 GMT
Pragma:
- no-cache
RequestId:
- - 94234a9e-07ad-497b-b5e5-6349f54851a4
+ - f98d2c0c-af8c-4345-8ccf-39a3a573caa0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[CosmosDBDatabase].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[CosmosDBDatabase].yaml
index d3cb68eeb..0c758f5dd 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[CosmosDBDatabase].yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[CosmosDBDatabase].yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:36:17 GMT
+ - Wed, 20 May 2026 08:53:17 GMT
Pragma:
- no-cache
RequestId:
- - d43576a7-7491-4cfc-a0a7-7a86b2daac52
+ - 2533d844-5123-4240-a9d5-ab4ce310dd87
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,14 +62,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -77,15 +79,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:36:18 GMT
+ - Wed, 20 May 2026 08:53:18 GMT
Pragma:
- no-cache
RequestId:
- - e7abf7c3-653d-4d93-96ca-e74a26b61644
+ - a955865a-1732-496c-bad0-2d276a268625
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -111,7 +113,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -127,15 +129,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '424'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:36:23 GMT
+ - Wed, 20 May 2026 08:53:23 GMT
Pragma:
- no-cache
RequestId:
- - 7d8d0768-0f3a-4939-ba4c-72c5963231fb
+ - 2d44f51f-e922-4a75-a4dd-2a4d1ade079f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -150,8 +152,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000001", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -160,16 +161,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "c906be27-0926-4ebf-a9e0-346d45059210", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "58983045-71a8-45e6-929c-0e2f5f5ea7f4", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -178,17 +180,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '167'
+ - '155'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:36:31 GMT
+ - Wed, 20 May 2026 08:53:31 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/c906be27-0926-4ebf-a9e0-346d45059210
+ - https://api.fabric.microsoft.com/v1/workspaces/58983045-71a8-45e6-929c-0e2f5f5ea7f4
Pragma:
- no-cache
RequestId:
- - 89b135ee-6746-4dc8-9ada-67b3ae8f3509
+ - b287de44-ac1b-4777-b9c0-7a7aec6f117f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -214,15 +216,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "c906be27-0926-4ebf-a9e0-346d45059210", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "58983045-71a8-45e6-929c-0e2f5f5ea7f4", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -231,15 +235,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2844'
+ - '2662'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:36:31 GMT
+ - Wed, 20 May 2026 08:53:32 GMT
Pragma:
- no-cache
RequestId:
- - db7751f6-2482-417e-99b0-e00965dfdd79
+ - 3ea2c983-3084-4e0e-b2e6-44ffd9136fa8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -265,15 +269,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "c906be27-0926-4ebf-a9e0-346d45059210", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "58983045-71a8-45e6-929c-0e2f5f5ea7f4", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -282,15 +288,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2844'
+ - '2662'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:36:32 GMT
+ - Wed, 20 May 2026 08:53:33 GMT
Pragma:
- no-cache
RequestId:
- - c5f7da5c-a6c6-4216-97a6-30f667779104
+ - 2440b0a7-87e2-4522-97e4-1afc6e0718ee
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -316,7 +322,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -332,15 +338,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '425'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:36:38 GMT
+ - Wed, 20 May 2026 08:53:37 GMT
Pragma:
- no-cache
RequestId:
- - 8b4175f3-a3c8-4905-84c5-217651b248b5
+ - c9dcd5e3-63e3-405b-8140-13f6ed610356
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -355,8 +361,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000002", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -365,16 +370,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "448844d6-a052-48e4-bb64-867c67fa2cd0", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "559f9834-34bf-4077-a22e-45e4577bef15", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -383,17 +389,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '165'
+ - '154'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:36:46 GMT
+ - Wed, 20 May 2026 08:53:46 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/448844d6-a052-48e4-bb64-867c67fa2cd0
+ - https://api.fabric.microsoft.com/v1/workspaces/559f9834-34bf-4077-a22e-45e4577bef15
Pragma:
- no-cache
RequestId:
- - d7e1576c-44d2-4818-a9c5-fde5e8e47cb0
+ - c2ac10ab-2dff-431b-90d0-c00cf12b5a9e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -419,16 +425,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "c906be27-0926-4ebf-a9e0-346d45059210", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "448844d6-a052-48e4-bb64-867c67fa2cd0", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "58983045-71a8-45e6-929c-0e2f5f5ea7f4", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "559f9834-34bf-4077-a22e-45e4577bef15", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -437,15 +446,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:36:47 GMT
+ - Wed, 20 May 2026 08:53:46 GMT
Pragma:
- no-cache
RequestId:
- - 9c38dd89-16ed-4ff1-8e6a-28f82ccfde96
+ - c935e44f-14e6-4385-a82c-1dc11e15344a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -471,9 +480,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/c906be27-0926-4ebf-a9e0-346d45059210/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/58983045-71a8-45e6-929c-0e2f5f5ea7f4/items
response:
body:
string: '{"value": []}'
@@ -489,11 +498,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:36:48 GMT
+ - Wed, 20 May 2026 08:53:48 GMT
Pragma:
- no-cache
RequestId:
- - db84bf9b-e1b9-40b4-a2b2-84b5ea8f80e5
+ - d6b4cb8d-6d5c-44dc-ac6f-e656c199734f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -519,9 +528,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/c906be27-0926-4ebf-a9e0-346d45059210/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/58983045-71a8-45e6-929c-0e2f5f5ea7f4/items
response:
body:
string: '{"value": []}'
@@ -537,11 +546,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:36:49 GMT
+ - Wed, 20 May 2026 08:53:48 GMT
Pragma:
- no-cache
RequestId:
- - eb0302c5-4f9f-4388-bf74-e9f279fb6953
+ - a186528a-f1b9-4047-945a-ff51e0a2362f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -556,8 +565,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000003", "type":
- "CosmosDBDatabase", "folderId": null}'
+ body: '{"displayName": "fabcli000003", "type": "CosmosDBDatabase", "folderId":
+ null}'
headers:
Accept:
- '*/*'
@@ -566,13 +575,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '114'
+ - '81'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/c906be27-0926-4ebf-a9e0-346d45059210/cosmosDbDatabases
+ uri: https://api.fabric.microsoft.com/v1/workspaces/58983045-71a8-45e6-929c-0e2f5f5ea7f4/cosmosDbDatabases
response:
body:
string: 'null'
@@ -588,15 +597,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:36:50 GMT
+ - Wed, 20 May 2026 08:53:50 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e5e4a434-24ae-43d0-838f-e2047e478d6f
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/45d5f6d0-46cd-47aa-b36e-2e9a9a0e9cea
Pragma:
- no-cache
RequestId:
- - 3e8b902c-edbe-43b3-b7ba-eebb0a273f55
+ - a3f37221-eef4-4f6c-8bc2-6fee0a7325b7
Retry-After:
- '20'
Strict-Transport-Security:
@@ -610,7 +619,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - e5e4a434-24ae-43d0-838f-e2047e478d6f
+ - 45d5f6d0-46cd-47aa-b36e-2e9a9a0e9cea
status:
code: 202
message: Accepted
@@ -626,13 +635,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e5e4a434-24ae-43d0-838f-e2047e478d6f
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/45d5f6d0-46cd-47aa-b36e-2e9a9a0e9cea
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:36:50.7827022",
- "lastUpdatedTimeUtc": "2026-02-06T07:36:59.9414087", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:53:50.1104192",
+ "lastUpdatedTimeUtc": "2026-05-20T08:53:59.6859878", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -646,13 +655,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:37:13 GMT
+ - Wed, 20 May 2026 08:54:11 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e5e4a434-24ae-43d0-838f-e2047e478d6f/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/45d5f6d0-46cd-47aa-b36e-2e9a9a0e9cea/result
Pragma:
- no-cache
RequestId:
- - 72081716-d7da-4ed9-9d8e-e7a6fd236324
+ - 65251bb8-531c-4974-9c2e-d11a7bee1e3b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -660,7 +669,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - e5e4a434-24ae-43d0-838f-e2047e478d6f
+ - 45d5f6d0-46cd-47aa-b36e-2e9a9a0e9cea
status:
code: 200
message: OK
@@ -676,14 +685,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e5e4a434-24ae-43d0-838f-e2047e478d6f/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/45d5f6d0-46cd-47aa-b36e-2e9a9a0e9cea/result
response:
body:
- string: '{"id": "51b6c549-4251-4b7a-a518-1a7c30fd800a", "type": "CosmosDBDatabase",
- "displayName": "fabcli000003", "workspaceId":
- "c906be27-0926-4ebf-a9e0-346d45059210"}'
+ string: '{"id": "77832fda-96d9-4af8-956d-dcb9b8fea912", "type": "CosmosDBDatabase",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "58983045-71a8-45e6-929c-0e2f5f5ea7f4"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -694,11 +702,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 07:37:14 GMT
+ - Wed, 20 May 2026 08:54:12 GMT
Pragma:
- no-cache
RequestId:
- - a507e9f2-15f7-4b09-933e-33ada7b275ea
+ - 827ecf0e-6d88-4c2a-8c4d-d5aa7bd17130
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -722,16 +730,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "c906be27-0926-4ebf-a9e0-346d45059210", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "448844d6-a052-48e4-bb64-867c67fa2cd0", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "58983045-71a8-45e6-929c-0e2f5f5ea7f4", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "559f9834-34bf-4077-a22e-45e4577bef15", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -740,15 +751,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:37:15 GMT
+ - Wed, 20 May 2026 08:54:12 GMT
Pragma:
- no-cache
RequestId:
- - c3644bd4-28bb-47e9-8ffe-86e6583258d8
+ - 080b6a86-a679-400e-bd43-29f8b5b07228
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -774,14 +785,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/c906be27-0926-4ebf-a9e0-346d45059210/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/58983045-71a8-45e6-929c-0e2f5f5ea7f4/items
response:
body:
- string: '{"value": [{"id": "51b6c549-4251-4b7a-a518-1a7c30fd800a", "type": "CosmosDBDatabase",
- "displayName": "fabcli000003", "workspaceId":
- "c906be27-0926-4ebf-a9e0-346d45059210"}]}'
+ string: '{"value": [{"id": "77832fda-96d9-4af8-956d-dcb9b8fea912", "type": "CosmosDBDatabase",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "58983045-71a8-45e6-929c-0e2f5f5ea7f4"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -790,15 +800,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '183'
+ - '173'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:37:16 GMT
+ - Wed, 20 May 2026 08:54:14 GMT
Pragma:
- no-cache
RequestId:
- - 149de387-f831-4089-bf85-7b801bf04b5e
+ - 0ee1c1d8-7d19-4619-9669-fca26a903c1d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -824,16 +834,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "c906be27-0926-4ebf-a9e0-346d45059210", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "448844d6-a052-48e4-bb64-867c67fa2cd0", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "58983045-71a8-45e6-929c-0e2f5f5ea7f4", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "559f9834-34bf-4077-a22e-45e4577bef15", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -842,15 +855,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:37:16 GMT
+ - Wed, 20 May 2026 08:54:15 GMT
Pragma:
- no-cache
RequestId:
- - d5c60d2d-2393-483e-b813-64005694bd77
+ - 9e190c6f-e6ed-45f7-a699-dfa206827fb0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -876,9 +889,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/448844d6-a052-48e4-bb64-867c67fa2cd0/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/559f9834-34bf-4077-a22e-45e4577bef15/items
response:
body:
string: '{"value": []}'
@@ -894,11 +907,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:37:17 GMT
+ - Wed, 20 May 2026 08:54:15 GMT
Pragma:
- no-cache
RequestId:
- - 07008301-ece5-4b9f-a905-68acd60cd443
+ - 56138fa0-c840-428e-b8d0-2fe0f2af34de
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -924,9 +937,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/448844d6-a052-48e4-bb64-867c67fa2cd0/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/559f9834-34bf-4077-a22e-45e4577bef15/items
response:
body:
string: '{"value": []}'
@@ -942,11 +955,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:37:18 GMT
+ - Wed, 20 May 2026 08:54:16 GMT
Pragma:
- no-cache
RequestId:
- - 0e26b9e7-da1a-46c6-aa29-b29b318cb946
+ - 868070d8-e01b-4766-be03-8201f7810ce0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -972,9 +985,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/448844d6-a052-48e4-bb64-867c67fa2cd0/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/559f9834-34bf-4077-a22e-45e4577bef15/items
response:
body:
string: '{"value": []}'
@@ -990,11 +1003,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:37:18 GMT
+ - Wed, 20 May 2026 08:54:16 GMT
Pragma:
- no-cache
RequestId:
- - 584ae2c1-5797-47c7-99a5-4aa006f64878
+ - a2a79cfe-31ac-40fb-b977-28162d07f191
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1020,14 +1033,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/c906be27-0926-4ebf-a9e0-346d45059210/items/51b6c549-4251-4b7a-a518-1a7c30fd800a
+ uri: https://api.fabric.microsoft.com/v1/workspaces/58983045-71a8-45e6-929c-0e2f5f5ea7f4/items/77832fda-96d9-4af8-956d-dcb9b8fea912
response:
body:
- string: '{"id": "51b6c549-4251-4b7a-a518-1a7c30fd800a", "type": "CosmosDBDatabase",
- "displayName": "fabcli000003", "workspaceId":
- "c906be27-0926-4ebf-a9e0-346d45059210"}'
+ string: '{"id": "77832fda-96d9-4af8-956d-dcb9b8fea912", "type": "CosmosDBDatabase",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "58983045-71a8-45e6-929c-0e2f5f5ea7f4"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1036,17 +1048,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '171'
+ - '162'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:37:19 GMT
+ - Wed, 20 May 2026 08:54:17 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 785f039f-40e0-4d48-be44-5154dedb974b
+ - 8d72de3e-09ea-4d52-99af-a77c2f448ad1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1074,9 +1086,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/c906be27-0926-4ebf-a9e0-346d45059210/items/51b6c549-4251-4b7a-a518-1a7c30fd800a/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/58983045-71a8-45e6-929c-0e2f5f5ea7f4/items/77832fda-96d9-4af8-956d-dcb9b8fea912/getDefinition
response:
body:
string: 'null'
@@ -1092,13 +1104,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:37:20 GMT
+ - Wed, 20 May 2026 08:54:19 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b8cc69c5-945a-411b-aaae-b8533a34c352
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f5f7d386-5750-4452-9fed-0920172b0290
Pragma:
- no-cache
RequestId:
- - 7e4c917c-cef9-4811-8e17-0df51acc5d43
+ - 40785a43-df10-4b36-bdc6-fd1e40052f7a
Retry-After:
- '20'
Strict-Transport-Security:
@@ -1112,7 +1124,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - b8cc69c5-945a-411b-aaae-b8533a34c352
+ - f5f7d386-5750-4452-9fed-0920172b0290
status:
code: 202
message: Accepted
@@ -1128,13 +1140,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b8cc69c5-945a-411b-aaae-b8533a34c352
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f5f7d386-5750-4452-9fed-0920172b0290
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:37:21.0750742",
- "lastUpdatedTimeUtc": "2026-02-06T07:37:21.7938337", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:54:19.6966854",
+ "lastUpdatedTimeUtc": "2026-05-20T08:54:20.652388", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -1144,17 +1156,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '130'
+ - '131'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:37:42 GMT
+ - Wed, 20 May 2026 08:54:39 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b8cc69c5-945a-411b-aaae-b8533a34c352/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f5f7d386-5750-4452-9fed-0920172b0290/result
Pragma:
- no-cache
RequestId:
- - 32c19385-29db-4592-9306-f8f0988a802a
+ - 5165eceb-fbab-43c9-8b36-7f5de8cd38f1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1162,7 +1174,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - b8cc69c5-945a-411b-aaae-b8533a34c352
+ - f5f7d386-5750-4452-9fed-0920172b0290
status:
code: 200
message: OK
@@ -1178,13 +1190,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b8cc69c5-945a-411b-aaae-b8533a34c352/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f5f7d386-5750-4452-9fed-0920172b0290/result
response:
body:
string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL0Nvc21vc0RCL2RlZmluaXRpb24vQ29zbW9zREIvMi4wLjAvc2NoZW1hLmpzb24iLAogICJjb250YWluZXJzIjogW10KfQ==",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkNvc21vc0RCRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMyIsCiAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkNvc21vc0RCRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMyIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
"payloadType": "InlineBase64"}]}}'
headers:
Access-Control-Expose-Headers:
@@ -1196,11 +1208,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 07:37:43 GMT
+ - Wed, 20 May 2026 08:54:41 GMT
Pragma:
- no-cache
RequestId:
- - af254726-ae87-4aae-a6ff-60f7a5513854
+ - 04be8e3d-3951-42eb-a92c-1ccce212eb1b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -1213,10 +1225,9 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "CosmosDBDatabase", "displayName":
- "fabcli000003", "definition": {"parts": [{"path": "definition.json", "payload":
- "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL0Nvc21vc0RCL2RlZmluaXRpb24vQ29zbW9zREIvMi4wLjAvc2NoZW1hLmpzb24iLAogICJjb250YWluZXJzIjogW10KfQ==",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkNvc21vc0RCRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMyIsCiAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
+ body: '{"type": "CosmosDBDatabase", "displayName": "fabcli000003", "definition":
+ {"parts": [{"path": "definition.json", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL0Nvc21vc0RCL2RlZmluaXRpb24vQ29zbW9zREIvMi4wLjAvc2NoZW1hLmpzb24iLAogICJjb250YWluZXJzIjogW10KfQ==",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkNvc21vc0RCRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMyIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
"payloadType": "InlineBase64"}]}, "folderId": null}'
headers:
Accept:
@@ -1226,13 +1237,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '941'
+ - '860'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/448844d6-a052-48e4-bb64-867c67fa2cd0/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/559f9834-34bf-4077-a22e-45e4577bef15/items
response:
body:
string: 'null'
@@ -1248,15 +1259,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:37:45 GMT
+ - Wed, 20 May 2026 08:54:44 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/088b2165-752d-4b35-80d4-31848f28bda5
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f211be95-48b6-408b-adfc-47942926ae55
Pragma:
- no-cache
RequestId:
- - 2103ce00-d2c9-4553-8967-7224846d421a
+ - c24491f5-736a-4950-88b1-6d5731e9445b
Retry-After:
- '20'
Strict-Transport-Security:
@@ -1270,7 +1281,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - 088b2165-752d-4b35-80d4-31848f28bda5
+ - f211be95-48b6-408b-adfc-47942926ae55
status:
code: 202
message: Accepted
@@ -1286,13 +1297,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/088b2165-752d-4b35-80d4-31848f28bda5
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f211be95-48b6-408b-adfc-47942926ae55
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:37:45.0335495",
- "lastUpdatedTimeUtc": "2026-02-06T07:38:04.9271723", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:54:42.9541652",
+ "lastUpdatedTimeUtc": "2026-05-20T08:55:03.3531451", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -1306,13 +1317,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:38:07 GMT
+ - Wed, 20 May 2026 08:55:05 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/088b2165-752d-4b35-80d4-31848f28bda5/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f211be95-48b6-408b-adfc-47942926ae55/result
Pragma:
- no-cache
RequestId:
- - 736701aa-18a8-406a-a07b-4cb6f37f84f6
+ - 6b02e4b7-2530-478a-a3b8-a0545ca2299a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1320,7 +1331,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - 088b2165-752d-4b35-80d4-31848f28bda5
+ - f211be95-48b6-408b-adfc-47942926ae55
status:
code: 200
message: OK
@@ -1336,14 +1347,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/088b2165-752d-4b35-80d4-31848f28bda5/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f211be95-48b6-408b-adfc-47942926ae55/result
response:
body:
- string: '{"id": "bd7b7b87-b5e2-41d3-a9f7-a977f2247978", "type": "CosmosDBDatabase",
- "displayName": "fabcli000003", "workspaceId":
- "448844d6-a052-48e4-bb64-867c67fa2cd0"}'
+ string: '{"id": "5e042659-6b28-46d9-9b9d-9a45e2b3c427", "type": "CosmosDBDatabase",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "559f9834-34bf-4077-a22e-45e4577bef15"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1354,11 +1364,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 07:38:08 GMT
+ - Wed, 20 May 2026 08:55:05 GMT
Pragma:
- no-cache
RequestId:
- - b1db9e2d-f96e-40f4-800a-aba096196c96
+ - cc65db3a-b7db-46b1-a750-870306a575bb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -1382,16 +1392,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "c906be27-0926-4ebf-a9e0-346d45059210", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "448844d6-a052-48e4-bb64-867c67fa2cd0", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "58983045-71a8-45e6-929c-0e2f5f5ea7f4", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "559f9834-34bf-4077-a22e-45e4577bef15", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1400,15 +1413,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:38:09 GMT
+ - Wed, 20 May 2026 08:55:06 GMT
Pragma:
- no-cache
RequestId:
- - 9e083812-3024-4fb7-b8a8-7777103d6580
+ - e1a968e7-502d-4f76-905b-f8a7233f00f8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1434,16 +1447,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/c906be27-0926-4ebf-a9e0-346d45059210/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/58983045-71a8-45e6-929c-0e2f5f5ea7f4/items
response:
body:
- string: '{"value": [{"id": "b246ac32-5133-45cf-8360-c3eaf0aa7b5c", "type": "SQLEndpoint",
- "displayName": "fabcli000003", "description": "", "workspaceId": "c906be27-0926-4ebf-a9e0-346d45059210"},
- {"id": "51b6c549-4251-4b7a-a518-1a7c30fd800a", "type": "CosmosDBDatabase",
- "displayName": "fabcli000003", "workspaceId":
- "c906be27-0926-4ebf-a9e0-346d45059210"}]}'
+ string: '{"value": [{"id": "42801e61-c092-4ec6-8add-660427108a10", "type": "SQLEndpoint",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "58983045-71a8-45e6-929c-0e2f5f5ea7f4"},
+ {"id": "77832fda-96d9-4af8-956d-dcb9b8fea912", "type": "CosmosDBDatabase",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "58983045-71a8-45e6-929c-0e2f5f5ea7f4"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1452,63 +1464,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '232'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:38:10 GMT
- Pragma:
- - no-cache
- RequestId:
- - d591e5a6-7732-476e-ab22-a7311c9be269
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - deny
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/c906be27-0926-4ebf-a9e0-346d45059210/folders?recursive=True
- response:
- body:
- string: '{"value": []}'
- headers:
- Access-Control-Expose-Headers:
- - RequestId
- Cache-Control:
- - no-store, must-revalidate, no-cache
- Content-Encoding:
- - gzip
- Content-Length:
- - '32'
+ - '220'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:38:10 GMT
+ - Wed, 20 May 2026 08:55:07 GMT
Pragma:
- no-cache
RequestId:
- - db07b778-a3f2-45a2-aaa1-59d2c16eaeeb
+ - 0a0a3faa-48c1-4c8a-80f2-27714a99a73b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1534,16 +1498,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "c906be27-0926-4ebf-a9e0-346d45059210", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "448844d6-a052-48e4-bb64-867c67fa2cd0", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "58983045-71a8-45e6-929c-0e2f5f5ea7f4", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "559f9834-34bf-4077-a22e-45e4577bef15", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1552,15 +1519,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:38:11 GMT
+ - Wed, 20 May 2026 08:55:08 GMT
Pragma:
- no-cache
RequestId:
- - da175b1a-e0ed-43a1-873a-7830b1f9ff02
+ - 5e8a79db-b63d-4a71-a535-881b946cea32
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1586,14 +1553,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/448844d6-a052-48e4-bb64-867c67fa2cd0/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/559f9834-34bf-4077-a22e-45e4577bef15/items
response:
body:
- string: '{"value": [{"id": "bd7b7b87-b5e2-41d3-a9f7-a977f2247978", "type": "CosmosDBDatabase",
- "displayName": "fabcli000003", "workspaceId":
- "448844d6-a052-48e4-bb64-867c67fa2cd0"}]}'
+ string: '{"value": [{"id": "5e042659-6b28-46d9-9b9d-9a45e2b3c427", "type": "CosmosDBDatabase",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "559f9834-34bf-4077-a22e-45e4577bef15"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1602,63 +1568,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '183'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:38:13 GMT
- Pragma:
- - no-cache
- RequestId:
- - 0f316779-11b8-487e-ad33-ca6c2d1f7f66
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - deny
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/448844d6-a052-48e4-bb64-867c67fa2cd0/folders?recursive=True
- response:
- body:
- string: '{"value": []}'
- headers:
- Access-Control-Expose-Headers:
- - RequestId
- Cache-Control:
- - no-store, must-revalidate, no-cache
- Content-Encoding:
- - gzip
- Content-Length:
- - '32'
+ - '174'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:38:14 GMT
+ - Wed, 20 May 2026 08:55:09 GMT
Pragma:
- no-cache
RequestId:
- - 7c884753-ffe4-42d4-b2ad-740bfdcabd28
+ - e45043fa-cb3d-4aa1-9eb9-753466bf35c9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1684,16 +1602,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "c906be27-0926-4ebf-a9e0-346d45059210", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "448844d6-a052-48e4-bb64-867c67fa2cd0", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "58983045-71a8-45e6-929c-0e2f5f5ea7f4", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "559f9834-34bf-4077-a22e-45e4577bef15", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1702,15 +1623,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:38:14 GMT
+ - Wed, 20 May 2026 08:55:09 GMT
Pragma:
- no-cache
RequestId:
- - 6a2a19be-7e03-434c-8618-2988e683efd4
+ - 83fe70cc-bc77-4cd1-8278-d9da38527045
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1736,16 +1657,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/c906be27-0926-4ebf-a9e0-346d45059210/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/58983045-71a8-45e6-929c-0e2f5f5ea7f4/items
response:
body:
- string: '{"value": [{"id": "b246ac32-5133-45cf-8360-c3eaf0aa7b5c", "type": "SQLEndpoint",
- "displayName": "fabcli000003", "description": "", "workspaceId": "c906be27-0926-4ebf-a9e0-346d45059210"},
- {"id": "51b6c549-4251-4b7a-a518-1a7c30fd800a", "type": "CosmosDBDatabase",
- "displayName": "fabcli000003", "workspaceId":
- "c906be27-0926-4ebf-a9e0-346d45059210"}]}'
+ string: '{"value": [{"id": "42801e61-c092-4ec6-8add-660427108a10", "type": "SQLEndpoint",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "58983045-71a8-45e6-929c-0e2f5f5ea7f4"},
+ {"id": "77832fda-96d9-4af8-956d-dcb9b8fea912", "type": "CosmosDBDatabase",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "58983045-71a8-45e6-929c-0e2f5f5ea7f4"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1754,15 +1674,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '232'
+ - '220'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:38:15 GMT
+ - Wed, 20 May 2026 08:55:10 GMT
Pragma:
- no-cache
RequestId:
- - 6f83c375-c8b9-413a-b37b-b26a1fd00283
+ - 594ca7f6-8220-4a03-b9a3-b7229bbc77be
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1790,9 +1710,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/c906be27-0926-4ebf-a9e0-346d45059210/items/51b6c549-4251-4b7a-a518-1a7c30fd800a
+ uri: https://api.fabric.microsoft.com/v1/workspaces/58983045-71a8-45e6-929c-0e2f5f5ea7f4/items/77832fda-96d9-4af8-956d-dcb9b8fea912
response:
body:
string: ''
@@ -1808,11 +1728,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:38:15 GMT
+ - Wed, 20 May 2026 08:55:12 GMT
Pragma:
- no-cache
RequestId:
- - e7cc3cdf-c55d-46bc-87fc-cbd009b4f617
+ - 86e33096-a54a-4251-8a1f-a334b9b554b8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1838,16 +1758,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "c906be27-0926-4ebf-a9e0-346d45059210", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "448844d6-a052-48e4-bb64-867c67fa2cd0", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "58983045-71a8-45e6-929c-0e2f5f5ea7f4", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "559f9834-34bf-4077-a22e-45e4577bef15", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1856,15 +1779,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:38:17 GMT
+ - Wed, 20 May 2026 08:55:12 GMT
Pragma:
- no-cache
RequestId:
- - 38f06b31-d3bb-4432-ac31-33ef6ffe6b66
+ - d8470eab-6be2-40b0-bc0c-13357b1d58a7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1890,9 +1813,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/c906be27-0926-4ebf-a9e0-346d45059210/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/58983045-71a8-45e6-929c-0e2f5f5ea7f4/items
response:
body:
string: '{"value": []}'
@@ -1908,11 +1831,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:38:18 GMT
+ - Wed, 20 May 2026 08:55:14 GMT
Pragma:
- no-cache
RequestId:
- - b619a721-c87f-47d0-86a2-f18083518686
+ - fbb846e7-9553-4d50-8ed1-b38fcfe812f9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1940,9 +1863,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/c906be27-0926-4ebf-a9e0-346d45059210
+ uri: https://api.fabric.microsoft.com/v1/workspaces/58983045-71a8-45e6-929c-0e2f5f5ea7f4
response:
body:
string: ''
@@ -1958,11 +1881,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:38:18 GMT
+ - Wed, 20 May 2026 08:55:14 GMT
Pragma:
- no-cache
RequestId:
- - 600900e1-24d6-4201-8abc-15fba74aa9e4
+ - 10026bd3-b266-4b54-a947-95b647e5cc79
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1988,15 +1911,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "448844d6-a052-48e4-bb64-867c67fa2cd0", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "559f9834-34bf-4077-a22e-45e4577bef15", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2005,15 +1930,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2842'
+ - '2659'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:38:19 GMT
+ - Wed, 20 May 2026 08:55:16 GMT
Pragma:
- no-cache
RequestId:
- - a7a61ca0-7bf1-4579-85c2-c1f71709f962
+ - 908802c5-11b2-49cf-b852-85bc43cb1167
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2039,16 +1964,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/448844d6-a052-48e4-bb64-867c67fa2cd0/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/559f9834-34bf-4077-a22e-45e4577bef15/items
response:
body:
- string: '{"value": [{"id": "3f4959e1-e778-45a5-89e5-26c1c50eb631", "type": "SQLEndpoint",
- "displayName": "fabcli000003", "description": "", "workspaceId": "448844d6-a052-48e4-bb64-867c67fa2cd0"},
- {"id": "bd7b7b87-b5e2-41d3-a9f7-a977f2247978", "type": "CosmosDBDatabase",
- "displayName": "fabcli000003", "workspaceId":
- "448844d6-a052-48e4-bb64-867c67fa2cd0"}]}'
+ string: '{"value": [{"id": "9c344f5b-4790-4d0f-a95c-de4aee03780f", "type": "SQLEndpoint",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "559f9834-34bf-4077-a22e-45e4577bef15"},
+ {"id": "5e042659-6b28-46d9-9b9d-9a45e2b3c427", "type": "CosmosDBDatabase",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "559f9834-34bf-4077-a22e-45e4577bef15"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2057,15 +1981,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '234'
+ - '219'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:38:20 GMT
+ - Wed, 20 May 2026 08:55:17 GMT
Pragma:
- no-cache
RequestId:
- - 611dc7eb-2be1-45c2-b57e-09b9a605e213
+ - 92baecb7-c88b-41c5-8846-3c3c355f20fe
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2093,9 +2017,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/448844d6-a052-48e4-bb64-867c67fa2cd0
+ uri: https://api.fabric.microsoft.com/v1/workspaces/559f9834-34bf-4077-a22e-45e4577bef15
response:
body:
string: ''
@@ -2111,11 +2035,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:38:21 GMT
+ - Wed, 20 May 2026 08:55:17 GMT
Pragma:
- no-cache
RequestId:
- - 09a64a1d-1f95-4bb5-a796-86a57579d01a
+ - 22033bff-eb56-41aa-8b56-273f95857f29
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[DataPipeline].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[DataPipeline].yaml
index 107c6133e..1cabcf27b 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[DataPipeline].yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[DataPipeline].yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:28:38 GMT
+ - Wed, 20 May 2026 08:45:44 GMT
Pragma:
- no-cache
RequestId:
- - dc96f787-4ba6-4337-be0c-2e7717e97992
+ - 4cc26c1d-fdab-4aea-afc8-0b33bb3fdb54
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,14 +62,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -77,15 +79,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:28:38 GMT
+ - Wed, 20 May 2026 08:45:44 GMT
Pragma:
- no-cache
RequestId:
- - 129300f5-6102-4f22-9ae4-4cd396a4d837
+ - 51c05600-74e5-49e6-8627-603c34d2c903
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -111,7 +113,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -127,15 +129,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '425'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:28:44 GMT
+ - Wed, 20 May 2026 08:45:52 GMT
Pragma:
- no-cache
RequestId:
- - 032328f1-4237-4ac7-bcfe-2ea4ba87b390
+ - 84a6d9fd-5752-4fb3-b02d-3534b7e6ad67
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -150,8 +152,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000001", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -160,16 +161,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "e3da2f0d-4eac-4b83-8491-b595f9ab3695", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "59668c5f-5395-491e-b9ec-ddd5aa77837c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -178,17 +180,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '154'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:28:51 GMT
+ - Wed, 20 May 2026 08:45:58 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/e3da2f0d-4eac-4b83-8491-b595f9ab3695
+ - https://api.fabric.microsoft.com/v1/workspaces/59668c5f-5395-491e-b9ec-ddd5aa77837c
Pragma:
- no-cache
RequestId:
- - 334798d7-bfe4-4b54-9aaf-cfa98854eb68
+ - c298fe3e-f430-4e09-a48f-c16efef418b4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -214,15 +216,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e3da2f0d-4eac-4b83-8491-b595f9ab3695", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "59668c5f-5395-491e-b9ec-ddd5aa77837c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -231,15 +235,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2840'
+ - '2658'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:28:52 GMT
+ - Wed, 20 May 2026 08:46:00 GMT
Pragma:
- no-cache
RequestId:
- - 8c94a809-3e4b-45e4-97cf-e509bcf2e845
+ - b6cce42e-ad0a-40d2-be65-609fc08dabb7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -265,15 +269,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e3da2f0d-4eac-4b83-8491-b595f9ab3695", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "59668c5f-5395-491e-b9ec-ddd5aa77837c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -282,15 +288,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2840'
+ - '2658'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:28:53 GMT
+ - Wed, 20 May 2026 08:46:00 GMT
Pragma:
- no-cache
RequestId:
- - 91831c8f-4b07-4a6d-80c4-c736ac5bdee2
+ - 509fc127-f7f9-4d3b-8bd3-9d9d48a172c7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -316,7 +322,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -332,15 +338,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '424'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:28:58 GMT
+ - Wed, 20 May 2026 08:46:03 GMT
Pragma:
- no-cache
RequestId:
- - 273eda3c-5f7b-4d79-990c-16e3e258eeda
+ - 4365c9ee-a5fa-4a5c-a27e-1e6bf90dfa63
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -355,8 +361,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000002", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -365,16 +370,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "b250880c-1c62-442c-9480-8f836a8d2bc2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "6c925fdc-4687-4664-b9de-4e8f40be195a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -383,17 +389,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '165'
+ - '154'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:29:05 GMT
+ - Wed, 20 May 2026 08:46:09 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/b250880c-1c62-442c-9480-8f836a8d2bc2
+ - https://api.fabric.microsoft.com/v1/workspaces/6c925fdc-4687-4664-b9de-4e8f40be195a
Pragma:
- no-cache
RequestId:
- - 89777ff2-80e5-4b47-a339-7cefa1a41a33
+ - c7fd2c67-131b-4973-a603-ab2fb9167014
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -419,16 +425,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e3da2f0d-4eac-4b83-8491-b595f9ab3695", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b250880c-1c62-442c-9480-8f836a8d2bc2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "59668c5f-5395-491e-b9ec-ddd5aa77837c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "6c925fdc-4687-4664-b9de-4e8f40be195a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -437,15 +446,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:29:06 GMT
+ - Wed, 20 May 2026 08:46:10 GMT
Pragma:
- no-cache
RequestId:
- - df3f0ce6-134d-43b9-813d-629f563899a7
+ - 01edb522-fbae-4310-9fb5-c0a6eaf2720f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -471,9 +480,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e3da2f0d-4eac-4b83-8491-b595f9ab3695/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/59668c5f-5395-491e-b9ec-ddd5aa77837c/items
response:
body:
string: '{"value": []}'
@@ -489,11 +498,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:29:07 GMT
+ - Wed, 20 May 2026 08:46:12 GMT
Pragma:
- no-cache
RequestId:
- - 8732ef86-2921-43ab-9c72-d8c559b9427f
+ - de993058-fc88-4b17-a9f0-bf5e6d023600
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -519,9 +528,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e3da2f0d-4eac-4b83-8491-b595f9ab3695/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/59668c5f-5395-491e-b9ec-ddd5aa77837c/items
response:
body:
string: '{"value": []}'
@@ -537,11 +546,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:29:08 GMT
+ - Wed, 20 May 2026 08:46:12 GMT
Pragma:
- no-cache
RequestId:
- - 95f1a818-b3e7-48b4-b249-e219f7650d97
+ - 6b605495-112f-4d8e-9163-63628305c3a1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -556,8 +565,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000003", "type":
- "DataPipeline", "folderId": null}'
+ body: '{"displayName": "fabcli000003", "type": "DataPipeline", "folderId": null}'
headers:
Accept:
- '*/*'
@@ -566,18 +574,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '110'
+ - '77'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/e3da2f0d-4eac-4b83-8491-b595f9ab3695/dataPipelines
+ uri: https://api.fabric.microsoft.com/v1/workspaces/59668c5f-5395-491e-b9ec-ddd5aa77837c/dataPipelines
response:
body:
- string: '{"id": "6a80e97c-e5a2-42f8-8c4d-6bd54f22cbf3", "type": "DataPipeline",
- "displayName": "fabcli000003", "workspaceId":
- "e3da2f0d-4eac-4b83-8491-b595f9ab3695"}'
+ string: '{"id": "351637d2-66b0-4e7c-8b18-24bfc1f72197", "type": "DataPipeline",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "59668c5f-5395-491e-b9ec-ddd5aa77837c"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -586,17 +593,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '170'
+ - '160'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:29:14 GMT
+ - Wed, 20 May 2026 08:46:17 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 4b5e3d2b-68f3-42a6-8b0e-60b95a5629c2
+ - e8f1afc5-a543-4d9b-a639-a3cd84522688
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -622,16 +629,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e3da2f0d-4eac-4b83-8491-b595f9ab3695", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b250880c-1c62-442c-9480-8f836a8d2bc2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "59668c5f-5395-491e-b9ec-ddd5aa77837c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "6c925fdc-4687-4664-b9de-4e8f40be195a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -640,15 +650,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:29:15 GMT
+ - Wed, 20 May 2026 08:46:18 GMT
Pragma:
- no-cache
RequestId:
- - ddc5f1ef-643d-40ff-83f2-95b873f42d90
+ - 92b5879d-4c15-4a99-9e14-0a65b4456904
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -674,14 +684,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e3da2f0d-4eac-4b83-8491-b595f9ab3695/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/59668c5f-5395-491e-b9ec-ddd5aa77837c/items
response:
body:
- string: '{"value": [{"id": "6a80e97c-e5a2-42f8-8c4d-6bd54f22cbf3", "type": "DataPipeline",
- "displayName": "fabcli000003", "workspaceId":
- "e3da2f0d-4eac-4b83-8491-b595f9ab3695"}]}'
+ string: '{"value": [{"id": "351637d2-66b0-4e7c-8b18-24bfc1f72197", "type": "DataPipeline",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "59668c5f-5395-491e-b9ec-ddd5aa77837c"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -690,15 +699,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '180'
+ - '169'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:29:15 GMT
+ - Wed, 20 May 2026 08:46:19 GMT
Pragma:
- no-cache
RequestId:
- - 7a33079c-d93c-4195-b075-fed77ca580ad
+ - c07e55b1-59a6-48ab-b4e6-23a43d6523d3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -724,16 +733,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e3da2f0d-4eac-4b83-8491-b595f9ab3695", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b250880c-1c62-442c-9480-8f836a8d2bc2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "59668c5f-5395-491e-b9ec-ddd5aa77837c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "6c925fdc-4687-4664-b9de-4e8f40be195a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -742,15 +754,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:29:16 GMT
+ - Wed, 20 May 2026 08:46:20 GMT
Pragma:
- no-cache
RequestId:
- - 5f00351c-267d-4ae7-b794-8e71696dc4ed
+ - 337670ad-f2cf-43b9-a5d0-2545249e293f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -776,9 +788,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b250880c-1c62-442c-9480-8f836a8d2bc2/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6c925fdc-4687-4664-b9de-4e8f40be195a/items
response:
body:
string: '{"value": []}'
@@ -794,11 +806,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:29:17 GMT
+ - Wed, 20 May 2026 08:46:21 GMT
Pragma:
- no-cache
RequestId:
- - 53cc469a-6d2e-49d0-bf3e-ab5e870f8ff3
+ - b1d5b268-8266-4f51-a9ff-f0cd2bf3b952
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -824,9 +836,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b250880c-1c62-442c-9480-8f836a8d2bc2/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6c925fdc-4687-4664-b9de-4e8f40be195a/items
response:
body:
string: '{"value": []}'
@@ -842,11 +854,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:29:17 GMT
+ - Wed, 20 May 2026 08:46:22 GMT
Pragma:
- no-cache
RequestId:
- - 2fc2cfa4-d4b2-4337-b342-c50ca14383a2
+ - 44d3805f-a770-409a-80f9-af3b4be71b35
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -872,9 +884,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b250880c-1c62-442c-9480-8f836a8d2bc2/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6c925fdc-4687-4664-b9de-4e8f40be195a/items
response:
body:
string: '{"value": []}'
@@ -890,11 +902,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:29:18 GMT
+ - Wed, 20 May 2026 08:46:23 GMT
Pragma:
- no-cache
RequestId:
- - 8c4073ce-2050-4db7-ba74-384a91ca164b
+ - 18945b2b-24aa-4d30-b1e9-13244e417540
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -920,14 +932,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e3da2f0d-4eac-4b83-8491-b595f9ab3695/items/6a80e97c-e5a2-42f8-8c4d-6bd54f22cbf3
+ uri: https://api.fabric.microsoft.com/v1/workspaces/59668c5f-5395-491e-b9ec-ddd5aa77837c/items/351637d2-66b0-4e7c-8b18-24bfc1f72197
response:
body:
- string: '{"id": "6a80e97c-e5a2-42f8-8c4d-6bd54f22cbf3", "type": "DataPipeline",
- "displayName": "fabcli000003", "workspaceId":
- "e3da2f0d-4eac-4b83-8491-b595f9ab3695"}'
+ string: '{"id": "351637d2-66b0-4e7c-8b18-24bfc1f72197", "type": "DataPipeline",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "59668c5f-5395-491e-b9ec-ddd5aa77837c"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -936,17 +947,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '170'
+ - '160'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:29:19 GMT
+ - Wed, 20 May 2026 08:46:24 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 980bc57d-1057-4e0b-8ecf-da6f428fbbe5
+ - 8d2e812b-bf34-4d14-96be-f71aca6b38a0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -974,14 +985,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/e3da2f0d-4eac-4b83-8491-b595f9ab3695/items/6a80e97c-e5a2-42f8-8c4d-6bd54f22cbf3/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/59668c5f-5395-491e-b9ec-ddd5aa77837c/items/351637d2-66b0-4e7c-8b18-24bfc1f72197/getDefinition
response:
body:
string: '{"definition": {"parts": [{"path": "pipeline-content.json", "payload":
"ewogICJwcm9wZXJ0aWVzIjogewogICAgImFjdGl2aXRpZXMiOiBbXQogIH0KfQ==", "payloadType":
- "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
+ "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
"payloadType": "InlineBase64"}]}}'
headers:
Access-Control-Expose-Headers:
@@ -991,15 +1002,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '457'
+ - '441'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:29:19 GMT
+ - Wed, 20 May 2026 08:46:25 GMT
Pragma:
- no-cache
RequestId:
- - f760ae55-e1a9-4c1c-a2c9-1a56a300ec87
+ - 53182ab0-70ec-4245-85c3-bd3c1392234f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1014,10 +1025,9 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "DataPipeline", "displayName":
- "fabcli000003", "definition": {"parts": [{"path": "pipeline-content.json", "payload":
- "ewogICJwcm9wZXJ0aWVzIjogewogICAgImFjdGl2aXRpZXMiOiBbXQogIH0KfQ==", "payloadType":
- "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
+ body: '{"type": "DataPipeline", "displayName": "fabcli000003", "definition": {"parts":
+ [{"path": "pipeline-content.json", "payload": "ewogICJwcm9wZXJ0aWVzIjogewogICAgImFjdGl2aXRpZXMiOiBbXQogIH0KfQ==",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
"payloadType": "InlineBase64"}]}, "folderId": null}'
headers:
Accept:
@@ -1027,18 +1037,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '811'
+ - '726'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/b250880c-1c62-442c-9480-8f836a8d2bc2/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6c925fdc-4687-4664-b9de-4e8f40be195a/items
response:
body:
- string: '{"id": "b0b3a956-23c9-4117-8a94-ed73934bd098", "type": "DataPipeline",
- "displayName": "fabcli000003", "workspaceId":
- "b250880c-1c62-442c-9480-8f836a8d2bc2"}'
+ string: '{"id": "b50c58ed-2826-4fbf-872a-75edde32d2e4", "type": "DataPipeline",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "6c925fdc-4687-4664-b9de-4e8f40be195a"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1047,17 +1056,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '170'
+ - '159'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:29:25 GMT
+ - Wed, 20 May 2026 08:46:32 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - d539f675-e406-4282-a48b-7e1b95949389
+ - bb4562fa-56db-4d2c-8d97-d22a6d3cf178
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1083,16 +1092,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e3da2f0d-4eac-4b83-8491-b595f9ab3695", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b250880c-1c62-442c-9480-8f836a8d2bc2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "59668c5f-5395-491e-b9ec-ddd5aa77837c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "6c925fdc-4687-4664-b9de-4e8f40be195a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1101,15 +1113,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:29:25 GMT
+ - Wed, 20 May 2026 08:46:33 GMT
Pragma:
- no-cache
RequestId:
- - a2296e80-abc5-4755-b0aa-8ca0bb322506
+ - 6dbba4a1-c21e-4284-becd-1717a94b2ed7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1135,14 +1147,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e3da2f0d-4eac-4b83-8491-b595f9ab3695/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/59668c5f-5395-491e-b9ec-ddd5aa77837c/items
response:
body:
- string: '{"value": [{"id": "6a80e97c-e5a2-42f8-8c4d-6bd54f22cbf3", "type": "DataPipeline",
- "displayName": "fabcli000003", "workspaceId":
- "e3da2f0d-4eac-4b83-8491-b595f9ab3695"}]}'
+ string: '{"value": [{"id": "351637d2-66b0-4e7c-8b18-24bfc1f72197", "type": "DataPipeline",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "59668c5f-5395-491e-b9ec-ddd5aa77837c"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1151,63 +1162,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '180'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:29:26 GMT
- Pragma:
- - no-cache
- RequestId:
- - 559a7772-cc90-44f6-a960-e4b3a4d7dee1
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - deny
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e3da2f0d-4eac-4b83-8491-b595f9ab3695/folders?recursive=True
- response:
- body:
- string: '{"value": []}'
- headers:
- Access-Control-Expose-Headers:
- - RequestId
- Cache-Control:
- - no-store, must-revalidate, no-cache
- Content-Encoding:
- - gzip
- Content-Length:
- - '32'
+ - '169'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:29:27 GMT
+ - Wed, 20 May 2026 08:46:33 GMT
Pragma:
- no-cache
RequestId:
- - 02ecaa3a-fb46-4bf6-85ba-cc7e59940766
+ - 26fd7acc-6bcc-46ba-8b30-9de99ab3c57e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1233,16 +1196,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e3da2f0d-4eac-4b83-8491-b595f9ab3695", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b250880c-1c62-442c-9480-8f836a8d2bc2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "59668c5f-5395-491e-b9ec-ddd5aa77837c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "6c925fdc-4687-4664-b9de-4e8f40be195a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1251,15 +1217,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:29:28 GMT
+ - Wed, 20 May 2026 08:46:34 GMT
Pragma:
- no-cache
RequestId:
- - 9f988a7d-edbe-48db-9db3-7882e99e7de6
+ - 5aa568b6-67bc-4970-9e6a-6590047f216b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1285,14 +1251,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b250880c-1c62-442c-9480-8f836a8d2bc2/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6c925fdc-4687-4664-b9de-4e8f40be195a/items
response:
body:
- string: '{"value": [{"id": "b0b3a956-23c9-4117-8a94-ed73934bd098", "type": "DataPipeline",
- "displayName": "fabcli000003", "workspaceId":
- "b250880c-1c62-442c-9480-8f836a8d2bc2"}]}'
+ string: '{"value": [{"id": "b50c58ed-2826-4fbf-872a-75edde32d2e4", "type": "DataPipeline",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "6c925fdc-4687-4664-b9de-4e8f40be195a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1301,63 +1266,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '181'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:29:29 GMT
- Pragma:
- - no-cache
- RequestId:
- - 8a40973a-61d1-4954-ae7c-8ccf9865a884
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - deny
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b250880c-1c62-442c-9480-8f836a8d2bc2/folders?recursive=True
- response:
- body:
- string: '{"value": []}'
- headers:
- Access-Control-Expose-Headers:
- - RequestId
- Cache-Control:
- - no-store, must-revalidate, no-cache
- Content-Encoding:
- - gzip
- Content-Length:
- - '32'
+ - '170'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:29:29 GMT
+ - Wed, 20 May 2026 08:46:34 GMT
Pragma:
- no-cache
RequestId:
- - e64a43a9-0380-48f1-84d9-be6f34da4f74
+ - 55ae0ffc-8462-474c-b4f8-dead29bdb5ad
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1383,16 +1300,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e3da2f0d-4eac-4b83-8491-b595f9ab3695", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b250880c-1c62-442c-9480-8f836a8d2bc2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "59668c5f-5395-491e-b9ec-ddd5aa77837c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "6c925fdc-4687-4664-b9de-4e8f40be195a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1401,15 +1321,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:29:30 GMT
+ - Wed, 20 May 2026 08:46:36 GMT
Pragma:
- no-cache
RequestId:
- - c40f91ae-eee2-4e6c-bb42-ec215a226abd
+ - 5818f417-6fc9-4ad1-a7bc-92e373015d0d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1435,14 +1355,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e3da2f0d-4eac-4b83-8491-b595f9ab3695/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/59668c5f-5395-491e-b9ec-ddd5aa77837c/items
response:
body:
- string: '{"value": [{"id": "6a80e97c-e5a2-42f8-8c4d-6bd54f22cbf3", "type": "DataPipeline",
- "displayName": "fabcli000003", "workspaceId":
- "e3da2f0d-4eac-4b83-8491-b595f9ab3695"}]}'
+ string: '{"value": [{"id": "351637d2-66b0-4e7c-8b18-24bfc1f72197", "type": "DataPipeline",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "59668c5f-5395-491e-b9ec-ddd5aa77837c"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1451,15 +1370,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '180'
+ - '169'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:29:30 GMT
+ - Wed, 20 May 2026 08:46:37 GMT
Pragma:
- no-cache
RequestId:
- - f0f86246-40d9-4300-9723-f2b9f30d6676
+ - 8d36e261-ad84-4961-8c1c-13f4f3bb097b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1487,9 +1406,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/e3da2f0d-4eac-4b83-8491-b595f9ab3695/items/6a80e97c-e5a2-42f8-8c4d-6bd54f22cbf3
+ uri: https://api.fabric.microsoft.com/v1/workspaces/59668c5f-5395-491e-b9ec-ddd5aa77837c/items/351637d2-66b0-4e7c-8b18-24bfc1f72197
response:
body:
string: ''
@@ -1505,11 +1424,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:29:31 GMT
+ - Wed, 20 May 2026 08:46:37 GMT
Pragma:
- no-cache
RequestId:
- - 58d34d69-cf66-450b-be5f-9abdd08ea3e4
+ - 240a973c-77cc-4095-857f-c235c0564130
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1535,16 +1454,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e3da2f0d-4eac-4b83-8491-b595f9ab3695", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b250880c-1c62-442c-9480-8f836a8d2bc2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "59668c5f-5395-491e-b9ec-ddd5aa77837c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "6c925fdc-4687-4664-b9de-4e8f40be195a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1553,15 +1475,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:29:32 GMT
+ - Wed, 20 May 2026 08:46:38 GMT
Pragma:
- no-cache
RequestId:
- - 272ac43a-157a-4f45-9f03-406a3c3a8089
+ - c8d93906-6dc1-4797-b188-4a076a5c590c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1587,9 +1509,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e3da2f0d-4eac-4b83-8491-b595f9ab3695/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/59668c5f-5395-491e-b9ec-ddd5aa77837c/items
response:
body:
string: '{"value": []}'
@@ -1605,11 +1527,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:29:33 GMT
+ - Wed, 20 May 2026 08:46:40 GMT
Pragma:
- no-cache
RequestId:
- - 58d0e492-d44a-43d3-827c-b5191c719468
+ - 18c113ac-9afc-41f6-8f1f-cad1329ce34f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1637,9 +1559,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/e3da2f0d-4eac-4b83-8491-b595f9ab3695
+ uri: https://api.fabric.microsoft.com/v1/workspaces/59668c5f-5395-491e-b9ec-ddd5aa77837c
response:
body:
string: ''
@@ -1655,11 +1577,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:29:34 GMT
+ - Wed, 20 May 2026 08:46:40 GMT
Pragma:
- no-cache
RequestId:
- - e78cabc2-6cab-47da-89dc-9dad384e4269
+ - 75fc2b91-3972-4983-a6b7-44cdc168ebad
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1685,15 +1607,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b250880c-1c62-442c-9480-8f836a8d2bc2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "6c925fdc-4687-4664-b9de-4e8f40be195a", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1702,15 +1626,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2842'
+ - '2659'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:29:34 GMT
+ - Wed, 20 May 2026 08:46:41 GMT
Pragma:
- no-cache
RequestId:
- - 76dbfb2d-d7d4-40a2-9b78-836e32df61b0
+ - 76a46249-0572-4759-adb8-d03374828fae
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1736,14 +1660,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b250880c-1c62-442c-9480-8f836a8d2bc2/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6c925fdc-4687-4664-b9de-4e8f40be195a/items
response:
body:
- string: '{"value": [{"id": "b0b3a956-23c9-4117-8a94-ed73934bd098", "type": "DataPipeline",
- "displayName": "fabcli000003", "workspaceId":
- "b250880c-1c62-442c-9480-8f836a8d2bc2"}]}'
+ string: '{"value": [{"id": "b50c58ed-2826-4fbf-872a-75edde32d2e4", "type": "DataPipeline",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "6c925fdc-4687-4664-b9de-4e8f40be195a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1752,15 +1675,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '181'
+ - '170'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:29:35 GMT
+ - Wed, 20 May 2026 08:46:42 GMT
Pragma:
- no-cache
RequestId:
- - f16b98f8-0916-4abf-8334-05077a23b6bc
+ - 4701a535-c2cc-41cb-a6ef-be8f43298680
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1788,9 +1711,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/b250880c-1c62-442c-9480-8f836a8d2bc2
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6c925fdc-4687-4664-b9de-4e8f40be195a
response:
body:
string: ''
@@ -1806,11 +1729,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:29:36 GMT
+ - Wed, 20 May 2026 08:46:43 GMT
Pragma:
- no-cache
RequestId:
- - d263c1fb-c1bc-4a36-8819-2604011eaa73
+ - caa73ad3-a3cf-4d05-bb8d-73891ee4c288
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[KQLDashboard].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[KQLDashboard].yaml
index ece037666..fd9913e73 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[KQLDashboard].yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[KQLDashboard].yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:29:37 GMT
+ - Wed, 20 May 2026 08:46:44 GMT
Pragma:
- no-cache
RequestId:
- - 74b9a8dc-113a-459c-9615-cedcc7f0bdab
+ - 1f66b157-ee57-486f-aef0-93674364dc71
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,14 +62,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -77,15 +79,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:29:38 GMT
+ - Wed, 20 May 2026 08:46:44 GMT
Pragma:
- no-cache
RequestId:
- - 7f0e3138-2f31-41a4-aeaa-da3d17172feb
+ - 4a30b882-942c-474b-a791-170d472b428e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -111,7 +113,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -127,15 +129,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '429'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:29:42 GMT
+ - Wed, 20 May 2026 08:46:50 GMT
Pragma:
- no-cache
RequestId:
- - 2b6551e6-b291-4f6d-ba36-7a75db658d44
+ - 9ccd3c18-b2d7-4a09-904a-826e6982246b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -150,8 +152,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000001", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -160,16 +161,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "a444ec59-56d9-4889-a393-8cc9e8d01603", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "fe6ae79a-a620-4a4c-836c-8daae24c2cc9", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -178,17 +180,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '165'
+ - '154'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:29:50 GMT
+ - Wed, 20 May 2026 08:46:56 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/a444ec59-56d9-4889-a393-8cc9e8d01603
+ - https://api.fabric.microsoft.com/v1/workspaces/fe6ae79a-a620-4a4c-836c-8daae24c2cc9
Pragma:
- no-cache
RequestId:
- - 1488c156-a741-4633-a644-e9e603604b0d
+ - 1442a9c6-e496-41e7-8a29-a91c102107cc
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -214,15 +216,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "a444ec59-56d9-4889-a393-8cc9e8d01603", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fe6ae79a-a620-4a4c-836c-8daae24c2cc9", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -231,15 +235,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2839'
+ - '2658'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:29:50 GMT
+ - Wed, 20 May 2026 08:46:57 GMT
Pragma:
- no-cache
RequestId:
- - 7228262a-0315-4779-b879-b815c65d98a9
+ - 5fc56b3b-9135-48d6-9f36-cf7e4e968662
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -265,15 +269,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "a444ec59-56d9-4889-a393-8cc9e8d01603", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fe6ae79a-a620-4a4c-836c-8daae24c2cc9", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -282,15 +288,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2839'
+ - '2658'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:29:51 GMT
+ - Wed, 20 May 2026 08:46:58 GMT
Pragma:
- no-cache
RequestId:
- - 1f506663-e049-4b3d-95c7-5a9254ec0ead
+ - c5034d88-51bf-40e3-a845-f22621fe7eae
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -316,7 +322,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -332,15 +338,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '424'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:29:56 GMT
+ - Wed, 20 May 2026 08:47:04 GMT
Pragma:
- no-cache
RequestId:
- - 37a95123-ba69-4e08-a3fd-f97c27442097
+ - 78ef6b02-009f-4314-8748-4a891558b5fb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -355,8 +361,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000002", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -365,16 +370,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "885e20b2-d644-41eb-9b19-4e29b295af77", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "2b2bac57-a0f6-404c-965e-2b7e115e7d64", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -383,17 +389,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '167'
+ - '154'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:06 GMT
+ - Wed, 20 May 2026 08:47:11 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/885e20b2-d644-41eb-9b19-4e29b295af77
+ - https://api.fabric.microsoft.com/v1/workspaces/2b2bac57-a0f6-404c-965e-2b7e115e7d64
Pragma:
- no-cache
RequestId:
- - 20edd67d-9c0e-49b3-9ddd-14e6e9e6b160
+ - ab1d72c1-f4d6-41d1-8fd4-783cce870496
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -419,16 +425,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "a444ec59-56d9-4889-a393-8cc9e8d01603", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "885e20b2-d644-41eb-9b19-4e29b295af77", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fe6ae79a-a620-4a4c-836c-8daae24c2cc9", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b2bac57-a0f6-404c-965e-2b7e115e7d64", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -437,15 +446,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:07 GMT
+ - Wed, 20 May 2026 08:47:11 GMT
Pragma:
- no-cache
RequestId:
- - ae46cbc3-4fef-4a22-a12d-ea05536a5c25
+ - 9c273f29-e191-400d-abb5-4bc2e6dff17a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -471,9 +480,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/a444ec59-56d9-4889-a393-8cc9e8d01603/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fe6ae79a-a620-4a4c-836c-8daae24c2cc9/items
response:
body:
string: '{"value": []}'
@@ -489,11 +498,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:07 GMT
+ - Wed, 20 May 2026 08:47:12 GMT
Pragma:
- no-cache
RequestId:
- - 567523ad-7f80-4320-afe5-52126e61e4c3
+ - 6e9cd22a-94a4-4d21-8cdd-d4fb70de9599
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -519,9 +528,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/a444ec59-56d9-4889-a393-8cc9e8d01603/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fe6ae79a-a620-4a4c-836c-8daae24c2cc9/items
response:
body:
string: '{"value": []}'
@@ -537,11 +546,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:07 GMT
+ - Wed, 20 May 2026 08:47:13 GMT
Pragma:
- no-cache
RequestId:
- - f359fc0c-5761-45cc-855f-760ce68e3460
+ - 9a9ea37c-edf1-47c7-9880-0835afa04394
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -556,8 +565,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000003", "type":
- "KQLDashboard", "folderId": null}'
+ body: '{"displayName": "fabcli000003", "type": "KQLDashboard", "folderId": null}'
headers:
Accept:
- '*/*'
@@ -566,18 +574,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '110'
+ - '77'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/a444ec59-56d9-4889-a393-8cc9e8d01603/kqlDashboards
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fe6ae79a-a620-4a4c-836c-8daae24c2cc9/kqlDashboards
response:
body:
- string: '{"id": "7aeedad2-70f0-4204-b51b-345f7259d466", "type": "KQLDashboard",
- "displayName": "fabcli000003", "workspaceId":
- "a444ec59-56d9-4889-a393-8cc9e8d01603"}'
+ string: '{"id": "b403f050-ff03-4226-8a90-0c762cd94cec", "type": "KQLDashboard",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "fe6ae79a-a620-4a4c-836c-8daae24c2cc9"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -586,17 +593,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '171'
+ - '160'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:10 GMT
+ - Wed, 20 May 2026 08:47:16 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 2b044575-2886-4d98-a4c3-3b077e00d5d2
+ - 35a33525-3681-4c42-9243-4508808e3ff2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -622,16 +629,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "a444ec59-56d9-4889-a393-8cc9e8d01603", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "885e20b2-d644-41eb-9b19-4e29b295af77", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fe6ae79a-a620-4a4c-836c-8daae24c2cc9", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b2bac57-a0f6-404c-965e-2b7e115e7d64", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -640,15 +650,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:10 GMT
+ - Wed, 20 May 2026 08:47:17 GMT
Pragma:
- no-cache
RequestId:
- - ae0b5c8c-df5d-49a2-b51b-4fa2cfc36de5
+ - 978bc5c2-3026-419e-8ac8-ec86050cbfc7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -674,14 +684,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/a444ec59-56d9-4889-a393-8cc9e8d01603/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fe6ae79a-a620-4a4c-836c-8daae24c2cc9/items
response:
body:
- string: '{"value": [{"id": "7aeedad2-70f0-4204-b51b-345f7259d466", "type": "KQLDashboard",
- "displayName": "fabcli000003", "workspaceId":
- "a444ec59-56d9-4889-a393-8cc9e8d01603"}]}'
+ string: '{"value": [{"id": "b403f050-ff03-4226-8a90-0c762cd94cec", "type": "KQLDashboard",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "fe6ae79a-a620-4a4c-836c-8daae24c2cc9"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -690,15 +699,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '182'
+ - '171'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:11 GMT
+ - Wed, 20 May 2026 08:47:17 GMT
Pragma:
- no-cache
RequestId:
- - aa134bd7-878d-4c50-81df-0bc54d35faa2
+ - 6cf1803b-f0f4-4ffb-ad83-d17b7ea6da7b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -724,16 +733,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "a444ec59-56d9-4889-a393-8cc9e8d01603", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "885e20b2-d644-41eb-9b19-4e29b295af77", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fe6ae79a-a620-4a4c-836c-8daae24c2cc9", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b2bac57-a0f6-404c-965e-2b7e115e7d64", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -742,15 +754,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:11 GMT
+ - Wed, 20 May 2026 08:47:18 GMT
Pragma:
- no-cache
RequestId:
- - c47727bc-a258-4c90-bfe0-ce5756d741bb
+ - 486c92b0-abaa-4784-8096-18a5b188e705
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -776,9 +788,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/885e20b2-d644-41eb-9b19-4e29b295af77/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b2bac57-a0f6-404c-965e-2b7e115e7d64/items
response:
body:
string: '{"value": []}'
@@ -794,11 +806,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:11 GMT
+ - Wed, 20 May 2026 08:47:19 GMT
Pragma:
- no-cache
RequestId:
- - 384f9550-c68f-4c1a-9311-60e69da4a10e
+ - 4764384a-2453-4fd9-a42c-bb98b4a35577
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -824,9 +836,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/885e20b2-d644-41eb-9b19-4e29b295af77/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b2bac57-a0f6-404c-965e-2b7e115e7d64/items
response:
body:
string: '{"value": []}'
@@ -842,11 +854,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:12 GMT
+ - Wed, 20 May 2026 08:47:20 GMT
Pragma:
- no-cache
RequestId:
- - f3f31b48-a22f-472a-b722-7cd21a168788
+ - 9b02fa2c-ff25-4a72-acbf-cf2ec2bdcae5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -872,9 +884,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/885e20b2-d644-41eb-9b19-4e29b295af77/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b2bac57-a0f6-404c-965e-2b7e115e7d64/items
response:
body:
string: '{"value": []}'
@@ -890,11 +902,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:13 GMT
+ - Wed, 20 May 2026 08:47:21 GMT
Pragma:
- no-cache
RequestId:
- - 04be0065-e73f-4546-87e2-a5d2a8c95f75
+ - b434aa8f-9ccb-4743-944a-c6eb97c4240a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -920,14 +932,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/a444ec59-56d9-4889-a393-8cc9e8d01603/items/7aeedad2-70f0-4204-b51b-345f7259d466
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fe6ae79a-a620-4a4c-836c-8daae24c2cc9/items/b403f050-ff03-4226-8a90-0c762cd94cec
response:
body:
- string: '{"id": "7aeedad2-70f0-4204-b51b-345f7259d466", "type": "KQLDashboard",
- "displayName": "fabcli000003", "workspaceId":
- "a444ec59-56d9-4889-a393-8cc9e8d01603"}'
+ string: '{"id": "b403f050-ff03-4226-8a90-0c762cd94cec", "type": "KQLDashboard",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "fe6ae79a-a620-4a4c-836c-8daae24c2cc9"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -936,17 +947,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '171'
+ - '160'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:14 GMT
+ - Wed, 20 May 2026 08:47:21 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - c6a6b82b-61f3-4089-9b6c-d8f6e499fb3d
+ - 7c1f35ba-a14e-4c94-b4bc-07828611eff4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -974,13 +985,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/a444ec59-56d9-4889-a393-8cc9e8d01603/items/7aeedad2-70f0-4204-b51b-345f7259d466/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fe6ae79a-a620-4a4c-836c-8daae24c2cc9/items/b403f050-ff03-4226-8a90-0c762cd94cec/getDefinition
response:
body:
string: '{"definition": {"parts": [{"path": "RealTimeDashboard.json", "payload":
- "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTERhc2hib2FyZCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
+ "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTERhc2hib2FyZCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
"payloadType": "InlineBase64"}]}}'
headers:
Access-Control-Expose-Headers:
@@ -990,15 +1001,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '434'
+ - '407'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:16 GMT
+ - Wed, 20 May 2026 08:47:23 GMT
Pragma:
- no-cache
RequestId:
- - 135d204f-96f9-488f-867b-bbdbb9a797ad
+ - 90ea319f-7ee1-4c71-83be-4ec58afa3351
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1013,10 +1024,9 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "KQLDashboard", "displayName":
- "fabcli000003", "definition": {"parts": [{"path": "RealTimeDashboard.json",
- "payload": "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload":
- "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTERhc2hib2FyZCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
+ body: '{"type": "KQLDashboard", "displayName": "fabcli000003", "definition": {"parts":
+ [{"path": "RealTimeDashboard.json", "payload": "e30=", "payloadType": "InlineBase64"},
+ {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTERhc2hib2FyZCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
"payloadType": "InlineBase64"}]}, "folderId": null}'
headers:
Accept:
@@ -1026,18 +1036,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '752'
+ - '667'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/885e20b2-d644-41eb-9b19-4e29b295af77/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b2bac57-a0f6-404c-965e-2b7e115e7d64/items
response:
body:
- string: '{"id": "de8acd21-08d9-4373-b299-824ba9477a07", "type": "KQLDashboard",
- "displayName": "fabcli000003", "workspaceId":
- "885e20b2-d644-41eb-9b19-4e29b295af77"}'
+ string: '{"id": "bab64295-0150-403f-a5e7-b727c30e23a6", "type": "KQLDashboard",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "2b2bac57-a0f6-404c-965e-2b7e115e7d64"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1046,17 +1055,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '170'
+ - '161'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:20 GMT
+ - Wed, 20 May 2026 08:47:26 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - daf53855-4341-49ec-9322-7c5ad3a802a4
+ - 57d81c87-3c98-46de-8ba2-6d17948e19f8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1082,16 +1091,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "a444ec59-56d9-4889-a393-8cc9e8d01603", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "885e20b2-d644-41eb-9b19-4e29b295af77", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fe6ae79a-a620-4a4c-836c-8daae24c2cc9", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b2bac57-a0f6-404c-965e-2b7e115e7d64", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1100,15 +1112,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:20 GMT
+ - Wed, 20 May 2026 08:47:27 GMT
Pragma:
- no-cache
RequestId:
- - f08f0bd6-a7be-47e6-b588-88157054003f
+ - f7903307-0748-4961-a8b5-6f702c0384d9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1134,14 +1146,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/a444ec59-56d9-4889-a393-8cc9e8d01603/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fe6ae79a-a620-4a4c-836c-8daae24c2cc9/items
response:
body:
- string: '{"value": [{"id": "7aeedad2-70f0-4204-b51b-345f7259d466", "type": "KQLDashboard",
- "displayName": "fabcli000003", "workspaceId":
- "a444ec59-56d9-4889-a393-8cc9e8d01603"}]}'
+ string: '{"value": [{"id": "b403f050-ff03-4226-8a90-0c762cd94cec", "type": "KQLDashboard",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "fe6ae79a-a620-4a4c-836c-8daae24c2cc9"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1150,63 +1161,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '182'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:30:20 GMT
- Pragma:
- - no-cache
- RequestId:
- - 49216c7e-47c1-4795-a9bf-e8d81afa9ba8
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - deny
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/a444ec59-56d9-4889-a393-8cc9e8d01603/folders?recursive=True
- response:
- body:
- string: '{"value": []}'
- headers:
- Access-Control-Expose-Headers:
- - RequestId
- Cache-Control:
- - no-store, must-revalidate, no-cache
- Content-Encoding:
- - gzip
- Content-Length:
- - '32'
+ - '171'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:21 GMT
+ - Wed, 20 May 2026 08:47:27 GMT
Pragma:
- no-cache
RequestId:
- - 2cc940e3-4b0a-4c51-89d3-bb87557a9bb8
+ - c9a13e81-bfc6-4afe-bdcb-ce387f50e373
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1232,66 +1195,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "a444ec59-56d9-4889-a393-8cc9e8d01603", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "885e20b2-d644-41eb-9b19-4e29b295af77", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
- headers:
- Access-Control-Expose-Headers:
- - RequestId
- Cache-Control:
- - no-store, must-revalidate, no-cache
- Content-Encoding:
- - gzip
- Content-Length:
- - '2879'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:30:22 GMT
- Pragma:
- - no-cache
- RequestId:
- - 862aa8b1-66b3-44f2-852f-f841b5dea669
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - deny
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/885e20b2-d644-41eb-9b19-4e29b295af77/items
- response:
- body:
- string: '{"value": [{"id": "de8acd21-08d9-4373-b299-824ba9477a07", "type": "KQLDashboard",
- "displayName": "fabcli000003", "workspaceId":
- "885e20b2-d644-41eb-9b19-4e29b295af77"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fe6ae79a-a620-4a4c-836c-8daae24c2cc9", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b2bac57-a0f6-404c-965e-2b7e115e7d64", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1300,15 +1216,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '181'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:22 GMT
+ - Wed, 20 May 2026 08:47:29 GMT
Pragma:
- no-cache
RequestId:
- - fdf89657-47bf-4fbe-91a0-3550cebe9492
+ - bd27c70b-2d54-41c7-91e7-013025e5376e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1334,12 +1250,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/885e20b2-d644-41eb-9b19-4e29b295af77/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b2bac57-a0f6-404c-965e-2b7e115e7d64/items
response:
body:
- string: '{"value": []}'
+ string: '{"value": [{"id": "bab64295-0150-403f-a5e7-b727c30e23a6", "type": "KQLDashboard",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "2b2bac57-a0f6-404c-965e-2b7e115e7d64"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1348,15 +1265,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '32'
+ - '172'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:24 GMT
+ - Wed, 20 May 2026 08:47:30 GMT
Pragma:
- no-cache
RequestId:
- - 416c16a5-e333-4e3f-a550-64905f4dfcd9
+ - 0d5c6c51-8445-422c-b729-242ee271eba8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1382,16 +1299,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "a444ec59-56d9-4889-a393-8cc9e8d01603", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "885e20b2-d644-41eb-9b19-4e29b295af77", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fe6ae79a-a620-4a4c-836c-8daae24c2cc9", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b2bac57-a0f6-404c-965e-2b7e115e7d64", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1400,15 +1320,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:25 GMT
+ - Wed, 20 May 2026 08:47:30 GMT
Pragma:
- no-cache
RequestId:
- - 127a4ea0-1399-46e9-bfdc-f3211d56ed6d
+ - f9db685e-1029-4c06-b59b-794e443284a7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1434,14 +1354,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/a444ec59-56d9-4889-a393-8cc9e8d01603/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fe6ae79a-a620-4a4c-836c-8daae24c2cc9/items
response:
body:
- string: '{"value": [{"id": "7aeedad2-70f0-4204-b51b-345f7259d466", "type": "KQLDashboard",
- "displayName": "fabcli000003", "workspaceId":
- "a444ec59-56d9-4889-a393-8cc9e8d01603"}]}'
+ string: '{"value": [{"id": "b403f050-ff03-4226-8a90-0c762cd94cec", "type": "KQLDashboard",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "fe6ae79a-a620-4a4c-836c-8daae24c2cc9"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1450,15 +1369,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '182'
+ - '171'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:25 GMT
+ - Wed, 20 May 2026 08:47:32 GMT
Pragma:
- no-cache
RequestId:
- - d48acf03-c37d-4af4-8e5c-b894f328d4e6
+ - 9f22137f-4bfe-436e-ac5e-8774ae777f34
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1486,9 +1405,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/a444ec59-56d9-4889-a393-8cc9e8d01603/items/7aeedad2-70f0-4204-b51b-345f7259d466
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fe6ae79a-a620-4a4c-836c-8daae24c2cc9/items/b403f050-ff03-4226-8a90-0c762cd94cec
response:
body:
string: ''
@@ -1504,11 +1423,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:30:26 GMT
+ - Wed, 20 May 2026 08:47:33 GMT
Pragma:
- no-cache
RequestId:
- - 7db54e5e-6940-4455-8c30-5cc4697d1672
+ - b8be0e68-0fc8-447e-be34-e471637375fd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1534,16 +1453,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "a444ec59-56d9-4889-a393-8cc9e8d01603", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "885e20b2-d644-41eb-9b19-4e29b295af77", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "fe6ae79a-a620-4a4c-836c-8daae24c2cc9", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b2bac57-a0f6-404c-965e-2b7e115e7d64", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1552,15 +1474,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2696'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:27 GMT
+ - Wed, 20 May 2026 08:47:33 GMT
Pragma:
- no-cache
RequestId:
- - 7ea6938c-be66-4ece-a874-84f600cc6d52
+ - b01ce8a8-a2ce-4488-be75-f2cf9a26df19
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1586,9 +1508,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/a444ec59-56d9-4889-a393-8cc9e8d01603/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fe6ae79a-a620-4a4c-836c-8daae24c2cc9/items
response:
body:
string: '{"value": []}'
@@ -1604,11 +1526,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:28 GMT
+ - Wed, 20 May 2026 08:47:33 GMT
Pragma:
- no-cache
RequestId:
- - 41490030-2823-444d-973a-e83fcc0624f0
+ - 45c8a54a-5820-494b-9fd6-24e95f68e3d1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1636,9 +1558,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/a444ec59-56d9-4889-a393-8cc9e8d01603
+ uri: https://api.fabric.microsoft.com/v1/workspaces/fe6ae79a-a620-4a4c-836c-8daae24c2cc9
response:
body:
string: ''
@@ -1654,11 +1576,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:30:28 GMT
+ - Wed, 20 May 2026 08:47:35 GMT
Pragma:
- no-cache
RequestId:
- - 4ad70984-a502-4947-892c-d92353c7c0e1
+ - 90132df8-bcea-4a0c-9c6e-e923ef282951
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1684,15 +1606,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "885e20b2-d644-41eb-9b19-4e29b295af77", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b2bac57-a0f6-404c-965e-2b7e115e7d64", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1701,15 +1625,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2844'
+ - '2657'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:29 GMT
+ - Wed, 20 May 2026 08:47:35 GMT
Pragma:
- no-cache
RequestId:
- - 0dc32983-404d-461c-a242-1ba734fc798d
+ - 34625967-b558-468a-a788-abc2eed14491
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1735,14 +1659,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/885e20b2-d644-41eb-9b19-4e29b295af77/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b2bac57-a0f6-404c-965e-2b7e115e7d64/items
response:
body:
- string: '{"value": [{"id": "de8acd21-08d9-4373-b299-824ba9477a07", "type": "KQLDashboard",
- "displayName": "fabcli000003", "workspaceId":
- "885e20b2-d644-41eb-9b19-4e29b295af77"}]}'
+ string: '{"value": [{"id": "bab64295-0150-403f-a5e7-b727c30e23a6", "type": "KQLDashboard",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "2b2bac57-a0f6-404c-965e-2b7e115e7d64"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1751,15 +1674,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '181'
+ - '172'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:30 GMT
+ - Wed, 20 May 2026 08:47:37 GMT
Pragma:
- no-cache
RequestId:
- - ba0afacc-4071-4a26-864e-bdd7d2b28ef2
+ - e2283de9-4ea5-4ad9-9386-217e2c71fc1f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1787,9 +1710,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/885e20b2-d644-41eb-9b19-4e29b295af77
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b2bac57-a0f6-404c-965e-2b7e115e7d64
response:
body:
string: ''
@@ -1805,11 +1728,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:30:31 GMT
+ - Wed, 20 May 2026 08:47:37 GMT
Pragma:
- no-cache
RequestId:
- - 0aaed6d8-4428-42ee-b9ba-af57c038f767
+ - 1966baff-aea0-4f24-ba31-b42761988cc6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[KQLQueryset].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[KQLQueryset].yaml
index a8a4e5ae8..fa48a06ed 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[KQLQueryset].yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[KQLQueryset].yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:32 GMT
+ - Wed, 20 May 2026 08:47:38 GMT
Pragma:
- no-cache
RequestId:
- - a058ce16-55ba-4845-b4f7-d376841be27e
+ - 7122b62d-3e19-42d2-92b9-576235b4b7be
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,14 +62,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -77,15 +79,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:33 GMT
+ - Wed, 20 May 2026 08:47:38 GMT
Pragma:
- no-cache
RequestId:
- - 1c04c988-1bfd-403e-b387-bdd67d851a54
+ - a23007ca-f8c0-4184-85c5-c0018f3b3560
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -111,7 +113,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -127,15 +129,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '427'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:37 GMT
+ - Wed, 20 May 2026 08:47:44 GMT
Pragma:
- no-cache
RequestId:
- - e83eed7e-893a-4faf-978c-93d867ed5c82
+ - a822dab9-cc87-436f-a2cb-4fa60899e09d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -150,8 +152,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000001", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -160,16 +161,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "6a90f204-0fcf-4787-99a9-3ea6f45cb231", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "188c6a33-d09e-4e1d-b5a9-9695b7cf42ab", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -178,17 +180,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '167'
+ - '156'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:45 GMT
+ - Wed, 20 May 2026 08:47:52 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/6a90f204-0fcf-4787-99a9-3ea6f45cb231
+ - https://api.fabric.microsoft.com/v1/workspaces/188c6a33-d09e-4e1d-b5a9-9695b7cf42ab
Pragma:
- no-cache
RequestId:
- - ab6e8100-7d31-4da0-b476-8140e090d0bd
+ - f9f11ba5-a747-4df4-9dd0-aa8b1fe30d75
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -214,15 +216,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "6a90f204-0fcf-4787-99a9-3ea6f45cb231", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "188c6a33-d09e-4e1d-b5a9-9695b7cf42ab", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -231,15 +235,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2841'
+ - '2660'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:46 GMT
+ - Wed, 20 May 2026 08:47:53 GMT
Pragma:
- no-cache
RequestId:
- - 1921fe78-07db-46bd-b159-28cfeacbbd64
+ - b5d52c0a-aa0e-4ac6-b38c-b68d98531298
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -265,15 +269,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "6a90f204-0fcf-4787-99a9-3ea6f45cb231", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "188c6a33-d09e-4e1d-b5a9-9695b7cf42ab", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -282,15 +288,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2841'
+ - '2660'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:47 GMT
+ - Wed, 20 May 2026 08:47:53 GMT
Pragma:
- no-cache
RequestId:
- - 4f4650f5-e141-43bf-9aad-5294d0df6e41
+ - b2abe26b-7459-404d-8926-ee3bfae75fd6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -316,7 +322,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -332,15 +338,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '424'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:52 GMT
+ - Wed, 20 May 2026 08:47:59 GMT
Pragma:
- no-cache
RequestId:
- - df0b6e7b-324d-4f2c-bca8-806090674b88
+ - 8aaa2962-7583-4fa9-a51c-a9d2b8fec615
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -355,8 +361,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000002", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -365,16 +370,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "01f086a0-8cd0-42d7-91d6-385eb9905303", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -383,17 +389,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '156'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:59 GMT
+ - Wed, 20 May 2026 08:48:06 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a
+ - https://api.fabric.microsoft.com/v1/workspaces/01f086a0-8cd0-42d7-91d6-385eb9905303
Pragma:
- no-cache
RequestId:
- - 115a41e5-0b29-4f73-a4ef-9fcd4ef08bb7
+ - f5384351-a424-4655-ac65-10ee8df628cb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -419,16 +425,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "6a90f204-0fcf-4787-99a9-3ea6f45cb231", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "188c6a33-d09e-4e1d-b5a9-9695b7cf42ab", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "01f086a0-8cd0-42d7-91d6-385eb9905303", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -437,15 +446,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:30:59 GMT
+ - Wed, 20 May 2026 08:48:07 GMT
Pragma:
- no-cache
RequestId:
- - dc3000ad-d164-4117-94e3-7473f4812570
+ - fecca30e-27e9-4cdf-8c21-13671465f6f8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -471,9 +480,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/6a90f204-0fcf-4787-99a9-3ea6f45cb231/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/188c6a33-d09e-4e1d-b5a9-9695b7cf42ab/items
response:
body:
string: '{"value": []}'
@@ -489,11 +498,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:00 GMT
+ - Wed, 20 May 2026 08:48:09 GMT
Pragma:
- no-cache
RequestId:
- - f1839baf-3837-488a-b455-57980e267edd
+ - e505fa4b-09b9-4fe1-afe6-89acb3abb5fb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -519,9 +528,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/6a90f204-0fcf-4787-99a9-3ea6f45cb231/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/188c6a33-d09e-4e1d-b5a9-9695b7cf42ab/items
response:
body:
string: '{"value": []}'
@@ -537,11 +546,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:02 GMT
+ - Wed, 20 May 2026 08:48:09 GMT
Pragma:
- no-cache
RequestId:
- - 99a99046-420c-447e-bc8a-4ad8bf1bbe0b
+ - 42adc4e7-06c9-4812-a6df-6febdeffbb2c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -556,8 +565,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000003", "type":
- "KQLQueryset", "folderId": null}'
+ body: '{"displayName": "fabcli000003", "type": "KQLQueryset", "folderId": null}'
headers:
Accept:
- '*/*'
@@ -566,18 +574,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '109'
+ - '76'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/6a90f204-0fcf-4787-99a9-3ea6f45cb231/kqlQuerysets
+ uri: https://api.fabric.microsoft.com/v1/workspaces/188c6a33-d09e-4e1d-b5a9-9695b7cf42ab/kqlQuerysets
response:
body:
- string: '{"id": "e49e5678-3843-444e-9226-2b3b626041be", "type": "KQLQueryset",
- "displayName": "fabcli000003", "workspaceId":
- "6a90f204-0fcf-4787-99a9-3ea6f45cb231"}'
+ string: '{"id": "cc612094-586a-4e70-b237-efb9c30a9355", "type": "KQLQueryset",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "188c6a33-d09e-4e1d-b5a9-9695b7cf42ab"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -586,17 +593,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '171'
+ - '158'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:04 GMT
+ - Wed, 20 May 2026 08:48:12 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 4edbc10f-686b-433c-bdbd-8804d0c4646c
+ - 7002f098-091e-48a1-9529-04e69e8e59d1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -622,16 +629,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "6a90f204-0fcf-4787-99a9-3ea6f45cb231", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "188c6a33-d09e-4e1d-b5a9-9695b7cf42ab", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "01f086a0-8cd0-42d7-91d6-385eb9905303", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -640,15 +650,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:04 GMT
+ - Wed, 20 May 2026 08:48:13 GMT
Pragma:
- no-cache
RequestId:
- - 6599cf14-6b59-4eaf-b241-0ca10d6b7fe5
+ - e21859ec-a745-4bdf-94a1-0e155b414dcf
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -674,14 +684,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/6a90f204-0fcf-4787-99a9-3ea6f45cb231/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/188c6a33-d09e-4e1d-b5a9-9695b7cf42ab/items
response:
body:
- string: '{"value": [{"id": "e49e5678-3843-444e-9226-2b3b626041be", "type": "KQLQueryset",
- "displayName": "fabcli000003", "workspaceId":
- "6a90f204-0fcf-4787-99a9-3ea6f45cb231"}]}'
+ string: '{"value": [{"id": "cc612094-586a-4e70-b237-efb9c30a9355", "type": "KQLQueryset",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "188c6a33-d09e-4e1d-b5a9-9695b7cf42ab"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -690,15 +699,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '182'
+ - '170'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:05 GMT
+ - Wed, 20 May 2026 08:48:14 GMT
Pragma:
- no-cache
RequestId:
- - 56f27c70-7f99-4c69-9c08-18686f2bdb08
+ - 9ab9d14d-4654-495c-8b57-76fe2d187698
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -724,16 +733,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "6a90f204-0fcf-4787-99a9-3ea6f45cb231", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "188c6a33-d09e-4e1d-b5a9-9695b7cf42ab", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "01f086a0-8cd0-42d7-91d6-385eb9905303", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -742,15 +754,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:06 GMT
+ - Wed, 20 May 2026 08:48:14 GMT
Pragma:
- no-cache
RequestId:
- - 494a9533-d2ae-4717-bc9f-63563e0d61e9
+ - 68ec189c-3abb-4133-b6a8-5307325a1076
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -776,9 +788,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/01f086a0-8cd0-42d7-91d6-385eb9905303/items
response:
body:
string: '{"value": []}'
@@ -794,11 +806,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:07 GMT
+ - Wed, 20 May 2026 08:48:15 GMT
Pragma:
- no-cache
RequestId:
- - 8011f190-779b-4952-9fe6-d1b8410f2537
+ - 4c4e6f2d-b25d-4b03-9ba3-1372ee144f5b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -824,9 +836,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/01f086a0-8cd0-42d7-91d6-385eb9905303/items
response:
body:
string: '{"value": []}'
@@ -842,11 +854,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:08 GMT
+ - Wed, 20 May 2026 08:48:16 GMT
Pragma:
- no-cache
RequestId:
- - be4a90c8-d97a-4e86-af20-1d9b306c8d34
+ - ef49d9dd-cb1c-4c1e-93cc-9df06b8e7759
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -872,9 +884,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/01f086a0-8cd0-42d7-91d6-385eb9905303/items
response:
body:
string: '{"value": []}'
@@ -890,11 +902,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:09 GMT
+ - Wed, 20 May 2026 08:48:17 GMT
Pragma:
- no-cache
RequestId:
- - 8a87c770-826d-4dd7-8682-5cafa02d393a
+ - 53a630bf-0bc8-481b-8d4a-9d78c2e210b9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -920,14 +932,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/6a90f204-0fcf-4787-99a9-3ea6f45cb231/items/e49e5678-3843-444e-9226-2b3b626041be
+ uri: https://api.fabric.microsoft.com/v1/workspaces/188c6a33-d09e-4e1d-b5a9-9695b7cf42ab/items/cc612094-586a-4e70-b237-efb9c30a9355
response:
body:
- string: '{"id": "e49e5678-3843-444e-9226-2b3b626041be", "type": "KQLQueryset",
- "displayName": "fabcli000003", "workspaceId":
- "6a90f204-0fcf-4787-99a9-3ea6f45cb231"}'
+ string: '{"id": "cc612094-586a-4e70-b237-efb9c30a9355", "type": "KQLQueryset",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "188c6a33-d09e-4e1d-b5a9-9695b7cf42ab"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -936,17 +947,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '171'
+ - '158'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:10 GMT
+ - Wed, 20 May 2026 08:48:17 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - dce59e52-38a8-4d9c-9c09-2f290d9f7238
+ - 53fd294f-b829-43bc-8688-01cdd53d7277
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -974,13 +985,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/6a90f204-0fcf-4787-99a9-3ea6f45cb231/items/e49e5678-3843-444e-9226-2b3b626041be/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/188c6a33-d09e-4e1d-b5a9-9695b7cf42ab/items/cc612094-586a-4e70-b237-efb9c30a9355/getDefinition
response:
body:
string: '{"definition": {"parts": [{"path": "RealTimeQueryset.json", "payload":
- "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTFF1ZXJ5c2V0IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
+ "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTFF1ZXJ5c2V0IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
"payloadType": "InlineBase64"}]}}'
headers:
Access-Control-Expose-Headers:
@@ -990,15 +1001,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '427'
+ - '401'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:11 GMT
+ - Wed, 20 May 2026 08:48:19 GMT
Pragma:
- no-cache
RequestId:
- - a358ecda-3831-41b7-a4ec-58adc1cb4ab3
+ - 4f14711d-7198-4a7d-b927-d3fcac54b88e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1013,9 +1024,9 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "KQLQueryset", "displayName":
- "fabcli000003", "definition": {"parts": [{"path": "RealTimeQueryset.json", "payload":
- "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTFF1ZXJ5c2V0IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
+ body: '{"type": "KQLQueryset", "displayName": "fabcli000003", "definition": {"parts":
+ [{"path": "RealTimeQueryset.json", "payload": "e30=", "payloadType": "InlineBase64"},
+ {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTFF1ZXJ5c2V0IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
"payloadType": "InlineBase64"}]}, "folderId": null}'
headers:
Accept:
@@ -1025,18 +1036,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '746'
+ - '665'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/01f086a0-8cd0-42d7-91d6-385eb9905303/items
response:
body:
- string: '{"id": "94ca3185-76f8-4266-be53-287df7804955", "type": "KQLQueryset",
- "displayName": "fabcli000003", "workspaceId":
- "3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a"}'
+ string: '{"id": "c0b3704a-4bdf-47ae-94fd-8cd6c0797788", "type": "KQLQueryset",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "01f086a0-8cd0-42d7-91d6-385eb9905303"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1045,17 +1055,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '171'
+ - '156'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:15 GMT
+ - Wed, 20 May 2026 08:48:22 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 956c173c-bdf4-4e19-a82b-095e66946218
+ - a7eb51e2-6fd0-4676-8f9f-7b91189839c2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1081,16 +1091,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "6a90f204-0fcf-4787-99a9-3ea6f45cb231", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "188c6a33-d09e-4e1d-b5a9-9695b7cf42ab", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "01f086a0-8cd0-42d7-91d6-385eb9905303", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1099,15 +1112,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:16 GMT
+ - Wed, 20 May 2026 08:48:23 GMT
Pragma:
- no-cache
RequestId:
- - c0621ab4-20d9-472f-b277-5855a11c7e56
+ - 0a4ed5b9-0af5-4656-a250-a61a0def6dfe
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1133,14 +1146,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/6a90f204-0fcf-4787-99a9-3ea6f45cb231/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/188c6a33-d09e-4e1d-b5a9-9695b7cf42ab/items
response:
body:
- string: '{"value": [{"id": "e49e5678-3843-444e-9226-2b3b626041be", "type": "KQLQueryset",
- "displayName": "fabcli000003", "workspaceId":
- "6a90f204-0fcf-4787-99a9-3ea6f45cb231"}]}'
+ string: '{"value": [{"id": "cc612094-586a-4e70-b237-efb9c30a9355", "type": "KQLQueryset",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "188c6a33-d09e-4e1d-b5a9-9695b7cf42ab"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1149,15 +1161,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '182'
+ - '170'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:17 GMT
+ - Wed, 20 May 2026 08:48:24 GMT
Pragma:
- no-cache
RequestId:
- - 15d3b709-4c87-489f-9c43-4a60af46673d
+ - ea09ca59-8507-4797-ac91-b4d794381361
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1183,64 +1195,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/6a90f204-0fcf-4787-99a9-3ea6f45cb231/folders?recursive=True
- response:
- body:
- string: '{"value": []}'
- headers:
- Access-Control-Expose-Headers:
- - RequestId
- Cache-Control:
- - no-store, must-revalidate, no-cache
- Content-Encoding:
- - gzip
- Content-Length:
- - '32'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:31:18 GMT
- Pragma:
- - no-cache
- RequestId:
- - 00eb7948-f281-4dd0-8c3f-bde8bc6a5e35
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - deny
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "6a90f204-0fcf-4787-99a9-3ea6f45cb231", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "188c6a33-d09e-4e1d-b5a9-9695b7cf42ab", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "01f086a0-8cd0-42d7-91d6-385eb9905303", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1249,15 +1216,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:19 GMT
+ - Wed, 20 May 2026 08:48:24 GMT
Pragma:
- no-cache
RequestId:
- - 2e02d971-8328-48fc-9bf6-36d6be4945c7
+ - b18148de-46f6-418d-a5ea-51a62e4fd3ec
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1283,14 +1250,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/01f086a0-8cd0-42d7-91d6-385eb9905303/items
response:
body:
- string: '{"value": [{"id": "94ca3185-76f8-4266-be53-287df7804955", "type": "KQLQueryset",
- "displayName": "fabcli000003", "workspaceId":
- "3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a"}]}'
+ string: '{"value": [{"id": "c0b3704a-4bdf-47ae-94fd-8cd6c0797788", "type": "KQLQueryset",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "01f086a0-8cd0-42d7-91d6-385eb9905303"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1299,63 +1265,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '182'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:31:20 GMT
- Pragma:
- - no-cache
- RequestId:
- - 526a9b31-313d-4e33-837c-aed7cffe832a
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - deny
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a/folders?recursive=True
- response:
- body:
- string: '{"value": []}'
- headers:
- Access-Control-Expose-Headers:
- - RequestId
- Cache-Control:
- - no-store, must-revalidate, no-cache
- Content-Encoding:
- - gzip
- Content-Length:
- - '32'
+ - '168'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:20 GMT
+ - Wed, 20 May 2026 08:48:25 GMT
Pragma:
- no-cache
RequestId:
- - 451a547f-1a81-49c4-96ea-7fc68b9f67c0
+ - 84c97649-4243-4984-8e84-17ee20d80842
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1381,16 +1299,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "6a90f204-0fcf-4787-99a9-3ea6f45cb231", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "188c6a33-d09e-4e1d-b5a9-9695b7cf42ab", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "01f086a0-8cd0-42d7-91d6-385eb9905303", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1399,15 +1320,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:21 GMT
+ - Wed, 20 May 2026 08:48:26 GMT
Pragma:
- no-cache
RequestId:
- - 4e98a0d4-1e82-435b-97a5-5cca8ef5a22a
+ - 331e3ff6-bf83-45c2-bb35-bddbbb21e20c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1433,14 +1354,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/6a90f204-0fcf-4787-99a9-3ea6f45cb231/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/188c6a33-d09e-4e1d-b5a9-9695b7cf42ab/items
response:
body:
- string: '{"value": [{"id": "e49e5678-3843-444e-9226-2b3b626041be", "type": "KQLQueryset",
- "displayName": "fabcli000003", "workspaceId":
- "6a90f204-0fcf-4787-99a9-3ea6f45cb231"}]}'
+ string: '{"value": [{"id": "cc612094-586a-4e70-b237-efb9c30a9355", "type": "KQLQueryset",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "188c6a33-d09e-4e1d-b5a9-9695b7cf42ab"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1449,15 +1369,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '182'
+ - '170'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:22 GMT
+ - Wed, 20 May 2026 08:48:27 GMT
Pragma:
- no-cache
RequestId:
- - b046b671-f073-4fdf-9738-9c8ddff9f95d
+ - 263555ad-2f4a-486d-8883-49e42551c590
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1485,9 +1405,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/6a90f204-0fcf-4787-99a9-3ea6f45cb231/items/e49e5678-3843-444e-9226-2b3b626041be
+ uri: https://api.fabric.microsoft.com/v1/workspaces/188c6a33-d09e-4e1d-b5a9-9695b7cf42ab/items/cc612094-586a-4e70-b237-efb9c30a9355
response:
body:
string: ''
@@ -1503,11 +1423,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:31:23 GMT
+ - Wed, 20 May 2026 08:48:29 GMT
Pragma:
- no-cache
RequestId:
- - 666f0448-02df-4fff-aa0d-93b2f9dc467b
+ - a3d2f06b-b355-4596-ad8d-3ee6431106ec
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1533,16 +1453,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "6a90f204-0fcf-4787-99a9-3ea6f45cb231", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "188c6a33-d09e-4e1d-b5a9-9695b7cf42ab", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "01f086a0-8cd0-42d7-91d6-385eb9905303", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1551,15 +1474,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2878'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:23 GMT
+ - Wed, 20 May 2026 08:48:29 GMT
Pragma:
- no-cache
RequestId:
- - 184c2c01-8b97-4b6e-88a4-5a5bfb1233c8
+ - 4843b224-2f04-4656-b4c0-c9bff1b06edf
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1585,9 +1508,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/6a90f204-0fcf-4787-99a9-3ea6f45cb231/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/188c6a33-d09e-4e1d-b5a9-9695b7cf42ab/items
response:
body:
string: '{"value": []}'
@@ -1603,11 +1526,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:24 GMT
+ - Wed, 20 May 2026 08:48:30 GMT
Pragma:
- no-cache
RequestId:
- - f89dc4f6-8f21-417d-b0fc-a45c735171c1
+ - 77a5b532-7e7d-47b6-b19d-bfce1b4acf20
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1635,9 +1558,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/6a90f204-0fcf-4787-99a9-3ea6f45cb231
+ uri: https://api.fabric.microsoft.com/v1/workspaces/188c6a33-d09e-4e1d-b5a9-9695b7cf42ab
response:
body:
string: ''
@@ -1653,11 +1576,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:31:25 GMT
+ - Wed, 20 May 2026 08:48:30 GMT
Pragma:
- no-cache
RequestId:
- - e54c8c3f-6075-4841-9b40-794458c48403
+ - 5738fc2e-926f-4e29-9c52-dbbd89a51db2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1683,15 +1606,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "01f086a0-8cd0-42d7-91d6-385eb9905303", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1700,15 +1625,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2842'
+ - '2661'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:26 GMT
+ - Wed, 20 May 2026 08:48:32 GMT
Pragma:
- no-cache
RequestId:
- - 02acba3d-4a0a-4c6f-a76f-0e09cb7659f7
+ - 28c93380-e912-4240-ac31-e3520711e415
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1734,14 +1659,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/01f086a0-8cd0-42d7-91d6-385eb9905303/items
response:
body:
- string: '{"value": [{"id": "94ca3185-76f8-4266-be53-287df7804955", "type": "KQLQueryset",
- "displayName": "fabcli000003", "workspaceId":
- "3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a"}]}'
+ string: '{"value": [{"id": "c0b3704a-4bdf-47ae-94fd-8cd6c0797788", "type": "KQLQueryset",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "01f086a0-8cd0-42d7-91d6-385eb9905303"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1750,15 +1674,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '182'
+ - '168'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:27 GMT
+ - Wed, 20 May 2026 08:48:33 GMT
Pragma:
- no-cache
RequestId:
- - a8e18246-ba20-4e35-83f4-dc3303010ff7
+ - c8fe78d5-6ec4-4cae-9b97-b8c0c24e071c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1786,9 +1710,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a
+ uri: https://api.fabric.microsoft.com/v1/workspaces/01f086a0-8cd0-42d7-91d6-385eb9905303
response:
body:
string: ''
@@ -1804,11 +1728,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:31:28 GMT
+ - Wed, 20 May 2026 08:48:33 GMT
Pragma:
- no-cache
RequestId:
- - 46443326-5a1a-4dde-ad47-cee47cec1e3b
+ - d09ea133-311c-4724-83dc-9158571cdf28
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[MirroredDatabase].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[MirroredDatabase].yaml
index 62e31cb5e..6e3860bee 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[MirroredDatabase].yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[MirroredDatabase].yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:28 GMT
+ - Wed, 20 May 2026 08:48:34 GMT
Pragma:
- no-cache
RequestId:
- - b22b13ee-b9e7-4934-92f2-e5aa255715fd
+ - 8f00ce01-5514-46de-ba27-06f01f35fb43
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,14 +62,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -77,15 +79,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:30 GMT
+ - Wed, 20 May 2026 08:48:35 GMT
Pragma:
- no-cache
RequestId:
- - 3cd67319-edc0-4962-98fa-67082b307962
+ - e040215d-e01c-4292-a7ba-78ec17cc2e97
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -111,7 +113,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -127,15 +129,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '424'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:33 GMT
+ - Wed, 20 May 2026 08:48:38 GMT
Pragma:
- no-cache
RequestId:
- - 077142ea-aa0c-481d-a742-60227fcef51a
+ - 1342805c-d4bd-420b-bc7a-70e4815641c1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -150,8 +152,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000001", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -160,16 +161,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "f426633d-d2f2-4a68-81c8-c80847b549b8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "9097860d-4779-424b-9ac1-45202354d5b0", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -178,17 +180,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '155'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:39 GMT
+ - Wed, 20 May 2026 08:48:45 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/f426633d-d2f2-4a68-81c8-c80847b549b8
+ - https://api.fabric.microsoft.com/v1/workspaces/9097860d-4779-424b-9ac1-45202354d5b0
Pragma:
- no-cache
RequestId:
- - 9fa47721-f9f9-4a59-a639-ad29e0478394
+ - a0b81f7c-e5fe-469c-952a-b072408cbc7c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -214,15 +216,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "f426633d-d2f2-4a68-81c8-c80847b549b8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9097860d-4779-424b-9ac1-45202354d5b0", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -231,15 +235,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2843'
+ - '2656'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:41 GMT
+ - Wed, 20 May 2026 08:48:46 GMT
Pragma:
- no-cache
RequestId:
- - f46641e4-4bf3-4e87-acaf-0aa674d622bc
+ - c24b9826-add4-427d-b7dc-8ee564445d62
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -265,15 +269,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "f426633d-d2f2-4a68-81c8-c80847b549b8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9097860d-4779-424b-9ac1-45202354d5b0", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -282,15 +288,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2843'
+ - '2656'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:41 GMT
+ - Wed, 20 May 2026 08:48:47 GMT
Pragma:
- no-cache
RequestId:
- - 20242c96-095b-4ce4-8dac-504a360db98a
+ - 11e3131f-18f8-4973-9d90-b2a41b5b5df9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -316,7 +322,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -332,15 +338,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '429'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:47 GMT
+ - Wed, 20 May 2026 08:48:52 GMT
Pragma:
- no-cache
RequestId:
- - cd090887-e119-44c0-872a-3182f9327e18
+ - 3e7e2a35-3d09-4326-af63-f430d5525742
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -355,8 +361,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000002", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -365,16 +370,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "d754b3ff-c3a9-4449-974e-f48e3ddf8f67", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "65663ad3-201a-4e6f-a7a5-7a46f8ea458f", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -383,17 +389,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '154'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:55 GMT
+ - Wed, 20 May 2026 08:49:00 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/d754b3ff-c3a9-4449-974e-f48e3ddf8f67
+ - https://api.fabric.microsoft.com/v1/workspaces/65663ad3-201a-4e6f-a7a5-7a46f8ea458f
Pragma:
- no-cache
RequestId:
- - c9a99147-51f7-468e-8bbf-78ae9fc5e620
+ - f84f3639-60f9-4649-82a5-a5dc433864ac
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -419,16 +425,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "f426633d-d2f2-4a68-81c8-c80847b549b8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d754b3ff-c3a9-4449-974e-f48e3ddf8f67", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9097860d-4779-424b-9ac1-45202354d5b0", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "65663ad3-201a-4e6f-a7a5-7a46f8ea458f", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -437,15 +446,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:56 GMT
+ - Wed, 20 May 2026 08:49:02 GMT
Pragma:
- no-cache
RequestId:
- - aae63f54-0bbf-423d-907a-475e8ef07315
+ - 076800cb-3994-40ca-abae-9aac8346f306
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -471,9 +480,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f426633d-d2f2-4a68-81c8-c80847b549b8/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9097860d-4779-424b-9ac1-45202354d5b0/items
response:
body:
string: '{"value": []}'
@@ -489,11 +498,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:57 GMT
+ - Wed, 20 May 2026 08:49:03 GMT
Pragma:
- no-cache
RequestId:
- - 9c7d3e3c-4f62-4c91-b6a5-3ac681abd570
+ - ade4b3db-b05a-4ed6-a4c2-43bb0775ccad
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -519,9 +528,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f426633d-d2f2-4a68-81c8-c80847b549b8/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9097860d-4779-424b-9ac1-45202354d5b0/items
response:
body:
string: '{"value": []}'
@@ -537,11 +546,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:31:57 GMT
+ - Wed, 20 May 2026 08:49:03 GMT
Pragma:
- no-cache
RequestId:
- - b355dc6b-62b5-4b43-b8d8-85b42d68e73a
+ - c4e287ed-dbaa-4829-bed4-41484f33e86e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -556,9 +565,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000003", "type":
- "MirroredDatabase", "folderId": null, "definition": {"parts": [{"path": "mirroring.json",
- "payload": "ewogICAgInByb3BlcnRpZXMiOiB7CiAgICAgICAgInNvdXJjZSI6IHsKICAgICAgICAgICAgInR5cGUiOiAiR2VuZXJpY01pcnJvciIsCiAgICAgICAgICAgICJ0eXBlUHJvcGVydGllcyI6IHt9CiAgICAgICAgfSwKICAgICAgICAidGFyZ2V0IjogewogICAgICAgICAgICAidHlwZSI6ICJNb3VudGVkUmVsYXRpb25hbERhdGFiYXNlIiwKICAgICAgICAgICAgInR5cGVQcm9wZXJ0aWVzIjogewogICAgICAgICAgICAgICAgImZvcm1hdCI6ICJEZWx0YSIKICAgICAgICAgICAgfQogICAgICAgIH0KICAgIH0KfQ==",
+ body: '{"displayName": "fabcli000003", "type": "MirroredDatabase", "folderId":
+ null, "definition": {"parts": [{"path": "mirroring.json", "payload": "ewogICAgInByb3BlcnRpZXMiOiB7CiAgICAgICAgInNvdXJjZSI6IHsKICAgICAgICAgICAgInR5cGUiOiAiR2VuZXJpY01pcnJvciIsCiAgICAgICAgICAgICJ0eXBlUHJvcGVydGllcyI6IHt9CiAgICAgICAgfSwKICAgICAgICAidGFyZ2V0IjogewogICAgICAgICAgICAidHlwZSI6ICJNb3VudGVkUmVsYXRpb25hbERhdGFiYXNlIiwKICAgICAgICAgICAgInR5cGVQcm9wZXJ0aWVzIjogewogICAgICAgICAgICAgICAgImZvcm1hdCI6ICJEZWx0YSIKICAgICAgICAgICAgfQogICAgICAgIH0KICAgIH0KfQ==",
"payloadType": "InlineBase64"}]}}'
headers:
Accept:
@@ -568,18 +576,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '603'
+ - '570'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/f426633d-d2f2-4a68-81c8-c80847b549b8/mirroredDatabases
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9097860d-4779-424b-9ac1-45202354d5b0/mirroredDatabases
response:
body:
- string: '{"id": "141a3be4-e52c-4188-8fa5-ef1aba2b820e", "type": "MirroredDatabase",
- "displayName": "fabcli000003", "workspaceId":
- "f426633d-d2f2-4a68-81c8-c80847b549b8"}'
+ string: '{"id": "7079b920-a6a3-43b8-aa3b-1ccda88cea7e", "type": "MirroredDatabase",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "9097860d-4779-424b-9ac1-45202354d5b0"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -588,17 +595,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '169'
+ - '161'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:32:01 GMT
+ - Wed, 20 May 2026 08:49:07 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - d0f6db56-5c52-406e-a851-5de344df16f9
+ - 2aad0d6d-d452-4b07-9775-22da8494e316
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -624,16 +631,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "f426633d-d2f2-4a68-81c8-c80847b549b8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d754b3ff-c3a9-4449-974e-f48e3ddf8f67", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9097860d-4779-424b-9ac1-45202354d5b0", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "65663ad3-201a-4e6f-a7a5-7a46f8ea458f", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -642,15 +652,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:32:01 GMT
+ - Wed, 20 May 2026 08:49:08 GMT
Pragma:
- no-cache
RequestId:
- - 6e2d44d7-4e6e-4c8d-9b49-b510d3f79813
+ - 87bc6a34-d259-4b84-963a-c3df16646b12
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -676,14 +686,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f426633d-d2f2-4a68-81c8-c80847b549b8/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9097860d-4779-424b-9ac1-45202354d5b0/items
response:
body:
- string: '{"value": [{"id": "141a3be4-e52c-4188-8fa5-ef1aba2b820e", "type": "MirroredDatabase",
- "displayName": "fabcli000003", "workspaceId":
- "f426633d-d2f2-4a68-81c8-c80847b549b8"}]}'
+ string: '{"value": [{"id": "7079b920-a6a3-43b8-aa3b-1ccda88cea7e", "type": "MirroredDatabase",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "9097860d-4779-424b-9ac1-45202354d5b0"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -692,15 +701,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '183'
+ - '172'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:32:03 GMT
+ - Wed, 20 May 2026 08:49:09 GMT
Pragma:
- no-cache
RequestId:
- - 527abfee-c87a-45fc-833a-500024d2730f
+ - 95a02ddd-8345-461d-8c30-293a494a5c3f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -726,16 +735,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "f426633d-d2f2-4a68-81c8-c80847b549b8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d754b3ff-c3a9-4449-974e-f48e3ddf8f67", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9097860d-4779-424b-9ac1-45202354d5b0", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "65663ad3-201a-4e6f-a7a5-7a46f8ea458f", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -744,15 +756,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:32:03 GMT
+ - Wed, 20 May 2026 08:49:10 GMT
Pragma:
- no-cache
RequestId:
- - f5591635-9a88-4575-907e-f62abdedd952
+ - ddc08ad3-da1c-413e-b606-5197b784f490
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -778,9 +790,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d754b3ff-c3a9-4449-974e-f48e3ddf8f67/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/65663ad3-201a-4e6f-a7a5-7a46f8ea458f/items
response:
body:
string: '{"value": []}'
@@ -796,11 +808,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:32:04 GMT
+ - Wed, 20 May 2026 08:49:11 GMT
Pragma:
- no-cache
RequestId:
- - a26d97f6-edee-4411-b3a0-f0f62b2b404e
+ - 91e55538-73dd-4a00-9ce0-b83a8c33fad5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -826,9 +838,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d754b3ff-c3a9-4449-974e-f48e3ddf8f67/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/65663ad3-201a-4e6f-a7a5-7a46f8ea458f/items
response:
body:
string: '{"value": []}'
@@ -844,11 +856,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:32:05 GMT
+ - Wed, 20 May 2026 08:49:11 GMT
Pragma:
- no-cache
RequestId:
- - 2e96bd30-f0c8-406d-8058-dce19b82f9a1
+ - 05c9ca3d-c783-4dce-a059-b1bff2bd8cca
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -874,9 +886,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d754b3ff-c3a9-4449-974e-f48e3ddf8f67/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/65663ad3-201a-4e6f-a7a5-7a46f8ea458f/items
response:
body:
string: '{"value": []}'
@@ -892,11 +904,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:32:05 GMT
+ - Wed, 20 May 2026 08:49:12 GMT
Pragma:
- no-cache
RequestId:
- - aef13018-fb8c-4590-9dda-2c325d667b46
+ - 8e396033-9a8f-49ec-a9db-d3ddcb202604
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -922,14 +934,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f426633d-d2f2-4a68-81c8-c80847b549b8/items/141a3be4-e52c-4188-8fa5-ef1aba2b820e
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9097860d-4779-424b-9ac1-45202354d5b0/items/7079b920-a6a3-43b8-aa3b-1ccda88cea7e
response:
body:
- string: '{"id": "141a3be4-e52c-4188-8fa5-ef1aba2b820e", "type": "MirroredDatabase",
- "displayName": "fabcli000003", "workspaceId":
- "f426633d-d2f2-4a68-81c8-c80847b549b8"}'
+ string: '{"id": "7079b920-a6a3-43b8-aa3b-1ccda88cea7e", "type": "MirroredDatabase",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "9097860d-4779-424b-9ac1-45202354d5b0"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -938,17 +949,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '169'
+ - '161'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:32:07 GMT
+ - Wed, 20 May 2026 08:49:13 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - a239077f-df4c-4bba-950e-35f622171dfc
+ - b2aa2ace-dcc6-43ff-8ae3-29bc78942b3a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -976,13 +987,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/f426633d-d2f2-4a68-81c8-c80847b549b8/items/141a3be4-e52c-4188-8fa5-ef1aba2b820e/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9097860d-4779-424b-9ac1-45202354d5b0/items/7079b920-a6a3-43b8-aa3b-1ccda88cea7e/getDefinition
response:
body:
string: '{"definition": {"parts": [{"path": "mirroring.json", "payload": "ew0KICAicHJvcGVydGllcyI6IHsNCiAgICAic291cmNlIjogew0KICAgICAgInR5cGUiOiAiR2VuZXJpY01pcnJvciIsDQogICAgICAidHlwZVByb3BlcnRpZXMiOiB7fQ0KICAgIH0sDQogICAgInRhcmdldCI6IHsNCiAgICAgICJ0eXBlIjogIk1vdW50ZWRSZWxhdGlvbmFsRGF0YWJhc2UiLA0KICAgICAgInR5cGVQcm9wZXJ0aWVzIjogew0KICAgICAgICAiZm9ybWF0IjogIkRlbHRhIg0KICAgICAgfQ0KICAgIH0NCiAgfQ0KfQ==",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk1pcnJvcmVkRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMyIsCiAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk1pcnJvcmVkRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMyIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
"payloadType": "InlineBase64"}]}}'
headers:
Access-Control-Expose-Headers:
@@ -992,15 +1003,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '562'
+ - '534'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:32:07 GMT
+ - Wed, 20 May 2026 08:49:14 GMT
Pragma:
- no-cache
RequestId:
- - 0aec633e-7d59-4de3-af35-0e411f831d5b
+ - a658ac15-979a-4ac4-806b-10a94342df24
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1015,10 +1026,9 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "MirroredDatabase", "displayName":
- "fabcli000003", "definition": {"parts": [{"path": "mirroring.json", "payload":
- "ew0KICAicHJvcGVydGllcyI6IHsNCiAgICAic291cmNlIjogew0KICAgICAgInR5cGUiOiAiR2VuZXJpY01pcnJvciIsDQogICAgICAidHlwZVByb3BlcnRpZXMiOiB7fQ0KICAgIH0sDQogICAgInRhcmdldCI6IHsNCiAgICAgICJ0eXBlIjogIk1vdW50ZWRSZWxhdGlvbmFsRGF0YWJhc2UiLA0KICAgICAgInR5cGVQcm9wZXJ0aWVzIjogew0KICAgICAgICAiZm9ybWF0IjogIkRlbHRhIg0KICAgICAgfQ0KICAgIH0NCiAgfQ0KfQ==",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk1pcnJvcmVkRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMyIsCiAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
+ body: '{"type": "MirroredDatabase", "displayName": "fabcli000003", "definition":
+ {"parts": [{"path": "mirroring.json", "payload": "ew0KICAicHJvcGVydGllcyI6IHsNCiAgICAic291cmNlIjogew0KICAgICAgInR5cGUiOiAiR2VuZXJpY01pcnJvciIsDQogICAgICAidHlwZVByb3BlcnRpZXMiOiB7fQ0KICAgIH0sDQogICAgInRhcmdldCI6IHsNCiAgICAgICJ0eXBlIjogIk1vdW50ZWRSZWxhdGlvbmFsRGF0YWJhc2UiLA0KICAgICAgInR5cGVQcm9wZXJ0aWVzIjogew0KICAgICAgICAiZm9ybWF0IjogIkRlbHRhIg0KICAgICAgfQ0KICAgIH0NCiAgfQ0KfQ==",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk1pcnJvcmVkRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMyIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
"payloadType": "InlineBase64"}]}, "folderId": null}'
headers:
Accept:
@@ -1028,18 +1038,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1076'
+ - '995'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/d754b3ff-c3a9-4449-974e-f48e3ddf8f67/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/65663ad3-201a-4e6f-a7a5-7a46f8ea458f/items
response:
body:
- string: '{"id": "ae8c03dd-9b88-41c8-af7f-be30b69cc0a2", "type": "MirroredDatabase",
- "displayName": "fabcli000003", "workspaceId":
- "d754b3ff-c3a9-4449-974e-f48e3ddf8f67"}'
+ string: '{"id": "96b8b814-1008-4b92-adcc-975fb04d2fc6", "type": "MirroredDatabase",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "65663ad3-201a-4e6f-a7a5-7a46f8ea458f"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1048,17 +1057,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '170'
+ - '161'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:32:09 GMT
+ - Wed, 20 May 2026 08:49:17 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - a7280425-a832-4334-9fa7-8b955dc552b2
+ - 94b9f8e4-eddf-48e3-b891-2bbb9508185a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1084,16 +1093,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "f426633d-d2f2-4a68-81c8-c80847b549b8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d754b3ff-c3a9-4449-974e-f48e3ddf8f67", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9097860d-4779-424b-9ac1-45202354d5b0", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "65663ad3-201a-4e6f-a7a5-7a46f8ea458f", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1102,15 +1114,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:32:11 GMT
+ - Wed, 20 May 2026 08:49:18 GMT
Pragma:
- no-cache
RequestId:
- - 211539b3-cb64-4a84-97e1-2a511ff586cf
+ - 2d2f0bc7-2f7d-48dc-8586-22a1bb6e5f22
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1136,14 +1148,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f426633d-d2f2-4a68-81c8-c80847b549b8/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9097860d-4779-424b-9ac1-45202354d5b0/items
response:
body:
- string: '{"value": [{"id": "141a3be4-e52c-4188-8fa5-ef1aba2b820e", "type": "MirroredDatabase",
- "displayName": "fabcli000003", "workspaceId":
- "f426633d-d2f2-4a68-81c8-c80847b549b8"}]}'
+ string: '{"value": [{"id": "7079b920-a6a3-43b8-aa3b-1ccda88cea7e", "type": "MirroredDatabase",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "9097860d-4779-424b-9ac1-45202354d5b0"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1152,15 +1163,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '183'
+ - '172'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:32:11 GMT
+ - Wed, 20 May 2026 08:49:18 GMT
Pragma:
- no-cache
RequestId:
- - 46c10948-770b-4df2-9da0-e24e84883125
+ - 963fc857-9851-45c0-a271-9ad6f340fa3b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1186,64 +1197,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f426633d-d2f2-4a68-81c8-c80847b549b8/folders?recursive=True
- response:
- body:
- string: '{"value": []}'
- headers:
- Access-Control-Expose-Headers:
- - RequestId
- Cache-Control:
- - no-store, must-revalidate, no-cache
- Content-Encoding:
- - gzip
- Content-Length:
- - '32'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:32:12 GMT
- Pragma:
- - no-cache
- RequestId:
- - eac3bf59-b189-4548-b34a-f991850a80d4
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - deny
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "f426633d-d2f2-4a68-81c8-c80847b549b8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d754b3ff-c3a9-4449-974e-f48e3ddf8f67", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9097860d-4779-424b-9ac1-45202354d5b0", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "65663ad3-201a-4e6f-a7a5-7a46f8ea458f", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1252,15 +1218,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:32:13 GMT
+ - Wed, 20 May 2026 08:49:18 GMT
Pragma:
- no-cache
RequestId:
- - 591ffb47-0a7f-47ec-8dbf-81418f5d1b29
+ - 24a6ce67-00f2-41cb-949f-4e861bcb357d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1286,14 +1252,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d754b3ff-c3a9-4449-974e-f48e3ddf8f67/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/65663ad3-201a-4e6f-a7a5-7a46f8ea458f/items
response:
body:
- string: '{"value": [{"id": "ae8c03dd-9b88-41c8-af7f-be30b69cc0a2", "type": "MirroredDatabase",
- "displayName": "fabcli000003", "workspaceId":
- "d754b3ff-c3a9-4449-974e-f48e3ddf8f67"}]}'
+ string: '{"value": [{"id": "96b8b814-1008-4b92-adcc-975fb04d2fc6", "type": "MirroredDatabase",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "65663ad3-201a-4e6f-a7a5-7a46f8ea458f"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1302,63 +1267,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '183'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:32:14 GMT
- Pragma:
- - no-cache
- RequestId:
- - ca789eee-de6b-45cb-9d12-725dfaab2e10
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - deny
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d754b3ff-c3a9-4449-974e-f48e3ddf8f67/folders?recursive=True
- response:
- body:
- string: '{"value": []}'
- headers:
- Access-Control-Expose-Headers:
- - RequestId
- Cache-Control:
- - no-store, must-revalidate, no-cache
- Content-Encoding:
- - gzip
- Content-Length:
- - '32'
+ - '173'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:32:15 GMT
+ - Wed, 20 May 2026 08:49:20 GMT
Pragma:
- no-cache
RequestId:
- - 3a726c2f-08d4-4154-9733-2fea0365cae8
+ - fbcec50f-abd5-4e5d-8bb3-614c8818e671
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1384,16 +1301,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "f426633d-d2f2-4a68-81c8-c80847b549b8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d754b3ff-c3a9-4449-974e-f48e3ddf8f67", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9097860d-4779-424b-9ac1-45202354d5b0", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "65663ad3-201a-4e6f-a7a5-7a46f8ea458f", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1402,15 +1322,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:32:16 GMT
+ - Wed, 20 May 2026 08:49:21 GMT
Pragma:
- no-cache
RequestId:
- - 74fba506-03fe-485f-a699-8738804f2bf8
+ - 93e778f5-c100-4618-8bc5-105b1d67af31
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1436,16 +1356,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f426633d-d2f2-4a68-81c8-c80847b549b8/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9097860d-4779-424b-9ac1-45202354d5b0/items
response:
body:
- string: '{"value": [{"id": "16c389ce-d60c-4b58-b282-af805a0daeaf", "type": "SQLEndpoint",
- "displayName": "fabcli000003", "description": "", "workspaceId": "f426633d-d2f2-4a68-81c8-c80847b549b8"},
- {"id": "141a3be4-e52c-4188-8fa5-ef1aba2b820e", "type": "MirroredDatabase",
- "displayName": "fabcli000003", "workspaceId":
- "f426633d-d2f2-4a68-81c8-c80847b549b8"}]}'
+ string: '{"value": [{"id": "46336123-e2b6-45cc-8857-15c1612e46fc", "type": "SQLEndpoint",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "9097860d-4779-424b-9ac1-45202354d5b0"},
+ {"id": "7079b920-a6a3-43b8-aa3b-1ccda88cea7e", "type": "MirroredDatabase",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "9097860d-4779-424b-9ac1-45202354d5b0"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1454,15 +1373,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '231'
+ - '217'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:32:17 GMT
+ - Wed, 20 May 2026 08:49:21 GMT
Pragma:
- no-cache
RequestId:
- - fed1a193-82b9-49b3-91f8-655605455dce
+ - f3c9a291-7ef9-43b1-8c43-46fbf087df13
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1490,9 +1409,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/f426633d-d2f2-4a68-81c8-c80847b549b8/items/141a3be4-e52c-4188-8fa5-ef1aba2b820e
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9097860d-4779-424b-9ac1-45202354d5b0/items/7079b920-a6a3-43b8-aa3b-1ccda88cea7e
response:
body:
string: ''
@@ -1508,11 +1427,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:32:17 GMT
+ - Wed, 20 May 2026 08:49:23 GMT
Pragma:
- no-cache
RequestId:
- - f50fa76e-cdf5-4d5b-a199-1c3249294944
+ - 914581ad-b9b5-4913-981b-ce41bdb2820d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1538,16 +1457,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "f426633d-d2f2-4a68-81c8-c80847b549b8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d754b3ff-c3a9-4449-974e-f48e3ddf8f67", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "9097860d-4779-424b-9ac1-45202354d5b0", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "65663ad3-201a-4e6f-a7a5-7a46f8ea458f", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1556,15 +1478,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2694'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:32:18 GMT
+ - Wed, 20 May 2026 08:49:23 GMT
Pragma:
- no-cache
RequestId:
- - 5c2aaa89-b99d-43b6-ada5-af45308a8071
+ - 5fcadfa4-6e40-4e23-9308-50d18bdc100d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1590,9 +1512,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/f426633d-d2f2-4a68-81c8-c80847b549b8/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9097860d-4779-424b-9ac1-45202354d5b0/items
response:
body:
string: '{"value": []}'
@@ -1608,11 +1530,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:32:19 GMT
+ - Wed, 20 May 2026 08:49:24 GMT
Pragma:
- no-cache
RequestId:
- - 9796f9af-c723-466a-b1f2-c8f372ed3438
+ - 967454bb-b59b-49c0-b5d6-1ccd180f1641
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1640,9 +1562,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/f426633d-d2f2-4a68-81c8-c80847b549b8
+ uri: https://api.fabric.microsoft.com/v1/workspaces/9097860d-4779-424b-9ac1-45202354d5b0
response:
body:
string: ''
@@ -1658,11 +1580,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:32:20 GMT
+ - Wed, 20 May 2026 08:49:25 GMT
Pragma:
- no-cache
RequestId:
- - 499f6b1f-abf4-4e34-9507-30475f09c33f
+ - f2b7e871-09b0-458b-b3ad-005e536bdc09
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1688,15 +1610,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d754b3ff-c3a9-4449-974e-f48e3ddf8f67", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "65663ad3-201a-4e6f-a7a5-7a46f8ea458f", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1705,15 +1629,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2840'
+ - '2657'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:32:20 GMT
+ - Wed, 20 May 2026 08:49:25 GMT
Pragma:
- no-cache
RequestId:
- - 93777305-d6ee-4e5f-961f-8dd8bc0f7c11
+ - fa9327aa-16fa-497e-8a27-f7a7c5679c75
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1739,14 +1663,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d754b3ff-c3a9-4449-974e-f48e3ddf8f67/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/65663ad3-201a-4e6f-a7a5-7a46f8ea458f/items
response:
body:
- string: '{"value": [{"id": "ae8c03dd-9b88-41c8-af7f-be30b69cc0a2", "type": "MirroredDatabase",
- "displayName": "fabcli000003", "workspaceId":
- "d754b3ff-c3a9-4449-974e-f48e3ddf8f67"}]}'
+ string: '{"value": [{"id": "96b8b814-1008-4b92-adcc-975fb04d2fc6", "type": "MirroredDatabase",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "65663ad3-201a-4e6f-a7a5-7a46f8ea458f"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1755,15 +1678,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '183'
+ - '173'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:32:21 GMT
+ - Wed, 20 May 2026 08:49:26 GMT
Pragma:
- no-cache
RequestId:
- - 264848bc-8552-4c02-9634-c423168857a2
+ - 1994e849-c0a5-407d-bfc0-fc8483c0de05
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1791,9 +1714,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/d754b3ff-c3a9-4449-974e-f48e3ddf8f67
+ uri: https://api.fabric.microsoft.com/v1/workspaces/65663ad3-201a-4e6f-a7a5-7a46f8ea458f
response:
body:
string: ''
@@ -1809,11 +1732,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:32:22 GMT
+ - Wed, 20 May 2026 08:49:27 GMT
Pragma:
- no-cache
RequestId:
- - 365b8659-48f1-46d2-99db-15c94a065240
+ - c5afa63c-4d8f-4b17-a35f-255b1357448f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[Notebook].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[Notebook].yaml
index e417711d2..fc3da2f1a 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[Notebook].yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[Notebook].yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:32:24 GMT
+ - Wed, 20 May 2026 08:49:27 GMT
Pragma:
- no-cache
RequestId:
- - 88995911-46ad-483a-805e-67216dbe17bd
+ - 52a1364f-9511-48dc-ae6c-e4fd322a503b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,14 +62,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -77,15 +79,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:32:24 GMT
+ - Wed, 20 May 2026 08:49:28 GMT
Pragma:
- no-cache
RequestId:
- - 8c535acb-47f8-439c-b7de-34f10664db4d
+ - f6247096-f79d-45cc-b9ef-3d23a9160120
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -111,7 +113,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -127,15 +129,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '424'
+ - '425'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:32:27 GMT
+ - Wed, 20 May 2026 08:49:33 GMT
Pragma:
- no-cache
RequestId:
- - 16051131-80e6-46b5-9a2b-4b94ebe5ea58
+ - 23a75912-b56a-4fc3-b4f3-1b3207b5c3c0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -160,16 +162,16 @@ interactions:
- keep-alive
Content-Length:
- '89'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "e6ebd6d9-5c5c-4066-862d-11624d065bc6", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "6099ac4b-b14a-4cd0-9f82-7c21babf03e5", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -178,17 +180,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '155'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:32:35 GMT
+ - Wed, 20 May 2026 08:49:41 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/e6ebd6d9-5c5c-4066-862d-11624d065bc6
+ - https://api.fabric.microsoft.com/v1/workspaces/6099ac4b-b14a-4cd0-9f82-7c21babf03e5
Pragma:
- no-cache
RequestId:
- - 5eb55bb3-58be-4c80-aa1e-b6febed407f5
+ - f784e4cf-c830-48d8-b369-ae4c770f20e2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -214,15 +216,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e6ebd6d9-5c5c-4066-862d-11624d065bc6", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "6099ac4b-b14a-4cd0-9f82-7c21babf03e5", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -231,15 +235,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2846'
+ - '2657'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:32:36 GMT
+ - Wed, 20 May 2026 08:49:42 GMT
Pragma:
- no-cache
RequestId:
- - 3ad616d6-0c6f-4644-94fa-9d45b400e98f
+ - 1d8f5c8b-b73f-4a28-babd-4fd388c23ddd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -265,15 +269,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e6ebd6d9-5c5c-4066-862d-11624d065bc6", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "6099ac4b-b14a-4cd0-9f82-7c21babf03e5", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -282,15 +288,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2846'
+ - '2657'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:32:37 GMT
+ - Wed, 20 May 2026 08:49:42 GMT
Pragma:
- no-cache
RequestId:
- - 2baf8088-6fd4-45fe-a930-76b272aa0b19
+ - 91c9902a-adef-4a88-b5f5-3f70da71ce08
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -316,7 +322,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -332,15 +338,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '429'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:32:39 GMT
+ - Wed, 20 May 2026 08:49:45 GMT
Pragma:
- no-cache
RequestId:
- - 288f82e0-014e-47cf-a3d3-a97f2cf43657
+ - 527f356c-55eb-4186-b39e-2045dde00e44
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -365,16 +371,16 @@ interactions:
- keep-alive
Content-Length:
- '89'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "4f666f56-17c4-4fa2-bee2-b6f8b512bf6b", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -383,17 +389,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '165'
+ - '154'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:32:47 GMT
+ - Wed, 20 May 2026 08:49:52 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a
+ - https://api.fabric.microsoft.com/v1/workspaces/4f666f56-17c4-4fa2-bee2-b6f8b512bf6b
Pragma:
- no-cache
RequestId:
- - f95d4900-0c8f-4749-a354-bf6eb6b2cfa5
+ - 9fe7ec38-b231-4f94-95f9-002de918e6d8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -419,16 +425,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e6ebd6d9-5c5c-4066-862d-11624d065bc6", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "6099ac4b-b14a-4cd0-9f82-7c21babf03e5", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4f666f56-17c4-4fa2-bee2-b6f8b512bf6b", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -437,15 +446,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:32:47 GMT
+ - Wed, 20 May 2026 08:49:53 GMT
Pragma:
- no-cache
RequestId:
- - 5c6f4316-4e3a-49c7-92a0-0bff3d72020b
+ - a9ba2597-5bcc-4c9d-adaa-71edeb0bfbae
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -471,9 +480,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e6ebd6d9-5c5c-4066-862d-11624d065bc6/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6099ac4b-b14a-4cd0-9f82-7c21babf03e5/items
response:
body:
string: '{"value": []}'
@@ -489,11 +498,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:32:49 GMT
+ - Wed, 20 May 2026 08:49:54 GMT
Pragma:
- no-cache
RequestId:
- - 74b73271-4d1c-4360-93db-0e07e3d7f9a1
+ - 1838ceb2-f872-4b15-8997-a6e7b0007d33
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -519,9 +528,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e6ebd6d9-5c5c-4066-862d-11624d065bc6/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6099ac4b-b14a-4cd0-9f82-7c21babf03e5/items
response:
body:
string: '{"value": []}'
@@ -537,11 +546,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:32:49 GMT
+ - Wed, 20 May 2026 08:49:55 GMT
Pragma:
- no-cache
RequestId:
- - d15dc654-c755-4659-9481-bff5a9d60b48
+ - e25eef83-abb7-4b85-9723-e236db667028
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -556,7 +565,9 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000003", "type": "Notebook", "folderId": null, "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", "payloadType": "InlineBase64"}]}}'
+ body: '{"displayName": "fabcli000003", "type": "Notebook", "folderId": null, "definition":
+ {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
+ "payloadType": "InlineBase64"}]}}'
headers:
Accept:
- '*/*'
@@ -566,13 +577,12 @@ interactions:
- keep-alive
Content-Length:
- '731'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/e6ebd6d9-5c5c-4066-862d-11624d065bc6/notebooks
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6099ac4b-b14a-4cd0-9f82-7c21babf03e5/notebooks
response:
body:
string: 'null'
@@ -588,15 +598,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:32:50 GMT
+ - Wed, 20 May 2026 08:49:57 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4eba3d63-14ff-42b8-afcf-8364f913b1af
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dea3bf78-d151-4165-a4bc-c5295b943343
Pragma:
- no-cache
RequestId:
- - c706bac4-b8ca-4a22-9047-71868fd2ea28
+ - 97ac72af-778f-4083-b8fd-6ac73692202b
Retry-After:
- '20'
Strict-Transport-Security:
@@ -610,7 +620,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - 4eba3d63-14ff-42b8-afcf-8364f913b1af
+ - dea3bf78-d151-4165-a4bc-c5295b943343
status:
code: 202
message: Accepted
@@ -626,13 +636,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4eba3d63-14ff-42b8-afcf-8364f913b1af
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dea3bf78-d151-4165-a4bc-c5295b943343
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:32:50.9174029",
- "lastUpdatedTimeUtc": "2026-02-06T07:32:54.2936683", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:49:56.8887901",
+ "lastUpdatedTimeUtc": "2026-05-20T08:49:58.3381567", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -646,13 +656,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:33:13 GMT
+ - Wed, 20 May 2026 08:50:18 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4eba3d63-14ff-42b8-afcf-8364f913b1af/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dea3bf78-d151-4165-a4bc-c5295b943343/result
Pragma:
- no-cache
RequestId:
- - 714272ad-2a9a-4957-8c41-fe084b9d0727
+ - 95e502d7-3aba-472f-ae04-7f4c4674686b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -660,7 +670,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - 4eba3d63-14ff-42b8-afcf-8364f913b1af
+ - dea3bf78-d151-4165-a4bc-c5295b943343
status:
code: 200
message: OK
@@ -676,14 +686,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4eba3d63-14ff-42b8-afcf-8364f913b1af/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dea3bf78-d151-4165-a4bc-c5295b943343/result
response:
body:
- string: '{"id": "458625d1-d48e-442e-864f-4614a2492c15", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "e6ebd6d9-5c5c-4066-862d-11624d065bc6"}'
+ string: '{"id": "44c1ec6f-3ee7-46ea-9dbc-543db4cb9624", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "6099ac4b-b14a-4cd0-9f82-7c21babf03e5"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -694,11 +703,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 07:33:14 GMT
+ - Wed, 20 May 2026 08:50:18 GMT
Pragma:
- no-cache
RequestId:
- - 8c85e5a1-11d6-4791-bb98-93bc1ed0b0ac
+ - f6c027ad-6c09-4293-b759-bfd64950fcde
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -722,16 +731,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e6ebd6d9-5c5c-4066-862d-11624d065bc6", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "6099ac4b-b14a-4cd0-9f82-7c21babf03e5", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4f666f56-17c4-4fa2-bee2-b6f8b512bf6b", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -740,15 +752,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:33:15 GMT
+ - Wed, 20 May 2026 08:50:20 GMT
Pragma:
- no-cache
RequestId:
- - d22a0a1d-374d-4b7d-bdfe-31a85004e0ee
+ - 37e30031-88e1-4ced-a53e-5be45c5a61a3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -774,14 +786,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e6ebd6d9-5c5c-4066-862d-11624d065bc6/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6099ac4b-b14a-4cd0-9f82-7c21babf03e5/items
response:
body:
- string: '{"value": [{"id": "458625d1-d48e-442e-864f-4614a2492c15", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "e6ebd6d9-5c5c-4066-862d-11624d065bc6"}]}'
+ string: '{"value": [{"id": "44c1ec6f-3ee7-46ea-9dbc-543db4cb9624", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "6099ac4b-b14a-4cd0-9f82-7c21babf03e5"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -790,15 +801,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '176'
+ - '165'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:33:15 GMT
+ - Wed, 20 May 2026 08:50:20 GMT
Pragma:
- no-cache
RequestId:
- - 3bb525ac-32cd-4280-babb-4848c6adccee
+ - 89bf75b0-bbd2-4ad1-8b5d-26a3a3fbd0d5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -824,16 +835,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e6ebd6d9-5c5c-4066-862d-11624d065bc6", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "6099ac4b-b14a-4cd0-9f82-7c21babf03e5", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4f666f56-17c4-4fa2-bee2-b6f8b512bf6b", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -842,15 +856,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:33:16 GMT
+ - Wed, 20 May 2026 08:50:21 GMT
Pragma:
- no-cache
RequestId:
- - ba1992c1-998e-4098-97b3-361f82a7fd3e
+ - 92aa1294-0a60-4c2b-ba3c-f2d8af0a93f4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -876,9 +890,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4f666f56-17c4-4fa2-bee2-b6f8b512bf6b/items
response:
body:
string: '{"value": []}'
@@ -894,11 +908,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:33:17 GMT
+ - Wed, 20 May 2026 08:50:22 GMT
Pragma:
- no-cache
RequestId:
- - ca760617-1454-4e90-9f48-059a7ac8658d
+ - c6566187-abae-42ac-b5ee-014ceecdd587
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -924,9 +938,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4f666f56-17c4-4fa2-bee2-b6f8b512bf6b/items
response:
body:
string: '{"value": []}'
@@ -942,11 +956,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:33:18 GMT
+ - Wed, 20 May 2026 08:50:24 GMT
Pragma:
- no-cache
RequestId:
- - 60e57bec-3af1-4f5e-bc32-10b026067649
+ - 07d1d2b3-2ebb-4600-9d55-37b62edd9c88
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -972,9 +986,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4f666f56-17c4-4fa2-bee2-b6f8b512bf6b/items
response:
body:
string: '{"value": []}'
@@ -990,11 +1004,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:33:19 GMT
+ - Wed, 20 May 2026 08:50:24 GMT
Pragma:
- no-cache
RequestId:
- - f7441aac-4c1f-4a21-91bd-98159d8864f6
+ - 8b4ec57e-0ae1-4da9-bee3-dd22247be472
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1020,14 +1034,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e6ebd6d9-5c5c-4066-862d-11624d065bc6/items/458625d1-d48e-442e-864f-4614a2492c15
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6099ac4b-b14a-4cd0-9f82-7c21babf03e5/items/44c1ec6f-3ee7-46ea-9dbc-543db4cb9624
response:
body:
- string: '{"id": "458625d1-d48e-442e-864f-4614a2492c15", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "e6ebd6d9-5c5c-4066-862d-11624d065bc6"}'
+ string: '{"id": "44c1ec6f-3ee7-46ea-9dbc-543db4cb9624", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "6099ac4b-b14a-4cd0-9f82-7c21babf03e5"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1036,17 +1049,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '165'
+ - '154'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:33:20 GMT
+ - Wed, 20 May 2026 08:50:25 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 8aa00818-4a44-4b31-9d37-7f2f62338d14
+ - ebc77aa9-8863-4888-b16e-72b97ecd545b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1074,9 +1087,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/e6ebd6d9-5c5c-4066-862d-11624d065bc6/items/458625d1-d48e-442e-864f-4614a2492c15/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6099ac4b-b14a-4cd0-9f82-7c21babf03e5/items/44c1ec6f-3ee7-46ea-9dbc-543db4cb9624/getDefinition
response:
body:
string: 'null'
@@ -1092,13 +1105,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:33:20 GMT
+ - Wed, 20 May 2026 08:50:26 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2181f6d5-55e5-4ea7-8345-364da7705f54
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8c5e95e1-ca78-4165-a76b-8be8bde25b22
Pragma:
- no-cache
RequestId:
- - ea8fb8da-3cca-4c28-ad71-75834da16e39
+ - e922fac8-81f9-4357-a635-32dc78d89100
Retry-After:
- '20'
Strict-Transport-Security:
@@ -1112,7 +1125,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - 2181f6d5-55e5-4ea7-8345-364da7705f54
+ - 8c5e95e1-ca78-4165-a76b-8be8bde25b22
status:
code: 202
message: Accepted
@@ -1128,13 +1141,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2181f6d5-55e5-4ea7-8345-364da7705f54
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8c5e95e1-ca78-4165-a76b-8be8bde25b22
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:33:21.2998395",
- "lastUpdatedTimeUtc": "2026-02-06T07:33:21.5967366", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:50:26.6202893",
+ "lastUpdatedTimeUtc": "2026-05-20T08:50:27.317546", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -1148,13 +1161,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:33:43 GMT
+ - Wed, 20 May 2026 08:50:47 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2181f6d5-55e5-4ea7-8345-364da7705f54/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8c5e95e1-ca78-4165-a76b-8be8bde25b22/result
Pragma:
- no-cache
RequestId:
- - 537b7e95-6c52-4121-8ae5-24c032632dd4
+ - 2438a12d-38eb-409d-b8b1-68a230308e60
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1162,7 +1175,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - 2181f6d5-55e5-4ea7-8345-364da7705f54
+ - 8c5e95e1-ca78-4165-a76b-8be8bde25b22
status:
code: 200
message: OK
@@ -1178,14 +1191,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2181f6d5-55e5-4ea7-8345-364da7705f54/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8c5e95e1-ca78-4165-a76b-8be8bde25b22/result
response:
body:
string: '{"definition": {"parts": [{"path": "notebook-content.py", "payload":
"IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
"payloadType": "InlineBase64"}]}}'
headers:
Access-Control-Expose-Headers:
@@ -1197,11 +1210,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 07:33:43 GMT
+ - Wed, 20 May 2026 08:50:47 GMT
Pragma:
- no-cache
RequestId:
- - 629be783-6eb4-4c72-8198-6643348d12a3
+ - 78509208-d222-487d-bb3c-c547f81a3a5f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -1214,7 +1227,10 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "Notebook", "displayName": "fabcli000003", "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}, "folderId": null}'
+ body: '{"type": "Notebook", "displayName": "fabcli000003", "definition": {"parts":
+ [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
+ "payloadType": "InlineBase64"}]}, "folderId": null}'
headers:
Accept:
- '*/*'
@@ -1223,14 +1239,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1252'
-
+ - '1204'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4f666f56-17c4-4fa2-bee2-b6f8b512bf6b/items
response:
body:
string: 'null'
@@ -1246,15 +1261,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:33:45 GMT
+ - Wed, 20 May 2026 08:50:49 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d73c3c23-4233-4646-96f6-4ab5375ce317
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/17bb6ac0-f100-40a9-9732-a2a578e6bedf
Pragma:
- no-cache
RequestId:
- - 5a050cb2-96b1-4b45-bf4c-20ee893dfd6a
+ - 4e8f5352-960a-44a8-9b4c-759c03fe54ae
Retry-After:
- '20'
Strict-Transport-Security:
@@ -1268,7 +1283,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - d73c3c23-4233-4646-96f6-4ab5375ce317
+ - 17bb6ac0-f100-40a9-9732-a2a578e6bedf
status:
code: 202
message: Accepted
@@ -1284,13 +1299,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d73c3c23-4233-4646-96f6-4ab5375ce317
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/17bb6ac0-f100-40a9-9732-a2a578e6bedf
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:33:45.2096724",
- "lastUpdatedTimeUtc": "2026-02-06T07:33:46.8346822", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:50:49.9000577",
+ "lastUpdatedTimeUtc": "2026-05-20T08:50:51.3316034", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -1304,13 +1319,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:34:07 GMT
+ - Wed, 20 May 2026 08:51:10 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d73c3c23-4233-4646-96f6-4ab5375ce317/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/17bb6ac0-f100-40a9-9732-a2a578e6bedf/result
Pragma:
- no-cache
RequestId:
- - 43b1b9e1-724d-408b-b023-9da62cca7c06
+ - 31faa5b6-5ef4-4203-8ac8-956d06f8a91f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1318,7 +1333,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - d73c3c23-4233-4646-96f6-4ab5375ce317
+ - 17bb6ac0-f100-40a9-9732-a2a578e6bedf
status:
code: 200
message: OK
@@ -1334,14 +1349,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d73c3c23-4233-4646-96f6-4ab5375ce317/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/17bb6ac0-f100-40a9-9732-a2a578e6bedf/result
response:
body:
- string: '{"id": "7409ba6d-a093-4a31-b285-779b30520ee5", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a"}'
+ string: '{"id": "cfab0fb4-0fe9-4d58-be15-73031f7e1562", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "4f666f56-17c4-4fa2-bee2-b6f8b512bf6b"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1352,11 +1366,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 07:34:07 GMT
+ - Wed, 20 May 2026 08:51:12 GMT
Pragma:
- no-cache
RequestId:
- - cf98c719-339c-4e29-9477-d9ef27e48c3b
+ - ddec7593-666a-44ed-9664-648768bcc7d2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -1380,16 +1394,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e6ebd6d9-5c5c-4066-862d-11624d065bc6", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "6099ac4b-b14a-4cd0-9f82-7c21babf03e5", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4f666f56-17c4-4fa2-bee2-b6f8b512bf6b", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1398,15 +1415,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:34:09 GMT
+ - Wed, 20 May 2026 08:51:12 GMT
Pragma:
- no-cache
RequestId:
- - e0d000d8-4d6e-419b-b3a7-25aa18213cf0
+ - ca860895-accd-4e42-933a-0272ceb0fe1e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1432,14 +1449,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e6ebd6d9-5c5c-4066-862d-11624d065bc6/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6099ac4b-b14a-4cd0-9f82-7c21babf03e5/items
response:
body:
- string: '{"value": [{"id": "458625d1-d48e-442e-864f-4614a2492c15", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "e6ebd6d9-5c5c-4066-862d-11624d065bc6"}]}'
+ string: '{"value": [{"id": "44c1ec6f-3ee7-46ea-9dbc-543db4cb9624", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "6099ac4b-b14a-4cd0-9f82-7c21babf03e5"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1448,63 +1464,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '176'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:34:10 GMT
- Pragma:
- - no-cache
- RequestId:
- - ea840f5f-9f62-4a6f-89e8-7cd84b5f4834
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - deny
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e6ebd6d9-5c5c-4066-862d-11624d065bc6/folders?recursive=True
- response:
- body:
- string: '{"value": []}'
- headers:
- Access-Control-Expose-Headers:
- - RequestId
- Cache-Control:
- - no-store, must-revalidate, no-cache
- Content-Encoding:
- - gzip
- Content-Length:
- - '32'
+ - '165'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:34:10 GMT
+ - Wed, 20 May 2026 08:51:14 GMT
Pragma:
- no-cache
RequestId:
- - 48d57f30-de37-4bb8-b79a-23f15b44d84f
+ - 4e72ee76-16c0-41d8-9503-2e1f99fcaa32
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1530,66 +1498,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e6ebd6d9-5c5c-4066-862d-11624d065bc6", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
- headers:
- Access-Control-Expose-Headers:
- - RequestId
- Cache-Control:
- - no-store, must-revalidate, no-cache
- Content-Encoding:
- - gzip
- Content-Length:
- - '2882'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:34:11 GMT
- Pragma:
- - no-cache
- RequestId:
- - 5bd955b5-42dd-4368-9902-cd230eef39d4
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - deny
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a/items
- response:
- body:
- string: '{"value": [{"id": "7409ba6d-a093-4a31-b285-779b30520ee5", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "6099ac4b-b14a-4cd0-9f82-7c21babf03e5", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4f666f56-17c4-4fa2-bee2-b6f8b512bf6b", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1598,15 +1519,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:34:12 GMT
+ - Wed, 20 May 2026 08:51:15 GMT
Pragma:
- no-cache
RequestId:
- - 8e633a38-1b3e-4535-b046-747db0833e6f
+ - ac135efd-834e-4e26-b3b1-c152b7a1f115
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1632,12 +1553,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4f666f56-17c4-4fa2-bee2-b6f8b512bf6b/items
response:
body:
- string: '{"value": []}'
+ string: '{"value": [{"id": "cfab0fb4-0fe9-4d58-be15-73031f7e1562", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "4f666f56-17c4-4fa2-bee2-b6f8b512bf6b"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1646,15 +1568,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '32'
+ - '164'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:34:13 GMT
+ - Wed, 20 May 2026 08:51:16 GMT
Pragma:
- no-cache
RequestId:
- - 9bd71f0a-6637-4d5b-bf7c-787bab53e163
+ - fb8691e4-e140-4492-9798-488757ad3a12
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1680,16 +1602,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e6ebd6d9-5c5c-4066-862d-11624d065bc6", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "6099ac4b-b14a-4cd0-9f82-7c21babf03e5", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4f666f56-17c4-4fa2-bee2-b6f8b512bf6b", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1698,15 +1623,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:34:13 GMT
+ - Wed, 20 May 2026 08:51:16 GMT
Pragma:
- no-cache
RequestId:
- - eabc161b-3dfd-456d-9107-d974f2f95064
+ - 832d845c-58c4-4802-8da1-4732b96ca6e6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1732,14 +1657,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e6ebd6d9-5c5c-4066-862d-11624d065bc6/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6099ac4b-b14a-4cd0-9f82-7c21babf03e5/items
response:
body:
- string: '{"value": [{"id": "458625d1-d48e-442e-864f-4614a2492c15", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "e6ebd6d9-5c5c-4066-862d-11624d065bc6"}]}'
+ string: '{"value": [{"id": "44c1ec6f-3ee7-46ea-9dbc-543db4cb9624", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "6099ac4b-b14a-4cd0-9f82-7c21babf03e5"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1748,15 +1672,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '176'
+ - '165'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:34:14 GMT
+ - Wed, 20 May 2026 08:51:18 GMT
Pragma:
- no-cache
RequestId:
- - 3b521090-5865-4a5e-9653-9f7e045ea285
+ - 91442004-8d3a-468a-9061-3305ee66c59b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1784,9 +1708,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/e6ebd6d9-5c5c-4066-862d-11624d065bc6/items/458625d1-d48e-442e-864f-4614a2492c15
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6099ac4b-b14a-4cd0-9f82-7c21babf03e5/items/44c1ec6f-3ee7-46ea-9dbc-543db4cb9624
response:
body:
string: ''
@@ -1802,11 +1726,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:34:15 GMT
+ - Wed, 20 May 2026 08:51:19 GMT
Pragma:
- no-cache
RequestId:
- - 698f091e-ddb2-4fef-bc1d-fc0e014a4525
+ - 1c3ab0e6-1af2-42ae-9cc2-22a3712e8c8a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1832,16 +1756,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e6ebd6d9-5c5c-4066-862d-11624d065bc6", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "6099ac4b-b14a-4cd0-9f82-7c21babf03e5", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4f666f56-17c4-4fa2-bee2-b6f8b512bf6b", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1850,15 +1777,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2693'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:34:16 GMT
+ - Wed, 20 May 2026 08:51:19 GMT
Pragma:
- no-cache
RequestId:
- - c0aa0c2b-01ac-4316-9990-7ae200962a78
+ - 37e23b94-4f29-4776-8b56-a50b5a50bce6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1884,9 +1811,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e6ebd6d9-5c5c-4066-862d-11624d065bc6/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6099ac4b-b14a-4cd0-9f82-7c21babf03e5/items
response:
body:
string: '{"value": []}'
@@ -1902,11 +1829,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:34:17 GMT
+ - Wed, 20 May 2026 08:51:20 GMT
Pragma:
- no-cache
RequestId:
- - 0484ed85-1196-492c-8dda-940526936d8b
+ - 85e4122a-48b7-4b54-90f7-3d1907d9b542
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1934,9 +1861,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/e6ebd6d9-5c5c-4066-862d-11624d065bc6
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6099ac4b-b14a-4cd0-9f82-7c21babf03e5
response:
body:
string: ''
@@ -1952,11 +1879,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:34:17 GMT
+ - Wed, 20 May 2026 08:51:20 GMT
Pragma:
- no-cache
RequestId:
- - 2db8bc3e-484e-4c00-9eb5-0e35c432ac75
+ - 490e2d74-7a1f-45fb-a698-357eca2552b4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1982,15 +1909,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "4f666f56-17c4-4fa2-bee2-b6f8b512bf6b", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1999,15 +1928,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2843'
+ - '2657'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:34:18 GMT
+ - Wed, 20 May 2026 08:51:22 GMT
Pragma:
- no-cache
RequestId:
- - 9a3ce03b-e99b-48a7-8bde-483f82cd5ed2
+ - 5abf119c-016d-4e2c-abc3-071ea46c565c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2033,14 +1962,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4f666f56-17c4-4fa2-bee2-b6f8b512bf6b/items
response:
body:
- string: '{"value": [{"id": "7409ba6d-a093-4a31-b285-779b30520ee5", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a"}]}'
+ string: '{"value": [{"id": "cfab0fb4-0fe9-4d58-be15-73031f7e1562", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "4f666f56-17c4-4fa2-bee2-b6f8b512bf6b"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2049,15 +1977,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '164'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:34:19 GMT
+ - Wed, 20 May 2026 08:51:23 GMT
Pragma:
- no-cache
RequestId:
- - 803f485e-1af6-45a3-adb5-cd978049e017
+ - c8361e8c-73cb-4d72-bde4-92bebc7c66c6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2085,9 +2013,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a
+ uri: https://api.fabric.microsoft.com/v1/workspaces/4f666f56-17c4-4fa2-bee2-b6f8b512bf6b
response:
body:
string: ''
@@ -2103,11 +2031,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:34:20 GMT
+ - Wed, 20 May 2026 08:51:23 GMT
Pragma:
- no-cache
RequestId:
- - bb8418d7-daec-4a30-9555-409675537808
+ - 34bf4c54-2703-46fc-be0a-4d68543bebbf
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[Reflex].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[Reflex].yaml
index d5bbe3b7f..21ed7ecfe 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[Reflex].yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[Reflex].yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:34:21 GMT
+ - Wed, 20 May 2026 08:51:25 GMT
Pragma:
- no-cache
RequestId:
- - e4341515-1d5e-4659-8964-da285a03e280
+ - 7c08579d-6492-4b0e-b6c9-dcfa02de27ce
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,14 +62,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -77,15 +79,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:34:21 GMT
+ - Wed, 20 May 2026 08:51:26 GMT
Pragma:
- no-cache
RequestId:
- - aa87d1a0-e5ec-4fa9-8d7b-61387adec46f
+ - 994e69fe-f9c0-493c-8d41-d4fb1eb91462
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -111,7 +113,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -127,15 +129,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '424'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:34:31 GMT
+ - Wed, 20 May 2026 08:51:30 GMT
Pragma:
- no-cache
RequestId:
- - 06e94dc7-9f5f-4bee-9b75-1c8eb8c830a8
+ - e65730d2-7e37-42a5-bb00-a703d84d61d1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -150,8 +152,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000001", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -160,16 +161,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "99906f42-7ae9-4619-b281-0d92e1a43c1a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "540cd160-f00f-4169-8f22-9509e1430451", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -178,17 +180,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '167'
+ - '155'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:34:40 GMT
+ - Wed, 20 May 2026 08:51:39 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/99906f42-7ae9-4619-b281-0d92e1a43c1a
+ - https://api.fabric.microsoft.com/v1/workspaces/540cd160-f00f-4169-8f22-9509e1430451
Pragma:
- no-cache
RequestId:
- - 319cf893-e40e-4703-a542-136e3065c4f0
+ - 04c60815-a079-4a27-bc59-3e60be988fa8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -214,15 +216,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "99906f42-7ae9-4619-b281-0d92e1a43c1a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "540cd160-f00f-4169-8f22-9509e1430451", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -231,15 +235,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2844'
+ - '2660'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:34:40 GMT
+ - Wed, 20 May 2026 08:51:40 GMT
Pragma:
- no-cache
RequestId:
- - 88be92b2-c2f4-429a-a829-c91ca3d6bdfb
+ - f859c69b-de91-4235-8aac-22a4cc2f4600
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -265,15 +269,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "99906f42-7ae9-4619-b281-0d92e1a43c1a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "540cd160-f00f-4169-8f22-9509e1430451", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -282,15 +288,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2844'
+ - '2660'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:34:40 GMT
+ - Wed, 20 May 2026 08:51:41 GMT
Pragma:
- no-cache
RequestId:
- - 4916161b-71c3-4c5f-a407-b1691bcfd690
+ - 4373ee74-3a7f-46bb-bf2f-dd8c768fb9c0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -316,7 +322,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -332,15 +338,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '427'
+ - '425'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:34:46 GMT
+ - Wed, 20 May 2026 08:51:45 GMT
Pragma:
- no-cache
RequestId:
- - 649516dc-7adb-4132-ac89-18c4cf631e3b
+ - f49ceaa3-06a5-43eb-9c2d-9d2ee267ee3c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -355,8 +361,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000002", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -365,16 +370,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "edaeec11-8a7a-4141-a502-fa6ada85d14c", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "62d00615-3eba-4970-8309-bfe58529cada", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -383,17 +389,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '156'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:34:54 GMT
+ - Wed, 20 May 2026 08:51:51 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/edaeec11-8a7a-4141-a502-fa6ada85d14c
+ - https://api.fabric.microsoft.com/v1/workspaces/62d00615-3eba-4970-8309-bfe58529cada
Pragma:
- no-cache
RequestId:
- - 4dba4d8c-e304-4ab4-a6ce-12d11ad981ad
+ - 74e7cd12-9ac7-4ee0-beb8-24ebb8b1048d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -419,16 +425,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "99906f42-7ae9-4619-b281-0d92e1a43c1a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "edaeec11-8a7a-4141-a502-fa6ada85d14c", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "540cd160-f00f-4169-8f22-9509e1430451", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "62d00615-3eba-4970-8309-bfe58529cada", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -437,15 +446,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:34:55 GMT
+ - Wed, 20 May 2026 08:51:52 GMT
Pragma:
- no-cache
RequestId:
- - d49d61a7-a611-4dcc-b4db-c1ed7af3ce73
+ - e6c5c4bd-edba-4bad-b490-2d3996bb7792
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -471,9 +480,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/99906f42-7ae9-4619-b281-0d92e1a43c1a/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/540cd160-f00f-4169-8f22-9509e1430451/items
response:
body:
string: '{"value": []}'
@@ -489,11 +498,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:34:56 GMT
+ - Wed, 20 May 2026 08:51:52 GMT
Pragma:
- no-cache
RequestId:
- - 68522796-631b-4d87-a167-7806514452e1
+ - 2752f055-73bd-4f3a-baa1-32a9d85f5466
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -519,9 +528,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/99906f42-7ae9-4619-b281-0d92e1a43c1a/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/540cd160-f00f-4169-8f22-9509e1430451/items
response:
body:
string: '{"value": []}'
@@ -537,11 +546,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:34:56 GMT
+ - Wed, 20 May 2026 08:51:53 GMT
Pragma:
- no-cache
RequestId:
- - 85e84eb9-d1e4-4241-bca5-38e13a6c166d
+ - 33d1e273-1b17-48dc-9806-545819474430
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -556,8 +565,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000003", "type":
- "Reflex", "folderId": null}'
+ body: '{"displayName": "fabcli000003", "type": "Reflex", "folderId": null}'
headers:
Accept:
- '*/*'
@@ -566,17 +574,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '104'
+ - '71'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/99906f42-7ae9-4619-b281-0d92e1a43c1a/reflexes
+ uri: https://api.fabric.microsoft.com/v1/workspaces/540cd160-f00f-4169-8f22-9509e1430451/reflexes
response:
body:
- string: '{"id": "53452f57-fff9-4379-adc8-8b31afc3cb18", "type": "Reflex", "displayName":
- "fabcli000003", "workspaceId": "99906f42-7ae9-4619-b281-0d92e1a43c1a"}'
+ string: '{"id": "732ec4a6-60d1-4523-9aa8-49470a632058", "type": "Reflex", "displayName":
+ "fabcli000003", "description": "", "workspaceId": "540cd160-f00f-4169-8f22-9509e1430451"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -585,17 +593,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '167'
+ - '155'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:34:59 GMT
+ - Wed, 20 May 2026 08:51:57 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - d5244a4f-892f-4643-9a13-6670e6e213f5
+ - 6ee558fb-5ddb-4e2e-a014-16d747f95403
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -621,16 +629,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "99906f42-7ae9-4619-b281-0d92e1a43c1a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "edaeec11-8a7a-4141-a502-fa6ada85d14c", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "540cd160-f00f-4169-8f22-9509e1430451", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "62d00615-3eba-4970-8309-bfe58529cada", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -639,15 +650,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:00 GMT
+ - Wed, 20 May 2026 08:51:58 GMT
Pragma:
- no-cache
RequestId:
- - 1985e51b-de56-4d40-80a6-c8bfde06915c
+ - ff94d2bc-6784-454a-b551-5dfbd52ee824
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -673,14 +684,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/99906f42-7ae9-4619-b281-0d92e1a43c1a/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/540cd160-f00f-4169-8f22-9509e1430451/items
response:
body:
- string: '{"value": [{"id": "53452f57-fff9-4379-adc8-8b31afc3cb18", "type": "Reflex",
- "displayName": "fabcli000003", "workspaceId":
- "99906f42-7ae9-4619-b281-0d92e1a43c1a"}]}'
+ string: '{"value": [{"id": "732ec4a6-60d1-4523-9aa8-49470a632058", "type": "Reflex",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "540cd160-f00f-4169-8f22-9509e1430451"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -689,15 +699,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '166'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:00 GMT
+ - Wed, 20 May 2026 08:51:59 GMT
Pragma:
- no-cache
RequestId:
- - c1b9c2f7-b746-423b-bee0-900b90275c4c
+ - 1ea60121-0a9e-4e12-afcd-65dcdd51abd0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -723,16 +733,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "99906f42-7ae9-4619-b281-0d92e1a43c1a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "edaeec11-8a7a-4141-a502-fa6ada85d14c", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "540cd160-f00f-4169-8f22-9509e1430451", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "62d00615-3eba-4970-8309-bfe58529cada", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -741,15 +754,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:02 GMT
+ - Wed, 20 May 2026 08:52:00 GMT
Pragma:
- no-cache
RequestId:
- - ab42ed67-d2a4-473c-a845-7fcd6d5e5ecb
+ - f9018250-2805-49e1-b99e-5a89d8f6c0ce
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -775,9 +788,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/edaeec11-8a7a-4141-a502-fa6ada85d14c/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/62d00615-3eba-4970-8309-bfe58529cada/items
response:
body:
string: '{"value": []}'
@@ -793,11 +806,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:02 GMT
+ - Wed, 20 May 2026 08:52:01 GMT
Pragma:
- no-cache
RequestId:
- - bc0b9a10-77e3-4ea4-b76d-82de8adca83e
+ - 97a90560-c5c2-4a4d-8d5c-0e60cd8850f4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -823,9 +836,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/edaeec11-8a7a-4141-a502-fa6ada85d14c/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/62d00615-3eba-4970-8309-bfe58529cada/items
response:
body:
string: '{"value": []}'
@@ -841,11 +854,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:03 GMT
+ - Wed, 20 May 2026 08:52:01 GMT
Pragma:
- no-cache
RequestId:
- - b143d0c9-8005-4533-b304-818241aab277
+ - 5eba54f5-e6cb-4256-b423-6ed4fea77930
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -871,9 +884,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/edaeec11-8a7a-4141-a502-fa6ada85d14c/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/62d00615-3eba-4970-8309-bfe58529cada/items
response:
body:
string: '{"value": []}'
@@ -889,11 +902,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:03 GMT
+ - Wed, 20 May 2026 08:52:02 GMT
Pragma:
- no-cache
RequestId:
- - 3106e24c-4b6d-40f8-95b4-7af0b1eaf118
+ - 2bb7fcbc-b621-4166-869a-84293aa6899a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -919,13 +932,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/99906f42-7ae9-4619-b281-0d92e1a43c1a/items/53452f57-fff9-4379-adc8-8b31afc3cb18
+ uri: https://api.fabric.microsoft.com/v1/workspaces/540cd160-f00f-4169-8f22-9509e1430451/items/732ec4a6-60d1-4523-9aa8-49470a632058
response:
body:
- string: '{"id": "53452f57-fff9-4379-adc8-8b31afc3cb18", "type": "Reflex", "displayName":
- "fabcli000003", "workspaceId": "99906f42-7ae9-4619-b281-0d92e1a43c1a"}'
+ string: '{"id": "732ec4a6-60d1-4523-9aa8-49470a632058", "type": "Reflex", "displayName":
+ "fabcli000003", "description": "", "workspaceId": "540cd160-f00f-4169-8f22-9509e1430451"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -934,17 +947,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '167'
+ - '155'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:04 GMT
+ - Wed, 20 May 2026 08:52:03 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - eb606584-8e5e-4f65-8d3c-7899dc7b31be
+ - a149d181-ed74-418d-a2a5-b936fe298846
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -972,13 +985,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/99906f42-7ae9-4619-b281-0d92e1a43c1a/items/53452f57-fff9-4379-adc8-8b31afc3cb18/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/540cd160-f00f-4169-8f22-9509e1430451/items/732ec4a6-60d1-4523-9aa8-49470a632058/getDefinition
response:
body:
string: '{"definition": {"parts": [{"path": "ReflexEntities.json", "payload":
- "W10=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlJlZmxleCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
+ "W10=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlJlZmxleCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
"payloadType": "InlineBase64"}]}}'
headers:
Access-Control-Expose-Headers:
@@ -988,15 +1001,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '425'
+ - '394'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:07 GMT
+ - Wed, 20 May 2026 08:52:06 GMT
Pragma:
- no-cache
RequestId:
- - 1abf70aa-f701-4cc5-bba3-b9d213370c75
+ - 3ff172e1-b60a-4a67-9995-e32a9db9ca48
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1011,9 +1024,9 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "Reflex", "displayName": "fabcli000003",
- "definition": {"parts": [{"path": "ReflexEntities.json", "payload": "W10=",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlJlZmxleCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
+ body: '{"type": "Reflex", "displayName": "fabcli000003", "definition": {"parts":
+ [{"path": "ReflexEntities.json", "payload": "W10=", "payloadType": "InlineBase64"},
+ {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlJlZmxleCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
"payloadType": "InlineBase64"}]}, "folderId": null}'
headers:
Accept:
@@ -1023,17 +1036,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '735'
+ - '650'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/edaeec11-8a7a-4141-a502-fa6ada85d14c/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/62d00615-3eba-4970-8309-bfe58529cada/items
response:
body:
- string: '{"id": "be735422-b5c3-4a02-805b-4d3afad77e11", "type": "Reflex", "displayName":
- "fabcli000003", "workspaceId": "edaeec11-8a7a-4141-a502-fa6ada85d14c"}'
+ string: '{"id": "eedda0bf-0539-4598-a8ad-4eb233f8720a", "type": "Reflex", "displayName":
+ "fabcli000003", "description": "", "workspaceId": "62d00615-3eba-4970-8309-bfe58529cada"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1042,17 +1055,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '164'
+ - '155'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:10 GMT
+ - Wed, 20 May 2026 08:52:11 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - a5d66fd2-4a1a-4a25-84ec-406cc2a6e798
+ - 26429c20-1842-4650-887f-51750ce93495
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1078,66 +1091,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "99906f42-7ae9-4619-b281-0d92e1a43c1a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "edaeec11-8a7a-4141-a502-fa6ada85d14c", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
- headers:
- Access-Control-Expose-Headers:
- - RequestId
- Cache-Control:
- - no-store, must-revalidate, no-cache
- Content-Encoding:
- - gzip
- Content-Length:
- - '2882'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:35:11 GMT
- Pragma:
- - no-cache
- RequestId:
- - a189c912-ca7f-4a3e-9ed7-ade191c8a665
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - deny
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/99906f42-7ae9-4619-b281-0d92e1a43c1a/items
- response:
- body:
- string: '{"value": [{"id": "53452f57-fff9-4379-adc8-8b31afc3cb18", "type": "Reflex",
- "displayName": "fabcli000003", "workspaceId":
- "99906f42-7ae9-4619-b281-0d92e1a43c1a"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "540cd160-f00f-4169-8f22-9509e1430451", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "62d00615-3eba-4970-8309-bfe58529cada", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1146,15 +1112,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:12 GMT
+ - Wed, 20 May 2026 08:52:13 GMT
Pragma:
- no-cache
RequestId:
- - 320e050a-a059-4bd0-a039-a5fa234441b1
+ - 932b6fcf-bf93-493f-a7b4-496095f1fc3f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1180,12 +1146,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/99906f42-7ae9-4619-b281-0d92e1a43c1a/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/540cd160-f00f-4169-8f22-9509e1430451/items
response:
body:
- string: '{"value": []}'
+ string: '{"value": [{"id": "732ec4a6-60d1-4523-9aa8-49470a632058", "type": "Reflex",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "540cd160-f00f-4169-8f22-9509e1430451"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1194,15 +1161,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '32'
+ - '166'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:12 GMT
+ - Wed, 20 May 2026 08:52:13 GMT
Pragma:
- no-cache
RequestId:
- - 17555d13-8fc9-4fa5-a711-5499d6aa7479
+ - 899951b6-ec57-4e66-a21f-3f732c373a33
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1228,66 +1195,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "99906f42-7ae9-4619-b281-0d92e1a43c1a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "edaeec11-8a7a-4141-a502-fa6ada85d14c", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
- headers:
- Access-Control-Expose-Headers:
- - RequestId
- Cache-Control:
- - no-store, must-revalidate, no-cache
- Content-Encoding:
- - gzip
- Content-Length:
- - '2882'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:35:13 GMT
- Pragma:
- - no-cache
- RequestId:
- - a4ebcc49-9cb3-4ee5-89bb-5f7d26469b9d
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - deny
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/edaeec11-8a7a-4141-a502-fa6ada85d14c/items
- response:
- body:
- string: '{"value": [{"id": "be735422-b5c3-4a02-805b-4d3afad77e11", "type": "Reflex",
- "displayName": "fabcli000003", "workspaceId":
- "edaeec11-8a7a-4141-a502-fa6ada85d14c"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "540cd160-f00f-4169-8f22-9509e1430451", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "62d00615-3eba-4970-8309-bfe58529cada", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1296,15 +1216,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '176'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:14 GMT
+ - Wed, 20 May 2026 08:52:14 GMT
Pragma:
- no-cache
RequestId:
- - 2669752e-3f76-407b-8cf0-480d0cbdb2fb
+ - de7f5bd7-e966-452b-946b-ed03e3766cfe
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1330,12 +1250,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/edaeec11-8a7a-4141-a502-fa6ada85d14c/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/62d00615-3eba-4970-8309-bfe58529cada/items
response:
body:
- string: '{"value": []}'
+ string: '{"value": [{"id": "eedda0bf-0539-4598-a8ad-4eb233f8720a", "type": "Reflex",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "62d00615-3eba-4970-8309-bfe58529cada"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1344,15 +1265,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '32'
+ - '166'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:15 GMT
+ - Wed, 20 May 2026 08:52:15 GMT
Pragma:
- no-cache
RequestId:
- - 86ffb3d2-4300-43cf-98c5-c404dfce2298
+ - e705a911-654b-43b3-977c-78ef1c64f4f6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1378,16 +1299,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "99906f42-7ae9-4619-b281-0d92e1a43c1a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "edaeec11-8a7a-4141-a502-fa6ada85d14c", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "540cd160-f00f-4169-8f22-9509e1430451", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "62d00615-3eba-4970-8309-bfe58529cada", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1396,15 +1320,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:16 GMT
+ - Wed, 20 May 2026 08:52:16 GMT
Pragma:
- no-cache
RequestId:
- - f578dc74-199d-449a-8b67-fd31d8ecf1fa
+ - e002cfd1-dbb3-4357-99dc-b553b92d0ea7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1430,14 +1354,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/99906f42-7ae9-4619-b281-0d92e1a43c1a/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/540cd160-f00f-4169-8f22-9509e1430451/items
response:
body:
- string: '{"value": [{"id": "53452f57-fff9-4379-adc8-8b31afc3cb18", "type": "Reflex",
- "displayName": "fabcli000003", "workspaceId":
- "99906f42-7ae9-4619-b281-0d92e1a43c1a"}]}'
+ string: '{"value": [{"id": "732ec4a6-60d1-4523-9aa8-49470a632058", "type": "Reflex",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "540cd160-f00f-4169-8f22-9509e1430451"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1446,15 +1369,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '166'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:17 GMT
+ - Wed, 20 May 2026 08:52:17 GMT
Pragma:
- no-cache
RequestId:
- - 250cdda0-b6c5-4fff-9db8-0276768bb1ae
+ - b41ba6ac-05b6-4674-8752-2b723a5f8828
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1482,9 +1405,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/99906f42-7ae9-4619-b281-0d92e1a43c1a/items/53452f57-fff9-4379-adc8-8b31afc3cb18
+ uri: https://api.fabric.microsoft.com/v1/workspaces/540cd160-f00f-4169-8f22-9509e1430451/items/732ec4a6-60d1-4523-9aa8-49470a632058
response:
body:
string: ''
@@ -1500,11 +1423,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:35:18 GMT
+ - Wed, 20 May 2026 08:52:17 GMT
Pragma:
- no-cache
RequestId:
- - 0c8ac9e9-2c0d-44c7-8026-1116f0eca7a0
+ - e49eb0c8-627e-43f3-903e-3c8ba9c20066
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1530,16 +1453,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "99906f42-7ae9-4619-b281-0d92e1a43c1a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "edaeec11-8a7a-4141-a502-fa6ada85d14c", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "540cd160-f00f-4169-8f22-9509e1430451", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "62d00615-3eba-4970-8309-bfe58529cada", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1548,15 +1474,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:18 GMT
+ - Wed, 20 May 2026 08:52:18 GMT
Pragma:
- no-cache
RequestId:
- - 9e01a24d-f7a0-4f8a-ba7e-517629ce1856
+ - 8732dfd4-5839-4cad-a46c-ac95afc23e8e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1582,9 +1508,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/99906f42-7ae9-4619-b281-0d92e1a43c1a/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/540cd160-f00f-4169-8f22-9509e1430451/items
response:
body:
string: '{"value": []}'
@@ -1600,11 +1526,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:19 GMT
+ - Wed, 20 May 2026 08:52:19 GMT
Pragma:
- no-cache
RequestId:
- - cc6c0231-7e56-4866-ade8-22233a09c1d7
+ - c889987b-15a6-4039-aaee-f3f8a11d581a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1632,9 +1558,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/99906f42-7ae9-4619-b281-0d92e1a43c1a
+ uri: https://api.fabric.microsoft.com/v1/workspaces/540cd160-f00f-4169-8f22-9509e1430451
response:
body:
string: ''
@@ -1650,11 +1576,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:35:19 GMT
+ - Wed, 20 May 2026 08:52:19 GMT
Pragma:
- no-cache
RequestId:
- - e0f619db-80c3-4794-8636-050734eb8769
+ - f08b3de2-5d5d-4847-8b4c-81703f52e5ed
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1680,15 +1606,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "edaeec11-8a7a-4141-a502-fa6ada85d14c", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "62d00615-3eba-4970-8309-bfe58529cada", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1697,15 +1625,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2843'
+ - '2660'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:21 GMT
+ - Wed, 20 May 2026 08:52:21 GMT
Pragma:
- no-cache
RequestId:
- - 80a925c5-58c3-43b0-aaa0-5a303bb1bc2b
+ - 90237e22-2620-4eec-ac6c-d24f954731fb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1731,14 +1659,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/edaeec11-8a7a-4141-a502-fa6ada85d14c/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/62d00615-3eba-4970-8309-bfe58529cada/items
response:
body:
- string: '{"value": [{"id": "be735422-b5c3-4a02-805b-4d3afad77e11", "type": "Reflex",
- "displayName": "fabcli000003", "workspaceId":
- "edaeec11-8a7a-4141-a502-fa6ada85d14c"}]}'
+ string: '{"value": [{"id": "eedda0bf-0539-4598-a8ad-4eb233f8720a", "type": "Reflex",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "62d00615-3eba-4970-8309-bfe58529cada"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1747,15 +1674,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '176'
+ - '166'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:21 GMT
+ - Wed, 20 May 2026 08:52:21 GMT
Pragma:
- no-cache
RequestId:
- - e897b4cd-1b33-4df1-bb93-49dfa57958ef
+ - a182a01a-8ead-49ee-a17a-37afc14f716d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1783,9 +1710,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/edaeec11-8a7a-4141-a502-fa6ada85d14c
+ uri: https://api.fabric.microsoft.com/v1/workspaces/62d00615-3eba-4970-8309-bfe58529cada
response:
body:
string: ''
@@ -1801,11 +1728,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:35:22 GMT
+ - Wed, 20 May 2026 08:52:23 GMT
Pragma:
- no-cache
RequestId:
- - 154f4ea1-3cd1-4df4-acf8-210292e9850b
+ - 6a645d86-5209-4380-b625-45569d8a4f0d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[SparkJobDefinition].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[SparkJobDefinition].yaml
index 5e273f1a0..9546964a3 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[SparkJobDefinition].yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[SparkJobDefinition].yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:22 GMT
+ - Wed, 20 May 2026 08:52:24 GMT
Pragma:
- no-cache
RequestId:
- - 0e80df78-e2da-4658-9eed-a1c60a70a402
+ - 16daf01d-2578-4057-a5b1-b0e8f87e023c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,14 +62,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -77,15 +79,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:23 GMT
+ - Wed, 20 May 2026 08:52:24 GMT
Pragma:
- no-cache
RequestId:
- - c046c167-3657-4f41-b2e1-b729c5f090a0
+ - fb133e8d-bf7a-43d8-8a85-7e26d6513671
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -111,7 +113,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -127,15 +129,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '427'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:28 GMT
+ - Wed, 20 May 2026 08:52:30 GMT
Pragma:
- no-cache
RequestId:
- - 3e625cf2-bac8-4008-9a06-630d42a5b2ea
+ - a89c7d2c-83c8-4361-be67-1e27e6ee760d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -150,8 +152,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000001", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -160,16 +161,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "07ea752e-203c-480e-b358-c2a4c486ec3d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "5d29f875-aaf1-4af0-822f-e588622b138b", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -178,17 +180,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '165'
+ - '155'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:35 GMT
+ - Wed, 20 May 2026 08:52:38 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/07ea752e-203c-480e-b358-c2a4c486ec3d
+ - https://api.fabric.microsoft.com/v1/workspaces/5d29f875-aaf1-4af0-822f-e588622b138b
Pragma:
- no-cache
RequestId:
- - 84e78426-5957-433b-b54b-f096eecca51b
+ - bac4279f-aab7-4d4a-9373-e118a2e7b16d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -214,15 +216,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07ea752e-203c-480e-b358-c2a4c486ec3d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "5d29f875-aaf1-4af0-822f-e588622b138b", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -231,15 +235,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2845'
+ - '2656'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:35 GMT
+ - Wed, 20 May 2026 08:52:39 GMT
Pragma:
- no-cache
RequestId:
- - c8283953-a128-4371-bff2-3352c72bb776
+ - 6b83cc60-3db4-44f0-9e8d-1c98788932e6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -265,15 +269,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07ea752e-203c-480e-b358-c2a4c486ec3d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "5d29f875-aaf1-4af0-822f-e588622b138b", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -282,15 +288,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2845'
+ - '2656'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:36 GMT
+ - Wed, 20 May 2026 08:52:39 GMT
Pragma:
- no-cache
RequestId:
- - 9ac690a0-cce2-4ea6-a6b3-c127c196ad97
+ - 4f9b48fb-58ba-4a95-87d8-78636d813e43
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -316,7 +322,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -332,15 +338,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '427'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:42 GMT
+ - Wed, 20 May 2026 08:52:44 GMT
Pragma:
- no-cache
RequestId:
- - ef1a831c-faa4-49c9-8e7a-c34011b864ee
+ - 721b057d-e6b5-4bc7-8a20-13bb8a761fc1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -355,8 +361,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000002", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -365,16 +370,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "7779fb4c-96e7-445f-920d-cd670630c854", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "1862eeea-8325-4424-b35d-0cb68632f0ae", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -383,17 +389,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '167'
+ - '156'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:50 GMT
+ - Wed, 20 May 2026 08:52:50 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/7779fb4c-96e7-445f-920d-cd670630c854
+ - https://api.fabric.microsoft.com/v1/workspaces/1862eeea-8325-4424-b35d-0cb68632f0ae
Pragma:
- no-cache
RequestId:
- - 1e0c44f4-8081-44f5-8727-26949702df1a
+ - f72899ae-5a25-4772-b8c1-ae48d74d5095
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -419,16 +425,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07ea752e-203c-480e-b358-c2a4c486ec3d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "7779fb4c-96e7-445f-920d-cd670630c854", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "5d29f875-aaf1-4af0-822f-e588622b138b", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1862eeea-8325-4424-b35d-0cb68632f0ae", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -437,15 +446,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2883'
+ - '2692'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:52 GMT
+ - Wed, 20 May 2026 08:52:51 GMT
Pragma:
- no-cache
RequestId:
- - 3bf087c4-d1af-43b6-a5ae-1b078e556594
+ - e8d699a5-524c-46d1-bb18-78456a442837
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -471,9 +480,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ea752e-203c-480e-b358-c2a4c486ec3d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5d29f875-aaf1-4af0-822f-e588622b138b/items
response:
body:
string: '{"value": []}'
@@ -489,11 +498,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:52 GMT
+ - Wed, 20 May 2026 08:52:52 GMT
Pragma:
- no-cache
RequestId:
- - 1856f51c-5005-47d4-af4f-8bd175032511
+ - 0a9ac610-c73c-4921-ac63-9fad97e5fb83
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -519,9 +528,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ea752e-203c-480e-b358-c2a4c486ec3d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5d29f875-aaf1-4af0-822f-e588622b138b/items
response:
body:
string: '{"value": []}'
@@ -537,11 +546,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:53 GMT
+ - Wed, 20 May 2026 08:52:53 GMT
Pragma:
- no-cache
RequestId:
- - 800b1e18-d023-4335-bfef-1a5a4b93909d
+ - 23ca3567-463e-420b-9fa9-48e189f0d0d8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -556,8 +565,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000003", "type":
- "SparkJobDefinition", "folderId": null}'
+ body: '{"displayName": "fabcli000003", "type": "SparkJobDefinition", "folderId":
+ null}'
headers:
Accept:
- '*/*'
@@ -566,18 +575,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '116'
+ - '83'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ea752e-203c-480e-b358-c2a4c486ec3d/sparkJobDefinitions
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5d29f875-aaf1-4af0-822f-e588622b138b/sparkJobDefinitions
response:
body:
- string: '{"id": "f594427d-1f92-4994-9571-1a44af086fd0", "type": "SparkJobDefinition",
- "displayName": "fabcli000003", "workspaceId":
- "07ea752e-203c-480e-b358-c2a4c486ec3d"}'
+ string: '{"id": "231ea84d-8585-4f9d-84df-62205c6d95f5", "type": "SparkJobDefinition",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "5d29f875-aaf1-4af0-822f-e588622b138b"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -586,17 +594,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '174'
+ - '165'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:54 GMT
+ - Wed, 20 May 2026 08:52:55 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 8793be7b-9481-48bf-b000-03c6873f89d4
+ - cd0e21be-8a6d-4608-9797-e14afe891395
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -622,16 +630,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07ea752e-203c-480e-b358-c2a4c486ec3d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "7779fb4c-96e7-445f-920d-cd670630c854", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "5d29f875-aaf1-4af0-822f-e588622b138b", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1862eeea-8325-4424-b35d-0cb68632f0ae", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -640,15 +651,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2883'
+ - '2692'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:55 GMT
+ - Wed, 20 May 2026 08:52:56 GMT
Pragma:
- no-cache
RequestId:
- - 197a7c69-40b7-4ac2-945a-cda579b46e0b
+ - 35764785-28b2-4c46-b938-786c078ea883
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -674,14 +685,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ea752e-203c-480e-b358-c2a4c486ec3d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5d29f875-aaf1-4af0-822f-e588622b138b/items
response:
body:
- string: '{"value": [{"id": "f594427d-1f92-4994-9571-1a44af086fd0", "type": "SparkJobDefinition",
- "displayName": "fabcli000003", "workspaceId":
- "07ea752e-203c-480e-b358-c2a4c486ec3d"}]}'
+ string: '{"value": [{"id": "231ea84d-8585-4f9d-84df-62205c6d95f5", "type": "SparkJobDefinition",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "5d29f875-aaf1-4af0-822f-e588622b138b"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -690,15 +700,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '186'
+ - '175'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:56 GMT
+ - Wed, 20 May 2026 08:52:57 GMT
Pragma:
- no-cache
RequestId:
- - 9bf310ab-ad61-46ba-a360-609125ab1157
+ - 7859dabb-7994-47a9-b82c-831757729ce2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -724,16 +734,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07ea752e-203c-480e-b358-c2a4c486ec3d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "7779fb4c-96e7-445f-920d-cd670630c854", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "5d29f875-aaf1-4af0-822f-e588622b138b", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1862eeea-8325-4424-b35d-0cb68632f0ae", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -742,15 +755,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2883'
+ - '2692'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:57 GMT
+ - Wed, 20 May 2026 08:52:57 GMT
Pragma:
- no-cache
RequestId:
- - 1e6391d4-9f33-4c2a-8071-5d2675044133
+ - 01307a8b-f057-45b5-8bbc-d13f31560f94
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -776,9 +789,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/7779fb4c-96e7-445f-920d-cd670630c854/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1862eeea-8325-4424-b35d-0cb68632f0ae/items
response:
body:
string: '{"value": []}'
@@ -794,11 +807,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:58 GMT
+ - Wed, 20 May 2026 08:52:59 GMT
Pragma:
- no-cache
RequestId:
- - a52b0c65-2351-4c46-8283-969162a44ee3
+ - f67ff4f3-70a5-4507-9987-3d5791610ad7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -824,9 +837,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/7779fb4c-96e7-445f-920d-cd670630c854/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1862eeea-8325-4424-b35d-0cb68632f0ae/items
response:
body:
string: '{"value": []}'
@@ -842,11 +855,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:59 GMT
+ - Wed, 20 May 2026 08:53:00 GMT
Pragma:
- no-cache
RequestId:
- - cb17d941-0d93-46cd-8521-1a04496532bb
+ - 31fd3943-b755-42e1-affa-740e605d8b68
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -872,9 +885,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/7779fb4c-96e7-445f-920d-cd670630c854/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1862eeea-8325-4424-b35d-0cb68632f0ae/items
response:
body:
string: '{"value": []}'
@@ -890,11 +903,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:35:59 GMT
+ - Wed, 20 May 2026 08:53:00 GMT
Pragma:
- no-cache
RequestId:
- - 29e9718f-5b68-4612-9773-a344a65b9705
+ - ec580732-aec0-496f-9609-c76f37785b1b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -920,14 +933,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ea752e-203c-480e-b358-c2a4c486ec3d/items/f594427d-1f92-4994-9571-1a44af086fd0
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5d29f875-aaf1-4af0-822f-e588622b138b/items/231ea84d-8585-4f9d-84df-62205c6d95f5
response:
body:
- string: '{"id": "f594427d-1f92-4994-9571-1a44af086fd0", "type": "SparkJobDefinition",
- "displayName": "fabcli000003", "workspaceId":
- "07ea752e-203c-480e-b358-c2a4c486ec3d"}'
+ string: '{"id": "231ea84d-8585-4f9d-84df-62205c6d95f5", "type": "SparkJobDefinition",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "5d29f875-aaf1-4af0-822f-e588622b138b"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -936,17 +948,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '174'
+ - '165'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:36:00 GMT
+ - Wed, 20 May 2026 08:53:01 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 854fed73-7390-4482-a80b-4166333e02eb
+ - 07097525-a7a7-44c9-84e6-a13c74af6863
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -974,14 +986,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ea752e-203c-480e-b358-c2a4c486ec3d/items/f594427d-1f92-4994-9571-1a44af086fd0/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5d29f875-aaf1-4af0-822f-e588622b138b/items/231ea84d-8585-4f9d-84df-62205c6d95f5/getDefinition
response:
body:
string: '{"definition": {"parts": [{"path": "SparkJobDefinitionV1.json", "payload":
"ew0KICAiZXhlY3V0YWJsZUZpbGUiOiBudWxsLA0KICAiZGVmYXVsdExha2Vob3VzZUFydGlmYWN0SWQiOiBudWxsLA0KICAibWFpbkNsYXNzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMYWtlaG91c2VJZHMiOiBbXSwNCiAgInJldHJ5UG9saWN5IjogbnVsbCwNCiAgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMaWJyYXJ5VXJpcyI6IG51bGwsDQogICJsYW5ndWFnZSI6IG51bGwsDQogICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsDQp9",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
"payloadType": "InlineBase64"}]}}'
headers:
Access-Control-Expose-Headers:
@@ -991,15 +1003,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '616'
+ - '585'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:36:02 GMT
+ - Wed, 20 May 2026 08:53:02 GMT
Pragma:
- no-cache
RequestId:
- - 015c3708-525d-4805-b6fa-1adaee3c2e99
+ - 1cfd2bc9-beea-440e-9386-bf6216c22b9e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1014,10 +1026,9 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "SparkJobDefinition", "displayName":
- "fabcli000003", "definition": {"parts": [{"path": "SparkJobDefinitionV1.json",
- "payload": "ew0KICAiZXhlY3V0YWJsZUZpbGUiOiBudWxsLA0KICAiZGVmYXVsdExha2Vob3VzZUFydGlmYWN0SWQiOiBudWxsLA0KICAibWFpbkNsYXNzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMYWtlaG91c2VJZHMiOiBbXSwNCiAgInJldHJ5UG9saWN5IjogbnVsbCwNCiAgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMaWJyYXJ5VXJpcyI6IG51bGwsDQogICJsYW5ndWFnZSI6IG51bGwsDQogICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsDQp9",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
+ body: '{"type": "SparkJobDefinition", "displayName": "fabcli000003", "definition":
+ {"parts": [{"path": "SparkJobDefinitionV1.json", "payload": "ew0KICAiZXhlY3V0YWJsZUZpbGUiOiBudWxsLA0KICAiZGVmYXVsdExha2Vob3VzZUFydGlmYWN0SWQiOiBudWxsLA0KICAibWFpbkNsYXNzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMYWtlaG91c2VJZHMiOiBbXSwNCiAgInJldHJ5UG9saWN5IjogbnVsbCwNCiAgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMaWJyYXJ5VXJpcyI6IG51bGwsDQogICJsYW5ndWFnZSI6IG51bGwsDQogICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsDQp9",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
"payloadType": "InlineBase64"}]}, "folderId": null}'
headers:
Accept:
@@ -1027,18 +1038,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1125'
+ - '1040'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/7779fb4c-96e7-445f-920d-cd670630c854/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1862eeea-8325-4424-b35d-0cb68632f0ae/items
response:
body:
- string: '{"id": "b057c2a9-912e-440a-be5c-7d662333eb0a", "type": "SparkJobDefinition",
- "displayName": "fabcli000003", "workspaceId":
- "7779fb4c-96e7-445f-920d-cd670630c854"}'
+ string: '{"id": "3b3f273a-ea28-489a-9c62-eff031df79ee", "type": "SparkJobDefinition",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "1862eeea-8325-4424-b35d-0cb68632f0ae"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1047,17 +1057,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '172'
+ - '165'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:36:04 GMT
+ - Wed, 20 May 2026 08:53:06 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 75f4b31f-35b6-4de1-9136-a4e309577360
+ - 76c62694-0b75-452f-9e62-6e2b9338e4be
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1083,66 +1093,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07ea752e-203c-480e-b358-c2a4c486ec3d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "7779fb4c-96e7-445f-920d-cd670630c854", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
- headers:
- Access-Control-Expose-Headers:
- - RequestId
- Cache-Control:
- - no-store, must-revalidate, no-cache
- Content-Encoding:
- - gzip
- Content-Length:
- - '2883'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:36:05 GMT
- Pragma:
- - no-cache
- RequestId:
- - b1a3320c-45c2-4a7f-bce4-4e711fd6a4e5
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - deny
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ea752e-203c-480e-b358-c2a4c486ec3d/items
- response:
- body:
- string: '{"value": [{"id": "f594427d-1f92-4994-9571-1a44af086fd0", "type": "SparkJobDefinition",
- "displayName": "fabcli000003", "workspaceId":
- "07ea752e-203c-480e-b358-c2a4c486ec3d"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "5d29f875-aaf1-4af0-822f-e588622b138b", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1862eeea-8325-4424-b35d-0cb68632f0ae", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1151,15 +1114,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '186'
+ - '2692'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:36:06 GMT
+ - Wed, 20 May 2026 08:53:06 GMT
Pragma:
- no-cache
RequestId:
- - 7dc26d77-3a66-46de-8904-ab95f7b2817f
+ - 1b2df133-45fd-4358-8f1d-dc40683342b8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1185,12 +1148,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ea752e-203c-480e-b358-c2a4c486ec3d/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5d29f875-aaf1-4af0-822f-e588622b138b/items
response:
body:
- string: '{"value": []}'
+ string: '{"value": [{"id": "231ea84d-8585-4f9d-84df-62205c6d95f5", "type": "SparkJobDefinition",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "5d29f875-aaf1-4af0-822f-e588622b138b"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1199,15 +1163,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '32'
+ - '175'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:36:06 GMT
+ - Wed, 20 May 2026 08:53:07 GMT
Pragma:
- no-cache
RequestId:
- - 3917f8dd-3cb9-40e0-a3e8-5bfbf9ecafa9
+ - 32eb6d5e-4a66-4d96-b006-623227901643
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1233,66 +1197,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07ea752e-203c-480e-b358-c2a4c486ec3d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "7779fb4c-96e7-445f-920d-cd670630c854", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
- headers:
- Access-Control-Expose-Headers:
- - RequestId
- Cache-Control:
- - no-store, must-revalidate, no-cache
- Content-Encoding:
- - gzip
- Content-Length:
- - '2883'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:36:08 GMT
- Pragma:
- - no-cache
- RequestId:
- - 235f6e24-a475-4684-8f08-b42f50cd74c5
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - deny
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/7779fb4c-96e7-445f-920d-cd670630c854/items
- response:
- body:
- string: '{"value": [{"id": "b057c2a9-912e-440a-be5c-7d662333eb0a", "type": "SparkJobDefinition",
- "displayName": "fabcli000003", "workspaceId":
- "7779fb4c-96e7-445f-920d-cd670630c854"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "5d29f875-aaf1-4af0-822f-e588622b138b", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1862eeea-8325-4424-b35d-0cb68632f0ae", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1301,15 +1218,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '185'
+ - '2692'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:36:08 GMT
+ - Wed, 20 May 2026 08:53:08 GMT
Pragma:
- no-cache
RequestId:
- - ad38dccb-b13b-4d96-8d4f-c15c9736feb6
+ - 55a5e521-ea7f-4219-9e4f-aa5f4e1a68ee
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1335,12 +1252,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/7779fb4c-96e7-445f-920d-cd670630c854/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1862eeea-8325-4424-b35d-0cb68632f0ae/items
response:
body:
- string: '{"value": []}'
+ string: '{"value": [{"id": "3b3f273a-ea28-489a-9c62-eff031df79ee", "type": "SparkJobDefinition",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "1862eeea-8325-4424-b35d-0cb68632f0ae"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1349,15 +1267,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '32'
+ - '175'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:36:09 GMT
+ - Wed, 20 May 2026 08:53:09 GMT
Pragma:
- no-cache
RequestId:
- - 1693acdc-7216-4899-bf57-1e59655b17c9
+ - 26b52dcd-9147-45db-88e8-de7d1f078096
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1383,16 +1301,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07ea752e-203c-480e-b358-c2a4c486ec3d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "7779fb4c-96e7-445f-920d-cd670630c854", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "5d29f875-aaf1-4af0-822f-e588622b138b", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1862eeea-8325-4424-b35d-0cb68632f0ae", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1401,15 +1322,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2883'
+ - '2692'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:36:10 GMT
+ - Wed, 20 May 2026 08:53:10 GMT
Pragma:
- no-cache
RequestId:
- - 4bcc486e-ac69-4512-87e8-be2f0b0d1c02
+ - 7c3e2441-766d-43a0-8676-2223c04c6080
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1435,14 +1356,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ea752e-203c-480e-b358-c2a4c486ec3d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5d29f875-aaf1-4af0-822f-e588622b138b/items
response:
body:
- string: '{"value": [{"id": "f594427d-1f92-4994-9571-1a44af086fd0", "type": "SparkJobDefinition",
- "displayName": "fabcli000003", "workspaceId":
- "07ea752e-203c-480e-b358-c2a4c486ec3d"}]}'
+ string: '{"value": [{"id": "231ea84d-8585-4f9d-84df-62205c6d95f5", "type": "SparkJobDefinition",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "5d29f875-aaf1-4af0-822f-e588622b138b"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1451,15 +1371,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '186'
+ - '175'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:36:11 GMT
+ - Wed, 20 May 2026 08:53:10 GMT
Pragma:
- no-cache
RequestId:
- - 99a683ab-3142-43dd-b528-2fce8ac8a7de
+ - 47c03993-9b2c-4e61-9636-87b2f9dd84ba
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1487,9 +1407,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ea752e-203c-480e-b358-c2a4c486ec3d/items/f594427d-1f92-4994-9571-1a44af086fd0
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5d29f875-aaf1-4af0-822f-e588622b138b/items/231ea84d-8585-4f9d-84df-62205c6d95f5
response:
body:
string: ''
@@ -1505,11 +1425,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:36:12 GMT
+ - Wed, 20 May 2026 08:53:11 GMT
Pragma:
- no-cache
RequestId:
- - d4e833ed-4b35-4a81-bac7-175b86e45404
+ - 32d1e4e3-6cc3-4f87-8625-1bc232c53c8c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1535,16 +1455,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07ea752e-203c-480e-b358-c2a4c486ec3d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "7779fb4c-96e7-445f-920d-cd670630c854", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "5d29f875-aaf1-4af0-822f-e588622b138b", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1862eeea-8325-4424-b35d-0cb68632f0ae", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1553,15 +1476,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2883'
+ - '2692'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:36:12 GMT
+ - Wed, 20 May 2026 08:53:13 GMT
Pragma:
- no-cache
RequestId:
- - b36e3a8d-aa92-4b5a-901a-950b747217e7
+ - bdf75cf9-46a5-4b13-b0e6-1488bbd92bfd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1587,9 +1510,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ea752e-203c-480e-b358-c2a4c486ec3d/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5d29f875-aaf1-4af0-822f-e588622b138b/items
response:
body:
string: '{"value": []}'
@@ -1605,11 +1528,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:36:13 GMT
+ - Wed, 20 May 2026 08:53:13 GMT
Pragma:
- no-cache
RequestId:
- - 14ec31d9-7313-44a9-8c43-7f84c868e0da
+ - 1347d881-a2de-48dc-82bc-2fbdde9d4172
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1637,9 +1560,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/07ea752e-203c-480e-b358-c2a4c486ec3d
+ uri: https://api.fabric.microsoft.com/v1/workspaces/5d29f875-aaf1-4af0-822f-e588622b138b
response:
body:
string: ''
@@ -1655,11 +1578,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:36:14 GMT
+ - Wed, 20 May 2026 08:53:14 GMT
Pragma:
- no-cache
RequestId:
- - a5914a2d-b167-4f06-b2a4-d1c1afbb238a
+ - c8ef6e18-1e33-407d-9465-3ec1c8ac7867
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1685,15 +1608,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "7779fb4c-96e7-445f-920d-cd670630c854", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "1862eeea-8325-4424-b35d-0cb68632f0ae", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1702,15 +1627,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2843'
+ - '2657'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:36:15 GMT
+ - Wed, 20 May 2026 08:53:15 GMT
Pragma:
- no-cache
RequestId:
- - 29f75c7a-8fc6-4e59-b923-5072721dae93
+ - 14e8fa88-2e4b-4203-9523-a824b2f1ba33
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1736,14 +1661,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/7779fb4c-96e7-445f-920d-cd670630c854/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1862eeea-8325-4424-b35d-0cb68632f0ae/items
response:
body:
- string: '{"value": [{"id": "b057c2a9-912e-440a-be5c-7d662333eb0a", "type": "SparkJobDefinition",
- "displayName": "fabcli000003", "workspaceId":
- "7779fb4c-96e7-445f-920d-cd670630c854"}]}'
+ string: '{"value": [{"id": "3b3f273a-ea28-489a-9c62-eff031df79ee", "type": "SparkJobDefinition",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "1862eeea-8325-4424-b35d-0cb68632f0ae"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1752,15 +1676,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '185'
+ - '175'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:36:16 GMT
+ - Wed, 20 May 2026 08:53:16 GMT
Pragma:
- no-cache
RequestId:
- - bd124819-9549-4e10-8ac7-82e05006bca7
+ - 0e12ccea-a31a-4f25-91e4-c43f78ce296a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1788,9 +1712,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/7779fb4c-96e7-445f-920d-cd670630c854
+ uri: https://api.fabric.microsoft.com/v1/workspaces/1862eeea-8325-4424-b35d-0cb68632f0ae
response:
body:
string: ''
@@ -1806,11 +1730,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:36:17 GMT
+ - Wed, 20 May 2026 08:53:17 GMT
Pragma:
- no-cache
RequestId:
- - c89837e9-3448-4817-96f8-f0dec132e3b9
+ - 758a6be1-93c2-4c0c-a04f-675bdaac2ac0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[UserDataFunction].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[UserDataFunction].yaml
index 19ea9e887..c344b3d53 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[UserDataFunction].yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[UserDataFunction].yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:38:22 GMT
+ - Wed, 20 May 2026 08:55:18 GMT
Pragma:
- no-cache
RequestId:
- - 731d0def-1649-4e08-8600-d21a037a8035
+ - 9a3ef654-b0d5-42b3-8351-bf42b77e3fa3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,14 +62,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -77,15 +79,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:38:23 GMT
+ - Wed, 20 May 2026 08:55:19 GMT
Pragma:
- no-cache
RequestId:
- - 198d8444-e89b-472d-8b0d-8fac0923da3a
+ - a14a9bd2-5df1-4be6-a30b-41b4176132db
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -111,7 +113,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -127,15 +129,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '424'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:38:28 GMT
+ - Wed, 20 May 2026 08:55:24 GMT
Pragma:
- no-cache
RequestId:
- - 3b50086e-5afc-4ee5-a041-ea3ebdf676d9
+ - 41dfd315-5de6-4ab3-a085-567d7726e35d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -150,8 +152,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000001", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -160,16 +161,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "9cb06f84-9ff2-4c45-b0e9-e786ea616b29", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -178,17 +180,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '155'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:38:36 GMT
+ - Wed, 20 May 2026 08:55:35 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/9cb06f84-9ff2-4c45-b0e9-e786ea616b29
+ - https://api.fabric.microsoft.com/v1/workspaces/dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975
Pragma:
- no-cache
RequestId:
- - 08254c79-3616-4c80-b524-4eaebeb82bc1
+ - a65cc70f-e642-4164-bef9-013a3e84c542
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -214,15 +216,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "9cb06f84-9ff2-4c45-b0e9-e786ea616b29", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -231,15 +235,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2840'
+ - '2659'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:38:37 GMT
+ - Wed, 20 May 2026 08:55:36 GMT
Pragma:
- no-cache
RequestId:
- - 6830ba9d-82b2-4df4-ae4a-3acb71fd3ae8
+ - dc75f492-8bd3-4112-b75a-615ffe15500d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -265,15 +269,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "9cb06f84-9ff2-4c45-b0e9-e786ea616b29", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -282,15 +288,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2840'
+ - '2659'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:38:38 GMT
+ - Wed, 20 May 2026 08:55:37 GMT
Pragma:
- no-cache
RequestId:
- - 466375a5-7948-4952-86ff-eb42e54d0e56
+ - 6b4f97b8-568e-4e76-bc7e-1f69237b5603
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -316,7 +322,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -332,15 +338,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '424'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:38:42 GMT
+ - Wed, 20 May 2026 08:55:41 GMT
Pragma:
- no-cache
RequestId:
- - 75da4f73-875f-4fa1-93e8-c417603b306b
+ - b44b4d12-6c34-4384-b976-5161690597ed
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -355,8 +361,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000002", "capacityId":
- "00000000-0000-0000-0000-000000000004"}'
+ body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Accept:
- '*/*'
@@ -365,16 +370,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '122'
+ - '89'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "8680675b-f2db-4f7a-834e-0e72345c0615", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "a7cbcd77-7800-4e41-87ad-8780ff97acc9", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -383,17 +389,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '167'
+ - '154'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:38:51 GMT
+ - Wed, 20 May 2026 08:55:47 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/8680675b-f2db-4f7a-834e-0e72345c0615
+ - https://api.fabric.microsoft.com/v1/workspaces/a7cbcd77-7800-4e41-87ad-8780ff97acc9
Pragma:
- no-cache
RequestId:
- - e6c84330-c0f8-43d8-b564-183ccd4b2074
+ - 4b46ec89-8cf3-4454-99e3-bc97eb0ed5d2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -419,16 +425,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "9cb06f84-9ff2-4c45-b0e9-e786ea616b29", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "8680675b-f2db-4f7a-834e-0e72345c0615", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "a7cbcd77-7800-4e41-87ad-8780ff97acc9", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -437,15 +446,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2877'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:38:52 GMT
+ - Wed, 20 May 2026 08:55:48 GMT
Pragma:
- no-cache
RequestId:
- - 36104633-a280-4c52-9319-c0a67a831ea1
+ - ab622376-9c8a-4381-9d51-630d11c3de20
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -471,9 +480,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/9cb06f84-9ff2-4c45-b0e9-e786ea616b29/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975/items
response:
body:
string: '{"value": []}'
@@ -489,11 +498,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:38:53 GMT
+ - Wed, 20 May 2026 08:55:49 GMT
Pragma:
- no-cache
RequestId:
- - a2e5e9e2-d2d6-49b3-b23d-a090ffc5449c
+ - bee85674-7adb-40c7-955c-bbbee5ddb6a5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -519,9 +528,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/9cb06f84-9ff2-4c45-b0e9-e786ea616b29/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975/items
response:
body:
string: '{"value": []}'
@@ -537,11 +546,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:38:54 GMT
+ - Wed, 20 May 2026 08:55:49 GMT
Pragma:
- no-cache
RequestId:
- - 7fe7d327-26fb-4986-a46b-4ce07ab43d75
+ - 6d6e81a6-f03b-4cb8-b4db-4853b78e117e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -556,8 +565,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000003", "type":
- "UserDataFunction", "folderId": null}'
+ body: '{"displayName": "fabcli000003", "type": "UserDataFunction", "folderId":
+ null}'
headers:
Accept:
- '*/*'
@@ -566,18 +575,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '114'
+ - '81'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/9cb06f84-9ff2-4c45-b0e9-e786ea616b29/userdatafunctions
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975/userdatafunctions
response:
body:
- string: '{"id": "991726a0-ec32-46bd-9a4a-a34d2c938d3b", "type": "UserDataFunction",
- "displayName": "fabcli000003", "workspaceId":
- "9cb06f84-9ff2-4c45-b0e9-e786ea616b29"}'
+ string: '{"id": "be4a193c-a5e2-4186-ae4a-23036d81c0a6", "type": "UserDataFunction",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -586,17 +594,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '171'
+ - '163'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:38:58 GMT
+ - Wed, 20 May 2026 08:55:53 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 3b5b8ca3-10f5-4ae2-9638-f3a8ed9065f2
+ - 37997deb-b0e9-4eb5-86a0-a0542cc753e8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -622,16 +630,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "9cb06f84-9ff2-4c45-b0e9-e786ea616b29", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "8680675b-f2db-4f7a-834e-0e72345c0615", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "a7cbcd77-7800-4e41-87ad-8780ff97acc9", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -640,15 +651,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2877'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:38:58 GMT
+ - Wed, 20 May 2026 08:55:55 GMT
Pragma:
- no-cache
RequestId:
- - 5da4cabf-0c8b-4af9-b616-389177131713
+ - 56366f44-ede3-4661-a80e-887b07df7475
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -674,14 +685,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/9cb06f84-9ff2-4c45-b0e9-e786ea616b29/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975/items
response:
body:
- string: '{"value": [{"id": "991726a0-ec32-46bd-9a4a-a34d2c938d3b", "type": "UserDataFunction",
- "displayName": "fabcli000003", "workspaceId":
- "9cb06f84-9ff2-4c45-b0e9-e786ea616b29"}]}'
+ string: '{"value": [{"id": "be4a193c-a5e2-4186-ae4a-23036d81c0a6", "type": "UserDataFunction",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -690,15 +700,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '183'
+ - '173'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:38:59 GMT
+ - Wed, 20 May 2026 08:55:55 GMT
Pragma:
- no-cache
RequestId:
- - e0f0010f-9d93-43be-9b69-c20b6afe9d3d
+ - a90c5b35-37be-4a50-b5a8-f00f059dfe10
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -724,16 +734,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "9cb06f84-9ff2-4c45-b0e9-e786ea616b29", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "8680675b-f2db-4f7a-834e-0e72345c0615", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "a7cbcd77-7800-4e41-87ad-8780ff97acc9", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -742,15 +755,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2877'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:38:59 GMT
+ - Wed, 20 May 2026 08:55:56 GMT
Pragma:
- no-cache
RequestId:
- - 6620f6ef-b07f-42ba-ad47-bd8fd9c9728f
+ - 5a067c42-1f2e-44de-99e1-6e5b61940749
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -776,9 +789,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/8680675b-f2db-4f7a-834e-0e72345c0615/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/a7cbcd77-7800-4e41-87ad-8780ff97acc9/items
response:
body:
string: '{"value": []}'
@@ -794,11 +807,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:39:01 GMT
+ - Wed, 20 May 2026 08:55:57 GMT
Pragma:
- no-cache
RequestId:
- - dbe129ca-ccf5-4c2d-ba48-f6220966c701
+ - 0ce331f7-8a3e-4821-b64e-68e17ef0d6ca
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -824,9 +837,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/8680675b-f2db-4f7a-834e-0e72345c0615/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/a7cbcd77-7800-4e41-87ad-8780ff97acc9/items
response:
body:
string: '{"value": []}'
@@ -842,11 +855,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:39:01 GMT
+ - Wed, 20 May 2026 08:55:58 GMT
Pragma:
- no-cache
RequestId:
- - 10d2f7d0-c09a-45ad-ae28-c02e32e1e840
+ - 5b11be1f-b4c9-47f0-92e7-51311aa16488
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -872,9 +885,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/8680675b-f2db-4f7a-834e-0e72345c0615/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/a7cbcd77-7800-4e41-87ad-8780ff97acc9/items
response:
body:
string: '{"value": []}'
@@ -890,11 +903,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:39:02 GMT
+ - Wed, 20 May 2026 08:55:58 GMT
Pragma:
- no-cache
RequestId:
- - c7672055-d113-45e8-938a-da1fae7fa1e6
+ - d7ae8baf-94fd-4c5a-afcf-686ff822838e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -920,14 +933,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/9cb06f84-9ff2-4c45-b0e9-e786ea616b29/items/991726a0-ec32-46bd-9a4a-a34d2c938d3b
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975/items/be4a193c-a5e2-4186-ae4a-23036d81c0a6
response:
body:
- string: '{"id": "991726a0-ec32-46bd-9a4a-a34d2c938d3b", "type": "UserDataFunction",
- "displayName": "fabcli000003", "workspaceId":
- "9cb06f84-9ff2-4c45-b0e9-e786ea616b29"}'
+ string: '{"id": "be4a193c-a5e2-4186-ae4a-23036d81c0a6", "type": "UserDataFunction",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -936,17 +948,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '171'
+ - '163'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:39:03 GMT
+ - Wed, 20 May 2026 08:55:59 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - b8a1b130-aaa0-449c-936f-dd81a45a9629
+ - d5aa2466-3e9f-4498-8d70-372d4fc76d5a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -974,9 +986,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/9cb06f84-9ff2-4c45-b0e9-e786ea616b29/items/991726a0-ec32-46bd-9a4a-a34d2c938d3b/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975/items/be4a193c-a5e2-4186-ae4a-23036d81c0a6/getDefinition
response:
body:
string: 'null'
@@ -992,13 +1004,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:39:04 GMT
+ - Wed, 20 May 2026 08:56:01 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ae313abf-4159-4df3-b08b-18b89a3c58d3
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8e8407a2-fa8e-46d3-9f0d-5cfb096104d6
Pragma:
- no-cache
RequestId:
- - d3589676-2e21-4210-93b5-e252c5e5f691
+ - 54d8bacf-b239-4eb8-b9ff-eaa2ef5b7f9f
Retry-After:
- '20'
Strict-Transport-Security:
@@ -1012,7 +1024,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - ae313abf-4159-4df3-b08b-18b89a3c58d3
+ - 8e8407a2-fa8e-46d3-9f0d-5cfb096104d6
status:
code: 202
message: Accepted
@@ -1028,13 +1040,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ae313abf-4159-4df3-b08b-18b89a3c58d3
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8e8407a2-fa8e-46d3-9f0d-5cfb096104d6
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:39:04.7721707",
- "lastUpdatedTimeUtc": "2026-02-06T07:39:04.9752816", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:56:01.585037",
+ "lastUpdatedTimeUtc": "2026-05-20T08:56:01.9348639", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -1048,13 +1060,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:39:26 GMT
+ - Wed, 20 May 2026 08:56:21 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ae313abf-4159-4df3-b08b-18b89a3c58d3/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8e8407a2-fa8e-46d3-9f0d-5cfb096104d6/result
Pragma:
- no-cache
RequestId:
- - 3657bf84-0ebb-4bd1-93ed-39f0410d71b7
+ - 0a257029-ab10-4696-8516-adb0b6c85dfe
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1062,7 +1074,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - ae313abf-4159-4df3-b08b-18b89a3c58d3
+ - 8e8407a2-fa8e-46d3-9f0d-5cfb096104d6
status:
code: 200
message: OK
@@ -1078,13 +1090,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ae313abf-4159-4df3-b08b-18b89a3c58d3/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8e8407a2-fa8e-46d3-9f0d-5cfb096104d6/result
response:
body:
string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS91c2VyRGF0YUZ1bmN0aW9uL2RlZmluaXRpb24vMS4xLjAvc2NoZW1hLmpzb24iLA0KICAicnVudGltZSI6ICJQWVRIT04iLA0KICAiY29ubmVjdGVkRGF0YVNvdXJjZXMiOiBbXSwNCiAgImZ1bmN0aW9ucyI6IFtdLA0KICAibGlicmFyaWVzIjogew0KICAgICJwdWJsaWMiOiBbXSwNCiAgICAicHJpdmF0ZSI6IFtdDQogIH0NCn0=",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlVzZXJEYXRhRnVuY3Rpb24iLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMyIsCiAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlVzZXJEYXRhRnVuY3Rpb24iLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMyIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
"payloadType": "InlineBase64"}]}}'
headers:
Access-Control-Expose-Headers:
@@ -1096,11 +1108,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 07:39:27 GMT
+ - Wed, 20 May 2026 08:56:22 GMT
Pragma:
- no-cache
RequestId:
- - 29fc6620-a847-4933-a408-aec47556b0c7
+ - 1665e631-95a8-414d-91f4-f052e0086fb1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -1113,10 +1125,9 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "UserDataFunction", "displayName":
- "fabcli000003", "definition": {"parts": [{"path": "definition.json", "payload":
- "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS91c2VyRGF0YUZ1bmN0aW9uL2RlZmluaXRpb24vMS4xLjAvc2NoZW1hLmpzb24iLA0KICAicnVudGltZSI6ICJQWVRIT04iLA0KICAiY29ubmVjdGVkRGF0YVNvdXJjZXMiOiBbXSwNCiAgImZ1bmN0aW9ucyI6IFtdLA0KICAibGlicmFyaWVzIjogew0KICAgICJwdWJsaWMiOiBbXSwNCiAgICAicHJpdmF0ZSI6IFtdDQogIH0NCn0=",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlVzZXJEYXRhRnVuY3Rpb24iLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMyIsCiAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
+ body: '{"type": "UserDataFunction", "displayName": "fabcli000003", "definition":
+ {"parts": [{"path": "definition.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS91c2VyRGF0YUZ1bmN0aW9uL2RlZmluaXRpb24vMS4xLjAvc2NoZW1hLmpzb24iLA0KICAicnVudGltZSI6ICJQWVRIT04iLA0KICAiY29ubmVjdGVkRGF0YVNvdXJjZXMiOiBbXSwNCiAgImZ1bmN0aW9ucyI6IFtdLA0KICAibGlicmFyaWVzIjogew0KICAgICJwdWJsaWMiOiBbXSwNCiAgICAicHJpdmF0ZSI6IFtdDQogIH0NCn0=",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlVzZXJEYXRhRnVuY3Rpb24iLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMyIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
"payloadType": "InlineBase64"}]}, "folderId": null}'
headers:
Accept:
@@ -1126,13 +1137,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1097'
+ - '1016'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/8680675b-f2db-4f7a-834e-0e72345c0615/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/a7cbcd77-7800-4e41-87ad-8780ff97acc9/items
response:
body:
string: 'null'
@@ -1148,15 +1159,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:39:28 GMT
+ - Wed, 20 May 2026 08:56:24 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6f3e6431-bfc8-45a3-98a2-161ecb94fbe5
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8dfa3a18-90cd-499f-82bd-2cdc2f34dcc0
Pragma:
- no-cache
RequestId:
- - e3a299a7-b7b8-433b-b583-e4129b0720ce
+ - dbecc5f7-46b1-4518-8ae6-e726af66e649
Retry-After:
- '20'
Strict-Transport-Security:
@@ -1170,7 +1181,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - 6f3e6431-bfc8-45a3-98a2-161ecb94fbe5
+ - 8dfa3a18-90cd-499f-82bd-2cdc2f34dcc0
status:
code: 202
message: Accepted
@@ -1186,13 +1197,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6f3e6431-bfc8-45a3-98a2-161ecb94fbe5
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8dfa3a18-90cd-499f-82bd-2cdc2f34dcc0
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:39:28.8232287",
- "lastUpdatedTimeUtc": "2026-02-06T07:39:33.0277271", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:56:23.9880505",
+ "lastUpdatedTimeUtc": "2026-05-20T08:56:27.2943526", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -1206,13 +1217,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:39:50 GMT
+ - Wed, 20 May 2026 08:56:45 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6f3e6431-bfc8-45a3-98a2-161ecb94fbe5/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8dfa3a18-90cd-499f-82bd-2cdc2f34dcc0/result
Pragma:
- no-cache
RequestId:
- - 7ca50434-4bf1-4cdd-9c67-1df1d7f659a5
+ - 316edf5a-123f-49a9-9f96-0514e64384de
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1220,7 +1231,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - 6f3e6431-bfc8-45a3-98a2-161ecb94fbe5
+ - 8dfa3a18-90cd-499f-82bd-2cdc2f34dcc0
status:
code: 200
message: OK
@@ -1236,14 +1247,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6f3e6431-bfc8-45a3-98a2-161ecb94fbe5/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8dfa3a18-90cd-499f-82bd-2cdc2f34dcc0/result
response:
body:
- string: '{"id": "34d8a760-4c37-4fea-a3c2-5c0dd0b02911", "type": "UserDataFunction",
- "displayName": "fabcli000003", "workspaceId":
- "8680675b-f2db-4f7a-834e-0e72345c0615"}'
+ string: '{"id": "d896424a-999e-473a-a68f-5db1c1771f5e", "type": "UserDataFunction",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "a7cbcd77-7800-4e41-87ad-8780ff97acc9"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1254,11 +1264,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 07:39:52 GMT
+ - Wed, 20 May 2026 08:56:46 GMT
Pragma:
- no-cache
RequestId:
- - 94eb04f2-a181-4fbf-9d70-6c9e125a42e7
+ - bed65fa4-d3db-4301-9575-cbb8b60cc081
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -1282,16 +1292,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "9cb06f84-9ff2-4c45-b0e9-e786ea616b29", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "8680675b-f2db-4f7a-834e-0e72345c0615", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "a7cbcd77-7800-4e41-87ad-8780ff97acc9", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1300,15 +1313,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2877'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:39:53 GMT
+ - Wed, 20 May 2026 08:56:47 GMT
Pragma:
- no-cache
RequestId:
- - 585db4f7-30fc-4e57-8d9e-01536488a27f
+ - 4cb93e0d-ef11-4982-a11e-08307756810b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1334,14 +1347,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/9cb06f84-9ff2-4c45-b0e9-e786ea616b29/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975/items
response:
body:
- string: '{"value": [{"id": "991726a0-ec32-46bd-9a4a-a34d2c938d3b", "type": "UserDataFunction",
- "displayName": "fabcli000003", "workspaceId":
- "9cb06f84-9ff2-4c45-b0e9-e786ea616b29"}]}'
+ string: '{"value": [{"id": "be4a193c-a5e2-4186-ae4a-23036d81c0a6", "type": "UserDataFunction",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1350,15 +1362,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '183'
+ - '173'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:39:53 GMT
+ - Wed, 20 May 2026 08:56:47 GMT
Pragma:
- no-cache
RequestId:
- - 8ed87415-b410-4527-adc1-552d90985b37
+ - 06416f66-2420-496e-9e64-7d3b5fbaf4ae
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1384,64 +1396,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/9cb06f84-9ff2-4c45-b0e9-e786ea616b29/folders?recursive=True
- response:
- body:
- string: '{"value": []}'
- headers:
- Access-Control-Expose-Headers:
- - RequestId
- Cache-Control:
- - no-store, must-revalidate, no-cache
- Content-Encoding:
- - gzip
- Content-Length:
- - '32'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:39:54 GMT
- Pragma:
- - no-cache
- RequestId:
- - c6198f42-15a8-4c29-b7c4-1762dc5d5eec
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - deny
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "9cb06f84-9ff2-4c45-b0e9-e786ea616b29", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "8680675b-f2db-4f7a-834e-0e72345c0615", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "a7cbcd77-7800-4e41-87ad-8780ff97acc9", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1450,15 +1417,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2877'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:39:55 GMT
+ - Wed, 20 May 2026 08:56:48 GMT
Pragma:
- no-cache
RequestId:
- - 3fbdf6f3-3ebe-4dd5-b7d7-ddba8ef1be81
+ - 2a1f021f-cda9-492b-b30e-a153fe6aea8f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1484,14 +1451,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/8680675b-f2db-4f7a-834e-0e72345c0615/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/a7cbcd77-7800-4e41-87ad-8780ff97acc9/items
response:
body:
- string: '{"value": [{"id": "34d8a760-4c37-4fea-a3c2-5c0dd0b02911", "type": "UserDataFunction",
- "displayName": "fabcli000003", "workspaceId":
- "8680675b-f2db-4f7a-834e-0e72345c0615"}]}'
+ string: '{"value": [{"id": "d896424a-999e-473a-a68f-5db1c1771f5e", "type": "UserDataFunction",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "a7cbcd77-7800-4e41-87ad-8780ff97acc9"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1500,63 +1466,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '184'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:39:56 GMT
- Pragma:
- - no-cache
- RequestId:
- - 026860e4-a48a-4751-980d-812edc3764af
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - deny
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/8680675b-f2db-4f7a-834e-0e72345c0615/folders?recursive=True
- response:
- body:
- string: '{"value": []}'
- headers:
- Access-Control-Expose-Headers:
- - RequestId
- Cache-Control:
- - no-store, must-revalidate, no-cache
- Content-Encoding:
- - gzip
- Content-Length:
- - '32'
+ - '174'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:39:56 GMT
+ - Wed, 20 May 2026 08:56:49 GMT
Pragma:
- no-cache
RequestId:
- - 8eae2e15-ac0d-418f-ac13-5274cda5fba6
+ - c7f207e3-ebbe-4143-80ec-84483ad64539
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1582,16 +1500,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "9cb06f84-9ff2-4c45-b0e9-e786ea616b29", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "8680675b-f2db-4f7a-834e-0e72345c0615", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "a7cbcd77-7800-4e41-87ad-8780ff97acc9", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1600,15 +1521,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2877'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:39:58 GMT
+ - Wed, 20 May 2026 08:56:50 GMT
Pragma:
- no-cache
RequestId:
- - d728c501-7df6-4cc6-9256-061462059fda
+ - f694b542-50e6-42dd-ac13-5b01bbfcb743
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1634,14 +1555,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/9cb06f84-9ff2-4c45-b0e9-e786ea616b29/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975/items
response:
body:
- string: '{"value": [{"id": "991726a0-ec32-46bd-9a4a-a34d2c938d3b", "type": "UserDataFunction",
- "displayName": "fabcli000003", "workspaceId":
- "9cb06f84-9ff2-4c45-b0e9-e786ea616b29"}]}'
+ string: '{"value": [{"id": "be4a193c-a5e2-4186-ae4a-23036d81c0a6", "type": "UserDataFunction",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1650,15 +1570,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '183'
+ - '173'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:39:59 GMT
+ - Wed, 20 May 2026 08:56:51 GMT
Pragma:
- no-cache
RequestId:
- - c369270b-e67a-47eb-b006-831bd0e279ca
+ - 7471267b-b2ab-4e24-b21c-8716d7f816ea
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1686,9 +1606,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/9cb06f84-9ff2-4c45-b0e9-e786ea616b29/items/991726a0-ec32-46bd-9a4a-a34d2c938d3b
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975/items/be4a193c-a5e2-4186-ae4a-23036d81c0a6
response:
body:
string: ''
@@ -1704,11 +1624,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:40:00 GMT
+ - Wed, 20 May 2026 08:56:52 GMT
Pragma:
- no-cache
RequestId:
- - 2255d42b-3bc3-4f36-b0d8-0ae0510f76b0
+ - 9911efec-2a44-4c4f-abfa-5c0e025ea1ef
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1734,16 +1654,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "9cb06f84-9ff2-4c45-b0e9-e786ea616b29", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "8680675b-f2db-4f7a-834e-0e72345c0615", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "a7cbcd77-7800-4e41-87ad-8780ff97acc9", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1752,15 +1675,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2877'
+ - '2699'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:40:01 GMT
+ - Wed, 20 May 2026 08:56:52 GMT
Pragma:
- no-cache
RequestId:
- - 4320a3c7-6cf7-4391-a5cb-c7dc22a55736
+ - fe86c6db-ea3c-4bb8-aeb6-732ff8f7159f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1786,9 +1709,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/9cb06f84-9ff2-4c45-b0e9-e786ea616b29/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975/items
response:
body:
string: '{"value": []}'
@@ -1804,11 +1727,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:40:01 GMT
+ - Wed, 20 May 2026 08:56:53 GMT
Pragma:
- no-cache
RequestId:
- - 18f7985b-7fab-4c23-a89c-56cf8156b032
+ - 5619ce5e-2ccd-4064-b6d0-ee8dd5b850ee
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1836,9 +1759,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/9cb06f84-9ff2-4c45-b0e9-e786ea616b29
+ uri: https://api.fabric.microsoft.com/v1/workspaces/dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975
response:
body:
string: ''
@@ -1854,11 +1777,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:40:03 GMT
+ - Wed, 20 May 2026 08:56:55 GMT
Pragma:
- no-cache
RequestId:
- - 66b32509-e1b9-4e1a-8794-3c6e5f09d678
+ - 185779ce-0eb7-445c-81ed-cf83a9e53e8b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1884,15 +1807,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "8680675b-f2db-4f7a-834e-0e72345c0615", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "a7cbcd77-7800-4e41-87ad-8780ff97acc9", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1901,15 +1826,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2841'
+ - '2661'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:40:04 GMT
+ - Wed, 20 May 2026 08:56:55 GMT
Pragma:
- no-cache
RequestId:
- - 0df3ec15-0275-4d42-8674-8ea8905d6920
+ - 0edfaeb6-6706-4922-af7a-6f91abcf4164
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1935,14 +1860,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/8680675b-f2db-4f7a-834e-0e72345c0615/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/a7cbcd77-7800-4e41-87ad-8780ff97acc9/items
response:
body:
- string: '{"value": [{"id": "34d8a760-4c37-4fea-a3c2-5c0dd0b02911", "type": "UserDataFunction",
- "displayName": "fabcli000003", "workspaceId":
- "8680675b-f2db-4f7a-834e-0e72345c0615"}]}'
+ string: '{"value": [{"id": "d896424a-999e-473a-a68f-5db1c1771f5e", "type": "UserDataFunction",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "a7cbcd77-7800-4e41-87ad-8780ff97acc9"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1951,15 +1875,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '184'
+ - '174'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:40:04 GMT
+ - Wed, 20 May 2026 08:56:56 GMT
Pragma:
- no-cache
RequestId:
- - 4cc2d95c-cfab-4acf-bc78-195be9d03876
+ - 66649861-bae8-4696-8499-3730873d40b3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1987,9 +1911,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/8680675b-f2db-4f7a-834e-0e72345c0615
+ uri: https://api.fabric.microsoft.com/v1/workspaces/a7cbcd77-7800-4e41-87ad-8780ff97acc9
response:
body:
string: ''
@@ -2005,11 +1929,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:40:04 GMT
+ - Wed, 20 May 2026 08:56:57 GMT
Pragma:
- no-cache
RequestId:
- - 6f645558-f897-474f-955a-3c8f3e04df4d
+ - e81becba-afe8-4e04-91ff-33e1862e53ce
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_type_mismatch_failure.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_type_mismatch_failure.yaml
index 061bb53ad..0a59bb42e 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_type_mismatch_failure.yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_type_mismatch_failure.yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:40:40 GMT
+ - Wed, 20 May 2026 08:57:34 GMT
Pragma:
- no-cache
RequestId:
- - cb8efa72-2a56-4d36-8877-4d42be332be3
+ - fff18d4f-1f18-40d4-b420-93d27de83360
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,9 +62,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
string: '{"value": []}'
@@ -79,11 +80,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:40:42 GMT
+ - Wed, 20 May 2026 08:57:35 GMT
Pragma:
- no-cache
RequestId:
- - 9373babf-2682-4bb9-af0c-666241a19717
+ - 26479000-4956-4fa6-a4ba-f2d224910ad3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -109,9 +110,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
string: '{"value": []}'
@@ -127,11 +128,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:40:42 GMT
+ - Wed, 20 May 2026 08:57:35 GMT
Pragma:
- no-cache
RequestId:
- - 2c2fb2e2-7ff4-4801-aab1-e22140359e57
+ - 1882c167-294d-4345-abb9-1f7a1371bea9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -146,7 +147,9 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000001", "type": "Notebook", "folderId": null, "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", "payloadType": "InlineBase64"}]}}'
+ body: '{"displayName": "fabcli000001", "type": "Notebook", "folderId": null, "definition":
+ {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
+ "payloadType": "InlineBase64"}]}}'
headers:
Accept:
- '*/*'
@@ -156,13 +159,12 @@ interactions:
- keep-alive
Content-Length:
- '731'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/notebooks
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/notebooks
response:
body:
string: 'null'
@@ -178,15 +180,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:40:47 GMT
+ - Wed, 20 May 2026 08:57:37 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/55e75295-85ee-498e-9fe3-f00c6a6fd41b
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b67f6f00-5ebe-4005-971f-fe005768ecf7
Pragma:
- no-cache
RequestId:
- - 340298bb-36bb-4845-87a2-c3480c3c25a9
+ - 148481d0-f489-4bba-9d51-b5dd1d52e7d9
Retry-After:
- '20'
Strict-Transport-Security:
@@ -200,7 +202,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - 55e75295-85ee-498e-9fe3-f00c6a6fd41b
+ - b67f6f00-5ebe-4005-971f-fe005768ecf7
status:
code: 202
message: Accepted
@@ -216,13 +218,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/55e75295-85ee-498e-9fe3-f00c6a6fd41b
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b67f6f00-5ebe-4005-971f-fe005768ecf7
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:40:45.0137656",
- "lastUpdatedTimeUtc": "2026-02-06T07:40:48.7171108", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:57:37.3216133",
+ "lastUpdatedTimeUtc": "2026-05-20T08:57:38.8710729", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -232,17 +234,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '130'
+ - '131'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:41:09 GMT
+ - Wed, 20 May 2026 08:57:58 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/55e75295-85ee-498e-9fe3-f00c6a6fd41b/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b67f6f00-5ebe-4005-971f-fe005768ecf7/result
Pragma:
- no-cache
RequestId:
- - e5c1d8ae-9991-4b16-a140-aa8f723881c3
+ - 78afb80f-b9d0-4b1c-b976-49a1817ec4c2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -250,7 +252,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - 55e75295-85ee-498e-9fe3-f00c6a6fd41b
+ - b67f6f00-5ebe-4005-971f-fe005768ecf7
status:
code: 200
message: OK
@@ -266,14 +268,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/55e75295-85ee-498e-9fe3-f00c6a6fd41b/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b67f6f00-5ebe-4005-971f-fe005768ecf7/result
response:
body:
- string: '{"id": "e36e2c5f-fa28-40ed-a581-e21defe07945", "type": "Notebook",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}'
+ string: '{"id": "e0aaa14e-c2cc-40dd-9ef8-bff0ffd5a82b", "type": "Notebook",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -284,11 +285,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 07:41:09 GMT
+ - Wed, 20 May 2026 08:57:59 GMT
Pragma:
- no-cache
RequestId:
- - 71e5c4fc-0e83-458b-a64e-f28a9782df93
+ - 5139fd11-fc52-427e-bf4f-9d49ff14e945
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -312,14 +313,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -328,15 +330,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:41:11 GMT
+ - Wed, 20 May 2026 08:58:00 GMT
Pragma:
- no-cache
RequestId:
- - ede1f287-f246-4cf5-8140-51bff5c011ee
+ - 44bbc229-b2c8-403b-a9c5-2d89cd01d52d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -362,14 +364,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "e36e2c5f-fa28-40ed-a581-e21defe07945", "type": "Notebook",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "e0aaa14e-c2cc-40dd-9ef8-bff0ffd5a82b", "type": "Notebook",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -378,15 +379,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '176'
+ - '165'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:41:12 GMT
+ - Wed, 20 May 2026 08:58:00 GMT
Pragma:
- no-cache
RequestId:
- - 4c61dc57-12f8-4720-ae0e-4fe6ebbc54bf
+ - 71f7cc34-36d4-4168-978d-84cd9c93a6cd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -412,14 +413,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "e36e2c5f-fa28-40ed-a581-e21defe07945", "type": "Notebook",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "e0aaa14e-c2cc-40dd-9ef8-bff0ffd5a82b", "type": "Notebook",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -428,15 +428,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '176'
+ - '165'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:41:13 GMT
+ - Wed, 20 May 2026 08:58:01 GMT
Pragma:
- no-cache
RequestId:
- - c14d3693-9107-4d09-9063-77a99225a75a
+ - 33598318-6d3e-4560-a9ec-6689efad3feb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -461,18 +461,16 @@ interactions:
- keep-alive
Content-Length:
- '75'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/eventhouses
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/eventhouses
response:
body:
- string: '{"id": "20f52829-d8a9-4903-b1d7-e700ee6efc52", "type": "Eventhouse",
- "displayName": "fabcli000002", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}'
+ string: '{"id": "ba57b6a4-7a19-422e-a38b-7556ed8bdf2c", "type": "Eventhouse",
+ "displayName": "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -481,17 +479,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '168'
+ - '156'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:41:16 GMT
+ - Wed, 20 May 2026 08:58:06 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - b29aaf4f-6a64-47b2-a9aa-23719b170c56
+ - 70e8803a-82e5-4bce-995f-e32a69c27be7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -517,14 +515,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -533,15 +532,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:41:17 GMT
+ - Wed, 20 May 2026 08:58:07 GMT
Pragma:
- no-cache
RequestId:
- - 3b4487eb-3eb8-495b-af8a-88e91be52322
+ - 031c64e4-132f-403f-832b-95b55b4b1418
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -567,17 +566,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "e36e2c5f-fa28-40ed-a581-e21defe07945", "type": "Notebook",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, {"id": "20f52829-d8a9-4903-b1d7-e700ee6efc52",
- "type": "Eventhouse", "displayName": "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, {"id": "5da1151d-457f-4bf2-867f-690214ff9112",
- "type": "KQLDatabase", "displayName": "fabcli000002", "description": "fabcli000002",
- "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "e0aaa14e-c2cc-40dd-9ef8-bff0ffd5a82b", "type": "Notebook",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "ba57b6a4-7a19-422e-a38b-7556ed8bdf2c", "type": "Eventhouse", "displayName":
+ "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "257a2451-c6d8-43c8-8fbc-9eb2e54af0f0", "type": "KQLDatabase", "displayName":
+ "fabcli000002", "description": "fabcli000002", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -586,15 +585,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '271'
+ - '261'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:41:18 GMT
+ - Wed, 20 May 2026 08:58:08 GMT
Pragma:
- no-cache
RequestId:
- - 2437885a-db01-43e3-9dd7-6837246b3d4d
+ - dfe6612f-5b7e-4ff3-a3ff-c1d44bca7779
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -620,14 +619,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -636,15 +636,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:41:19 GMT
+ - Wed, 20 May 2026 08:58:09 GMT
Pragma:
- no-cache
RequestId:
- - a19d7633-f427-4fc2-9dbe-184de5290591
+ - 1be49b59-bd1c-413c-b79a-1b93014d91e4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -670,17 +670,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "e36e2c5f-fa28-40ed-a581-e21defe07945", "type": "Notebook",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, {"id": "20f52829-d8a9-4903-b1d7-e700ee6efc52",
- "type": "Eventhouse", "displayName": "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, {"id": "5da1151d-457f-4bf2-867f-690214ff9112",
- "type": "KQLDatabase", "displayName": "fabcli000002", "description": "fabcli000002",
- "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "e0aaa14e-c2cc-40dd-9ef8-bff0ffd5a82b", "type": "Notebook",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "ba57b6a4-7a19-422e-a38b-7556ed8bdf2c", "type": "Eventhouse", "displayName":
+ "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "257a2451-c6d8-43c8-8fbc-9eb2e54af0f0", "type": "KQLDatabase", "displayName":
+ "fabcli000002", "description": "fabcli000002", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -689,15 +689,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '271'
+ - '261'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:41:20 GMT
+ - Wed, 20 May 2026 08:58:10 GMT
Pragma:
- no-cache
RequestId:
- - 35c484ab-3063-4807-9375-9034318db90a
+ - a6b2dc7a-145c-47b4-ae8a-7c8c1ed8aebb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -723,14 +723,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -739,15 +740,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:41:21 GMT
+ - Wed, 20 May 2026 08:58:11 GMT
Pragma:
- no-cache
RequestId:
- - 7035e7be-6a99-42d6-8ba5-1106f73a1647
+ - c0fdd6e1-1bd6-467c-9ed2-67fe7c7d9ad0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -773,17 +774,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "e36e2c5f-fa28-40ed-a581-e21defe07945", "type": "Notebook",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, {"id": "20f52829-d8a9-4903-b1d7-e700ee6efc52",
- "type": "Eventhouse", "displayName": "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, {"id": "5da1151d-457f-4bf2-867f-690214ff9112",
- "type": "KQLDatabase", "displayName": "fabcli000002", "description": "fabcli000002",
- "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "e0aaa14e-c2cc-40dd-9ef8-bff0ffd5a82b", "type": "Notebook",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "ba57b6a4-7a19-422e-a38b-7556ed8bdf2c", "type": "Eventhouse", "displayName":
+ "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "257a2451-c6d8-43c8-8fbc-9eb2e54af0f0", "type": "KQLDatabase", "displayName":
+ "fabcli000002", "description": "fabcli000002", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -792,15 +793,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '271'
+ - '261'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:41:21 GMT
+ - Wed, 20 May 2026 08:58:12 GMT
Pragma:
- no-cache
RequestId:
- - 7c890b71-f095-4c52-a3cc-04280721e02a
+ - efec2243-349d-4b2b-8122-d2bc3c028574
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -828,9 +829,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items/20f52829-d8a9-4903-b1d7-e700ee6efc52
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items/ba57b6a4-7a19-422e-a38b-7556ed8bdf2c
response:
body:
string: ''
@@ -846,11 +847,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:41:23 GMT
+ - Wed, 20 May 2026 08:58:13 GMT
Pragma:
- no-cache
RequestId:
- - 0d49bfee-bfe2-4655-b3a1-4059e324f312
+ - 3fe0b27d-287d-49a6-bf06-dac89751a4f9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -876,14 +877,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -892,15 +894,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:41:23 GMT
+ - Wed, 20 May 2026 08:58:14 GMT
Pragma:
- no-cache
RequestId:
- - 18273152-1103-4f1c-bf3f-aa3ecde5b2e9
+ - aecc4536-1a8b-4310-b011-28bf7a33a318
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -926,14 +928,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "e36e2c5f-fa28-40ed-a581-e21defe07945", "type": "Notebook",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "e0aaa14e-c2cc-40dd-9ef8-bff0ffd5a82b", "type": "Notebook",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -942,15 +943,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '176'
+ - '165'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:41:25 GMT
+ - Wed, 20 May 2026 08:58:14 GMT
Pragma:
- no-cache
RequestId:
- - 253046cd-76cb-4732-b999-ebea59960c1f
+ - 078150b0-c193-4481-8163-2981872bc40a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -978,9 +979,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items/e36e2c5f-fa28-40ed-a581-e21defe07945
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items/e0aaa14e-c2cc-40dd-9ef8-bff0ffd5a82b
response:
body:
string: ''
@@ -996,11 +997,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:41:25 GMT
+ - Wed, 20 May 2026 08:58:15 GMT
Pragma:
- no-cache
RequestId:
- - b91f69f7-9a55-407a-b8f8-3b7c058964ad
+ - 3ad9eb48-e14b-49db-9662-10d13983196b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_local_to_onelake_success.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_local_to_onelake_success.yaml
index 69192f45d..7d9447019 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_local_to_onelake_success.yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_local_to_onelake_success.yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:56 GMT
+ - Wed, 20 May 2026 09:00:26 GMT
Pragma:
- no-cache
RequestId:
- - 44ac7b39-19c5-4453-a8c3-b32ea397fee9
+ - 505687cd-c511-4542-adc1-5bc9d24a2572
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,9 +62,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
string: '{"value": []}'
@@ -79,11 +80,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:57 GMT
+ - Wed, 20 May 2026 09:00:27 GMT
Pragma:
- no-cache
RequestId:
- - 8a82fc1e-2c9b-40e1-aa4a-ee80a3d43fef
+ - d7b0967d-fd7f-4d77-9268-009643a804f6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -109,9 +110,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
string: '{"value": []}'
@@ -127,11 +128,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:58 GMT
+ - Wed, 20 May 2026 09:00:28 GMT
Pragma:
- no-cache
RequestId:
- - ca1587f6-11b2-44d5-a9cb-09e2f068c457
+ - 8d65d492-cdf1-4b9f-82ba-09ae930e8267
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -156,18 +157,16 @@ interactions:
- keep-alive
Content-Length:
- '74'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/lakehouses
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/lakehouses
response:
body:
- string: '{"id": "77587e55-5a21-4da2-a8df-69aa9482fe5c", "type": "Lakehouse",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}'
+ string: '{"id": "03356d11-46a1-4ef9-a225-0a04fa076335", "type": "Lakehouse",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -176,17 +175,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '156'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:45:01 GMT
+ - Wed, 20 May 2026 09:00:32 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 45eb2db2-0282-4973-b61e-97e9f5fe4ae7
+ - 9287e257-0d45-4d8e-8753-a319c38d8f3e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -212,14 +211,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -228,15 +228,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:45:01 GMT
+ - Wed, 20 May 2026 09:00:33 GMT
Pragma:
- no-cache
RequestId:
- - 63362886-a516-4e66-afef-adad76bd26de
+ - 59df14a0-d792-4e27-bcd7-62ac7568f4a3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -262,14 +262,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "77587e55-5a21-4da2-a8df-69aa9482fe5c", "type": "Lakehouse",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "03356d11-46a1-4ef9-a225-0a04fa076335", "type": "Lakehouse",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -278,15 +277,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '167'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:45:02 GMT
+ - Wed, 20 May 2026 09:00:34 GMT
Pragma:
- no-cache
RequestId:
- - 3c81e695-9977-4b80-a67d-1cad0f6e1133
+ - 6467b2b3-2397-4b50-996b-4c08a1917d5d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -314,9 +313,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: PUT
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/77587e55-5a21-4da2-a8df-69aa9482fe5c/Files/test_cp_lo2ol.txt/?resource=file
+ uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/03356d11-46a1-4ef9-a225-0a04fa076335/Files/test_cp_lo2ol.txt/?resource=file
response:
body:
string: ''
@@ -332,13 +331,13 @@ interactions:
Content-Length:
- '0'
Date:
- - Fri, 06 Feb 2026 07:45:04 GMT
+ - Wed, 20 May 2026 09:00:35 GMT
ETag:
- - '"0x8DE6553A4A3A200"'
+ - '"0x8DEB64E422DCB28"'
Last-Modified:
- - Fri, 06 Feb 2026 07:45:05 GMT
+ - Wed, 20 May 2026 09:00:36 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -362,11 +361,11 @@ interactions:
Content-Type:
- text/plain
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
x-ms-content-type:
- text/plain
method: PATCH
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/77587e55-5a21-4da2-a8df-69aa9482fe5c/Files/test_cp_lo2ol.txt?action=append&position=0
+ uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/03356d11-46a1-4ef9-a225-0a04fa076335/Files/test_cp_lo2ol.txt?action=append&position=0
response:
body:
string: ''
@@ -382,9 +381,9 @@ interactions:
Content-Length:
- '0'
Date:
- - Fri, 06 Feb 2026 07:45:06 GMT
+ - Wed, 20 May 2026 09:00:36 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -406,11 +405,11 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
x-ms-content-type:
- text/plain
method: PATCH
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/77587e55-5a21-4da2-a8df-69aa9482fe5c/Files/test_cp_lo2ol.txt?action=flush&position=13
+ uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/03356d11-46a1-4ef9-a225-0a04fa076335/Files/test_cp_lo2ol.txt?action=flush&position=13
response:
body:
string: ''
@@ -426,13 +425,13 @@ interactions:
Content-Length:
- '0'
Date:
- - Fri, 06 Feb 2026 07:45:06 GMT
+ - Wed, 20 May 2026 09:00:39 GMT
ETag:
- - '"0x8DE6553A62D5F58"'
+ - '"0x8DEB64E43954720"'
Last-Modified:
- - Fri, 06 Feb 2026 07:45:07 GMT
+ - Wed, 20 May 2026 09:00:39 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel Microsoft-HTTPAPI/2.0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -452,14 +451,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -468,15 +468,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:45:08 GMT
+ - Wed, 20 May 2026 09:00:39 GMT
Pragma:
- no-cache
RequestId:
- - 140e579a-b7af-4f0a-bd03-c59d151768fa
+ - a1cfd566-1eed-4299-bbe3-3671fe711cf1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -502,14 +502,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "77587e55-5a21-4da2-a8df-69aa9482fe5c", "type": "Lakehouse",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "03356d11-46a1-4ef9-a225-0a04fa076335", "type": "Lakehouse",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -518,15 +517,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '167'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:45:08 GMT
+ - Wed, 20 May 2026 09:00:40 GMT
Pragma:
- no-cache
RequestId:
- - c69f1ce6-d521-485d-b297-5b69df7433c1
+ - b8c9572b-a4f2-40f8-bcc7-2cbd91d10b6d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -552,14 +551,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/?recursive=false&resource=filesystem&directory=77587e55-5a21-4da2-a8df-69aa9482fe5c%2FFiles&getShortcutMetadata=true
+ uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/?recursive=false&resource=filesystem&directory=03356d11-46a1-4ef9-a225-0a04fa076335%2FFiles&getShortcutMetadata=true
response:
body:
- string: '{"paths": [{"name": "77587e55-5a21-4da2-a8df-69aa9482fe5c/Files/test_cp_lo2ol.txt",
- "creationTime": "134148375052067328", "lastModified": "Fri, 06 Feb 2026 07:45:07
- GMT", "etag": "0x8DE6553A62D5F58", "contentLength": "13", "owner": "bdb39224-bd86-4d14-bc6e-18637e6902b0",
+ string: '{"paths": [{"name": "03356d11-46a1-4ef9-a225-0a04fa076335/Files/test_cp_lo2ol.txt",
+ "creationTime": "134237412367190824", "lastModified": "Wed, 20 May 2026 09:00:39
+ GMT", "etag": "0x8DEB64E43954720", "contentLength": "13", "owner": "bdb39224-bd86-4d14-bc6e-18637e6902b0",
"group": "bdb39224-bd86-4d14-bc6e-18637e6902b0", "permissions": "rw-r-----",
"expiryTime": "0"}], "ContinuationToken": null}'
headers:
@@ -574,9 +573,9 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:45:09 GMT
+ - Wed, 20 May 2026 09:00:42 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -598,14 +597,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -614,15 +614,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:45:09 GMT
+ - Wed, 20 May 2026 09:00:43 GMT
Pragma:
- no-cache
RequestId:
- - 40caa10d-d84e-4c17-9f2c-15c845752fe1
+ - 7952cb29-e0b9-405d-a46e-869f17c1a6b2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -648,14 +648,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "77587e55-5a21-4da2-a8df-69aa9482fe5c", "type": "Lakehouse",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "3f629556-433f-487a-aad0-0807c4fd809a", "type": "SQLEndpoint",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "03356d11-46a1-4ef9-a225-0a04fa076335", "type": "Lakehouse", "displayName":
+ "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -664,15 +665,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '213'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:45:10 GMT
+ - Wed, 20 May 2026 09:00:44 GMT
Pragma:
- no-cache
RequestId:
- - 5a4da0c8-cdf8-4fab-bcad-9a663e9ec237
+ - c5c8c422-7283-44a7-bba8-151780e7b3e4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -698,9 +699,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: HEAD
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/77587e55-5a21-4da2-a8df-69aa9482fe5c/Files/renamed_test_cp_lo2ol.txt
+ uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/03356d11-46a1-4ef9-a225-0a04fa076335/Files/renamed_test_cp_lo2ol.txt
response:
body:
string: ''
@@ -714,9 +715,9 @@ interactions:
Access-Control-Expose-Headers:
- '*,Authorization'
Date:
- - Fri, 06 Feb 2026 07:45:12 GMT
+ - Wed, 20 May 2026 09:00:46 GMT
Server:
- - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel Microsoft-HTTPAPI/2.0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -724,10 +725,10 @@ interactions:
X-Content-Type-Options:
- nosniff
x-ms-error-code:
- - BlobNotFound
+ - PathNotFound
status:
code: 404
- message: The specified blob does not exist.
+ message: The specified path does not exist.
- request:
body: null
headers:
@@ -740,9 +741,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: HEAD
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/77587e55-5a21-4da2-a8df-69aa9482fe5c/Files/renamed_test_cp_lo2ol.txt
+ uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/03356d11-46a1-4ef9-a225-0a04fa076335/Files/renamed_test_cp_lo2ol.txt
response:
body:
string: ''
@@ -756,9 +757,9 @@ interactions:
Access-Control-Expose-Headers:
- '*,Authorization'
Date:
- - Fri, 06 Feb 2026 07:45:13 GMT
+ - Wed, 20 May 2026 09:00:48 GMT
Server:
- - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel Microsoft-HTTPAPI/2.0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -766,10 +767,10 @@ interactions:
X-Content-Type-Options:
- nosniff
x-ms-error-code:
- - BlobNotFound
+ - PathNotFound
status:
code: 404
- message: The specified blob does not exist.
+ message: The specified path does not exist.
- request:
body: null
headers:
@@ -784,9 +785,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: PUT
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/77587e55-5a21-4da2-a8df-69aa9482fe5c/Files/renamed_test_cp_lo2ol.txt/?resource=file
+ uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/03356d11-46a1-4ef9-a225-0a04fa076335/Files/renamed_test_cp_lo2ol.txt/?resource=file
response:
body:
string: ''
@@ -802,13 +803,13 @@ interactions:
Content-Length:
- '0'
Date:
- - Fri, 06 Feb 2026 07:45:15 GMT
+ - Wed, 20 May 2026 09:00:49 GMT
ETag:
- - '"0x8DE6553AB1CAE90"'
+ - '"0x8DEB64E49F78784"'
Last-Modified:
- - Fri, 06 Feb 2026 07:45:16 GMT
+ - Wed, 20 May 2026 09:00:49 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -832,11 +833,11 @@ interactions:
Content-Type:
- text/plain
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
x-ms-content-type:
- text/plain
method: PATCH
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/77587e55-5a21-4da2-a8df-69aa9482fe5c/Files/renamed_test_cp_lo2ol.txt?action=append&position=0
+ uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/03356d11-46a1-4ef9-a225-0a04fa076335/Files/renamed_test_cp_lo2ol.txt?action=append&position=0
response:
body:
string: ''
@@ -852,9 +853,9 @@ interactions:
Content-Length:
- '0'
Date:
- - Fri, 06 Feb 2026 07:45:17 GMT
+ - Wed, 20 May 2026 09:00:51 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel Microsoft-HTTPAPI/2.0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -876,11 +877,11 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
x-ms-content-type:
- text/plain
method: PATCH
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/77587e55-5a21-4da2-a8df-69aa9482fe5c/Files/renamed_test_cp_lo2ol.txt?action=flush&position=13
+ uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/03356d11-46a1-4ef9-a225-0a04fa076335/Files/renamed_test_cp_lo2ol.txt?action=flush&position=13
response:
body:
string: ''
@@ -896,13 +897,13 @@ interactions:
Content-Length:
- '0'
Date:
- - Fri, 06 Feb 2026 07:45:19 GMT
+ - Wed, 20 May 2026 09:00:53 GMT
ETag:
- - '"0x8DE6553AD45B320"'
+ - '"0x8DEB64E4C74F278"'
Last-Modified:
- - Fri, 06 Feb 2026 07:45:19 GMT
+ - Wed, 20 May 2026 09:00:53 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -922,14 +923,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -938,15 +940,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:45:19 GMT
+ - Wed, 20 May 2026 09:00:54 GMT
Pragma:
- no-cache
RequestId:
- - 6165edc3-d2f0-476a-8994-31ba24b0470f
+ - 201c432b-2ae1-4a15-80a6-7c6fd29acfc8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -972,15 +974,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "081dc588-a6f7-42da-ae4f-32bdf7314f9a", "type": "SQLEndpoint",
- "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "77587e55-5a21-4da2-a8df-69aa9482fe5c", "type": "Lakehouse", "displayName":
- "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "3f629556-433f-487a-aad0-0807c4fd809a", "type": "SQLEndpoint",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "03356d11-46a1-4ef9-a225-0a04fa076335", "type": "Lakehouse", "displayName":
+ "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -989,15 +991,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '227'
+ - '213'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:45:21 GMT
+ - Wed, 20 May 2026 09:00:55 GMT
Pragma:
- no-cache
RequestId:
- - b68bf9e2-b6de-4857-9c5c-af251750474b
+ - 49509fe6-9efd-4f7d-9284-c645075bab29
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1023,18 +1025,18 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/?recursive=false&resource=filesystem&directory=77587e55-5a21-4da2-a8df-69aa9482fe5c%2FFiles&getShortcutMetadata=true
+ uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/?recursive=false&resource=filesystem&directory=03356d11-46a1-4ef9-a225-0a04fa076335%2FFiles&getShortcutMetadata=true
response:
body:
- string: '{"paths": [{"name": "77587e55-5a21-4da2-a8df-69aa9482fe5c/Files/renamed_test_cp_lo2ol.txt",
- "creationTime": "134148375160663696", "lastModified": "Fri, 06 Feb 2026 07:45:19
- GMT", "etag": "0x8DE6553AD45B320", "contentLength": "13", "owner": "bdb39224-bd86-4d14-bc6e-18637e6902b0",
+ string: '{"paths": [{"name": "03356d11-46a1-4ef9-a225-0a04fa076335/Files/renamed_test_cp_lo2ol.txt",
+ "creationTime": "134237412497852292", "lastModified": "Wed, 20 May 2026 09:00:53
+ GMT", "etag": "0x8DEB64E4C74F278", "contentLength": "13", "owner": "bdb39224-bd86-4d14-bc6e-18637e6902b0",
"group": "bdb39224-bd86-4d14-bc6e-18637e6902b0", "permissions": "rw-r-----",
- "expiryTime": "0"}, {"name": "77587e55-5a21-4da2-a8df-69aa9482fe5c/Files/test_cp_lo2ol.txt",
- "creationTime": "134148375052067328", "lastModified": "Fri, 06 Feb 2026 07:45:07
- GMT", "etag": "0x8DE6553A62D5F58", "contentLength": "13", "owner": "bdb39224-bd86-4d14-bc6e-18637e6902b0",
+ "expiryTime": "0"}, {"name": "03356d11-46a1-4ef9-a225-0a04fa076335/Files/test_cp_lo2ol.txt",
+ "creationTime": "134237412367190824", "lastModified": "Wed, 20 May 2026 09:00:39
+ GMT", "etag": "0x8DEB64E43954720", "contentLength": "13", "owner": "bdb39224-bd86-4d14-bc6e-18637e6902b0",
"group": "bdb39224-bd86-4d14-bc6e-18637e6902b0", "permissions": "rw-r-----",
"expiryTime": "0"}], "ContinuationToken": null}'
headers:
@@ -1049,9 +1051,9 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:45:23 GMT
+ - Wed, 20 May 2026 09:00:57 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -1073,14 +1075,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1089,15 +1092,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:45:23 GMT
+ - Wed, 20 May 2026 09:00:58 GMT
Pragma:
- no-cache
RequestId:
- - 0d01f793-3489-4d89-a33a-8e13d0514f2f
+ - 79ed667b-3225-45d2-893b-eb97658ccffc
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1123,15 +1126,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "081dc588-a6f7-42da-ae4f-32bdf7314f9a", "type": "SQLEndpoint",
- "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "77587e55-5a21-4da2-a8df-69aa9482fe5c", "type": "Lakehouse", "displayName":
- "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "3f629556-433f-487a-aad0-0807c4fd809a", "type": "SQLEndpoint",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "03356d11-46a1-4ef9-a225-0a04fa076335", "type": "Lakehouse", "displayName":
+ "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1140,15 +1143,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '227'
+ - '213'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:45:25 GMT
+ - Wed, 20 May 2026 09:00:59 GMT
Pragma:
- no-cache
RequestId:
- - 7ed7b2a2-9ab6-4c76-b453-a51c8501c8ef
+ - 80c4b300-ba03-48af-8eeb-1417f8dfe9ae
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1176,9 +1179,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items/77587e55-5a21-4da2-a8df-69aa9482fe5c
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items/03356d11-46a1-4ef9-a225-0a04fa076335
response:
body:
string: ''
@@ -1194,11 +1197,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:45:26 GMT
+ - Wed, 20 May 2026 09:01:00 GMT
Pragma:
- no-cache
RequestId:
- - dfcc78a0-cdcb-45e1-9b70-3198fce134f5
+ - 5fd5a11c-a9e1-4f07-bab9-f33733079be0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_onelake_operations_success.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_onelake_operations_success.yaml
index de06ff5c8..690ca462a 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_onelake_operations_success.yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_onelake_operations_success.yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:45:26 GMT
+ - Wed, 20 May 2026 09:01:00 GMT
Pragma:
- no-cache
RequestId:
- - adc6ec94-2bbe-4c09-845a-3e0b723c852c
+ - 4a4342ce-26f3-4a3a-82d7-255dd5f675b4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,9 +62,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
string: '{"value": []}'
@@ -79,11 +80,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:45:27 GMT
+ - Wed, 20 May 2026 09:01:02 GMT
Pragma:
- no-cache
RequestId:
- - d2e715e2-a7ee-4175-8d32-c1eafef44d35
+ - f1896087-eeb8-4daa-9ab3-a955cc1eb200
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -109,9 +110,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
string: '{"value": []}'
@@ -127,11 +128,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:45:28 GMT
+ - Wed, 20 May 2026 09:01:03 GMT
Pragma:
- no-cache
RequestId:
- - a7886141-eca4-4cda-b1af-b5ddf65fef2c
+ - 2faee5ef-8fff-46cd-b0bc-9beaa4faf87c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -146,8 +147,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000001", "type":
- "Lakehouse", "folderId": null}'
+ body: '{"displayName": "fabcli000001", "type": "Lakehouse", "folderId": null}'
headers:
Accept:
- '*/*'
@@ -156,18 +156,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '107'
+ - '74'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/lakehouses
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/lakehouses
response:
body:
- string: '{"id": "0307fe75-5816-46fd-b988-179f3c6c6722", "type": "Lakehouse",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}'
+ string: '{"id": "a99d6f9a-0e12-4880-8fcc-e2275b958147", "type": "Lakehouse",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -176,17 +175,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '157'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:45:30 GMT
+ - Wed, 20 May 2026 09:01:06 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 91001a23-d1f0-426c-845c-020d5ee9995f
+ - 61e120b5-2752-47ac-b63a-007678078449
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -212,14 +211,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -228,15 +228,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:45:32 GMT
+ - Wed, 20 May 2026 09:01:08 GMT
Pragma:
- no-cache
RequestId:
- - 8b7e1846-9d55-4500-b763-96607bef04cc
+ - 51f8ad99-9057-4104-b850-b216f471181d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -262,14 +262,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "0307fe75-5816-46fd-b988-179f3c6c6722", "type": "Lakehouse",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "a99d6f9a-0e12-4880-8fcc-e2275b958147", "type": "Lakehouse",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -278,15 +277,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '179'
+ - '167'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:45:32 GMT
+ - Wed, 20 May 2026 09:01:08 GMT
Pragma:
- no-cache
RequestId:
- - 95954359-7a26-448e-b42d-bf9024607bcf
+ - 112ba88e-5dd7-47d9-84c9-26a36291ee42
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -312,14 +311,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "0307fe75-5816-46fd-b988-179f3c6c6722", "type": "Lakehouse",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "a99d6f9a-0e12-4880-8fcc-e2275b958147", "type": "Lakehouse",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -328,15 +326,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '179'
+ - '167'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:45:32 GMT
+ - Wed, 20 May 2026 09:01:09 GMT
Pragma:
- no-cache
RequestId:
- - 01e0ce6f-dc66-41fd-ba6a-33e26bb310f1
+ - 3905352b-3865-436f-b586-2889dfe45c5d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -351,8 +349,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000002", "type":
- "Lakehouse", "folderId": null}'
+ body: '{"displayName": "fabcli000002", "type": "Lakehouse", "folderId": null}'
headers:
Accept:
- '*/*'
@@ -361,18 +358,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '107'
+ - '74'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/lakehouses
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/lakehouses
response:
body:
- string: '{"id": "c1d00b8c-19e9-46cf-a67f-1edd42b2e1d7", "type": "Lakehouse",
- "displayName": "fabcli000002", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}'
+ string: '{"id": "3824ce88-cbe7-4150-9bf8-8fbad03567e4", "type": "Lakehouse",
+ "displayName": "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -381,17 +377,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '167'
+ - '158'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:45:34 GMT
+ - Wed, 20 May 2026 09:01:14 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - fba0f39a-4115-45ed-a40b-19269c3e9db3
+ - afccc122-7239-420b-a5cc-d12a31e7e00a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -417,14 +413,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -433,15 +430,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:45:35 GMT
+ - Wed, 20 May 2026 09:01:15 GMT
Pragma:
- no-cache
RequestId:
- - 15b96c6f-2626-45a9-8ab3-ce70b7fa291a
+ - 765bca53-1ba7-43c3-8e93-e973251ea542
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -467,15 +464,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "0307fe75-5816-46fd-b988-179f3c6c6722", "type": "Lakehouse",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, {"id": "c1d00b8c-19e9-46cf-a67f-1edd42b2e1d7",
- "type": "Lakehouse", "displayName": "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "beed31b5-8ddc-4146-945f-b8fa5dfe9cf6", "type": "SQLEndpoint",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "a99d6f9a-0e12-4880-8fcc-e2275b958147", "type": "Lakehouse", "displayName":
+ "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "3824ce88-cbe7-4150-9bf8-8fbad03567e4", "type": "Lakehouse", "displayName":
+ "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -484,15 +483,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '221'
+ - '253'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:45:36 GMT
+ - Wed, 20 May 2026 09:01:15 GMT
Pragma:
- no-cache
RequestId:
- - acd13cb9-3712-4859-9ac5-6c91859ef06f
+ - b28ae3c5-ac66-4eac-91c6-cfb5f2a9c1cc
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -518,9 +517,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: HEAD
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/0307fe75-5816-46fd-b988-179f3c6c6722/Files/test_cp_lakehouse.txt
+ uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/a99d6f9a-0e12-4880-8fcc-e2275b958147/Files/test_cp_lakehouse.txt
response:
body:
string: ''
@@ -534,9 +533,9 @@ interactions:
Access-Control-Expose-Headers:
- '*,Authorization'
Date:
- - Fri, 06 Feb 2026 07:45:38 GMT
+ - Wed, 20 May 2026 09:01:17 GMT
Server:
- - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel Microsoft-HTTPAPI/2.0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -544,10 +543,10 @@ interactions:
X-Content-Type-Options:
- nosniff
x-ms-error-code:
- - BlobNotFound
+ - PathNotFound
status:
code: 404
- message: The specified blob does not exist.
+ message: The specified path does not exist.
- request:
body: null
headers:
@@ -560,9 +559,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: HEAD
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/0307fe75-5816-46fd-b988-179f3c6c6722/Files/test_cp_lakehouse.txt
+ uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/a99d6f9a-0e12-4880-8fcc-e2275b958147/Files/test_cp_lakehouse.txt
response:
body:
string: ''
@@ -576,9 +575,9 @@ interactions:
Access-Control-Expose-Headers:
- '*,Authorization'
Date:
- - Fri, 06 Feb 2026 07:45:40 GMT
+ - Wed, 20 May 2026 09:01:19 GMT
Server:
- - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel Microsoft-HTTPAPI/2.0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -586,10 +585,10 @@ interactions:
X-Content-Type-Options:
- nosniff
x-ms-error-code:
- - BlobNotFound
+ - PathNotFound
status:
code: 404
- message: The specified blob does not exist.
+ message: The specified path does not exist.
- request:
body: null
headers:
@@ -604,9 +603,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: PUT
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/0307fe75-5816-46fd-b988-179f3c6c6722/Files/test_cp_lakehouse.txt/?resource=file
+ uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/a99d6f9a-0e12-4880-8fcc-e2275b958147/Files/test_cp_lakehouse.txt/?resource=file
response:
body:
string: ''
@@ -622,13 +621,13 @@ interactions:
Content-Length:
- '0'
Date:
- - Fri, 06 Feb 2026 07:45:43 GMT
+ - Wed, 20 May 2026 09:01:20 GMT
ETag:
- - '"0x8DE6553BB3ADE2C"'
+ - '"0x8DEB64E5CE30BAC"'
Last-Modified:
- - Fri, 06 Feb 2026 07:45:43 GMT
+ - Wed, 20 May 2026 09:01:21 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel Microsoft-HTTPAPI/2.0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -652,11 +651,11 @@ interactions:
Content-Type:
- text/plain
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
x-ms-content-type:
- text/plain
method: PATCH
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/0307fe75-5816-46fd-b988-179f3c6c6722/Files/test_cp_lakehouse.txt?action=append&position=0
+ uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/a99d6f9a-0e12-4880-8fcc-e2275b958147/Files/test_cp_lakehouse.txt?action=append&position=0
response:
body:
string: ''
@@ -672,9 +671,9 @@ interactions:
Content-Length:
- '0'
Date:
- - Fri, 06 Feb 2026 07:45:44 GMT
+ - Wed, 20 May 2026 09:01:22 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -696,11 +695,11 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
x-ms-content-type:
- text/plain
method: PATCH
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/0307fe75-5816-46fd-b988-179f3c6c6722/Files/test_cp_lakehouse.txt?action=flush&position=13
+ uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/a99d6f9a-0e12-4880-8fcc-e2275b958147/Files/test_cp_lakehouse.txt?action=flush&position=13
response:
body:
string: ''
@@ -716,13 +715,13 @@ interactions:
Content-Length:
- '0'
Date:
- - Fri, 06 Feb 2026 07:45:45 GMT
+ - Wed, 20 May 2026 09:01:23 GMT
ETag:
- - '"0x8DE6553BD143964"'
+ - '"0x8DEB64E5EAEBB54"'
Last-Modified:
- - Fri, 06 Feb 2026 07:45:46 GMT
+ - Wed, 20 May 2026 09:01:24 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -742,14 +741,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -758,15 +758,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:45:46 GMT
+ - Wed, 20 May 2026 09:01:24 GMT
Pragma:
- no-cache
RequestId:
- - 3f4b5e8e-eb5a-4a58-bcbe-876bfa71c737
+ - bf44f725-cd0a-4804-b962-f31a0a295950
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -792,19 +792,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "b0fef1a9-d996-4364-a640-73bb834a696e", "type": "SQLEndpoint",
- "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "6eb751c9-ddc6-4977-8643-8f38a7f84c79", "type": "SQLEndpoint", "displayName":
- "fabcli000002", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "0307fe75-5816-46fd-b988-179f3c6c6722", "type": "Lakehouse", "displayName":
- "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "c1d00b8c-19e9-46cf-a67f-1edd42b2e1d7", "type": "Lakehouse", "displayName":
- "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "beed31b5-8ddc-4146-945f-b8fa5dfe9cf6", "type": "SQLEndpoint",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "205f3844-4eb2-4a90-9390-85db6ac3ef51", "type": "SQLEndpoint", "displayName":
+ "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "a99d6f9a-0e12-4880-8fcc-e2275b958147", "type": "Lakehouse", "displayName":
+ "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "3824ce88-cbe7-4150-9bf8-8fbad03567e4", "type": "Lakehouse", "displayName":
+ "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -813,15 +813,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '293'
+ - '282'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:45:47 GMT
+ - Wed, 20 May 2026 09:01:25 GMT
Pragma:
- no-cache
RequestId:
- - f2fe838a-e801-4f5b-8e14-a213f7a3755f
+ - 4b3f209a-a00f-457a-957f-4157f943b45c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -847,9 +847,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: HEAD
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/0307fe75-5816-46fd-b988-179f3c6c6722/Files/test_cp_lakehouse.txt
+ uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/a99d6f9a-0e12-4880-8fcc-e2275b958147/Files/test_cp_lakehouse.txt
response:
body:
string: ''
@@ -869,13 +869,13 @@ interactions:
Content-Type:
- text/plain
Date:
- - Fri, 06 Feb 2026 07:45:48 GMT
+ - Wed, 20 May 2026 09:01:27 GMT
ETag:
- - '"0x8DE6553BD143964"'
+ - '"0x8DEB64E5EAEBB54"'
Last-Modified:
- - Fri, 06 Feb 2026 07:45:46 GMT
+ - Wed, 20 May 2026 09:01:24 GMT
Server:
- - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel Microsoft-HTTPAPI/2.0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -897,14 +897,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -913,15 +914,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:45:49 GMT
+ - Wed, 20 May 2026 09:01:27 GMT
Pragma:
- no-cache
RequestId:
- - e5bd75ea-d812-4d07-9bab-3f0eadf10fb6
+ - 47dd1a2e-513f-413e-9103-ad8a37257f5f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -947,19 +948,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "b0fef1a9-d996-4364-a640-73bb834a696e", "type": "SQLEndpoint",
- "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "6eb751c9-ddc6-4977-8643-8f38a7f84c79", "type": "SQLEndpoint", "displayName":
- "fabcli000002", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "0307fe75-5816-46fd-b988-179f3c6c6722", "type": "Lakehouse", "displayName":
- "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "c1d00b8c-19e9-46cf-a67f-1edd42b2e1d7", "type": "Lakehouse", "displayName":
- "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "beed31b5-8ddc-4146-945f-b8fa5dfe9cf6", "type": "SQLEndpoint",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "205f3844-4eb2-4a90-9390-85db6ac3ef51", "type": "SQLEndpoint", "displayName":
+ "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "a99d6f9a-0e12-4880-8fcc-e2275b958147", "type": "Lakehouse", "displayName":
+ "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "3824ce88-cbe7-4150-9bf8-8fbad03567e4", "type": "Lakehouse", "displayName":
+ "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -968,15 +969,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '293'
+ - '282'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:45:49 GMT
+ - Wed, 20 May 2026 09:01:28 GMT
Pragma:
- no-cache
RequestId:
- - 779bfe4f-f284-4d00-b12d-63ee80a15686
+ - 61346ab4-d73c-452f-a71f-0a88c7f35b80
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1002,9 +1003,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/0307fe75-5816-46fd-b988-179f3c6c6722/Files/test_cp_lakehouse.txt
+ uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/a99d6f9a-0e12-4880-8fcc-e2275b958147/Files/test_cp_lakehouse.txt
response:
body:
string: 'Hello world!
@@ -1026,13 +1027,13 @@ interactions:
Content-Type:
- text/plain
Date:
- - Fri, 06 Feb 2026 07:45:51 GMT
+ - Wed, 20 May 2026 09:01:30 GMT
ETag:
- - '"0x8DE6553BD143964"'
+ - '"0x8DEB64E5EAEBB54"'
Last-Modified:
- - Fri, 06 Feb 2026 07:45:46 GMT
+ - Wed, 20 May 2026 09:01:24 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel Microsoft-HTTPAPI/2.0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1056,9 +1057,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: PUT
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/c1d00b8c-19e9-46cf-a67f-1edd42b2e1d7/Files/test_cp_lakehouse.txt/?resource=file
+ uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/3824ce88-cbe7-4150-9bf8-8fbad03567e4/Files/test_cp_lakehouse.txt/?resource=file
response:
body:
string: ''
@@ -1074,13 +1075,13 @@ interactions:
Content-Length:
- '0'
Date:
- - Fri, 06 Feb 2026 07:45:52 GMT
+ - Wed, 20 May 2026 09:01:31 GMT
ETag:
- - '"0x8DE6553C12D9E18"'
+ - '"0x8DEB64E62ECD634"'
Last-Modified:
- - Fri, 06 Feb 2026 07:45:53 GMT
+ - Wed, 20 May 2026 09:01:31 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel Microsoft-HTTPAPI/2.0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1104,11 +1105,11 @@ interactions:
Content-Type:
- text/plain
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
x-ms-content-type:
- text/plain
method: PATCH
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/c1d00b8c-19e9-46cf-a67f-1edd42b2e1d7/Files/test_cp_lakehouse.txt?action=append&position=0
+ uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/3824ce88-cbe7-4150-9bf8-8fbad03567e4/Files/test_cp_lakehouse.txt?action=append&position=0
response:
body:
string: ''
@@ -1124,9 +1125,9 @@ interactions:
Content-Length:
- '0'
Date:
- - Fri, 06 Feb 2026 07:45:53 GMT
+ - Wed, 20 May 2026 09:01:31 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel Microsoft-HTTPAPI/2.0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1148,11 +1149,11 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
x-ms-content-type:
- text/plain
method: PATCH
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/c1d00b8c-19e9-46cf-a67f-1edd42b2e1d7/Files/test_cp_lakehouse.txt?action=flush&position=13
+ uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/3824ce88-cbe7-4150-9bf8-8fbad03567e4/Files/test_cp_lakehouse.txt?action=flush&position=13
response:
body:
string: ''
@@ -1168,13 +1169,13 @@ interactions:
Content-Length:
- '0'
Date:
- - Fri, 06 Feb 2026 07:45:54 GMT
+ - Wed, 20 May 2026 09:01:31 GMT
ETag:
- - '"0x8DE6553C26175DC"'
+ - '"0x8DEB64E638C1FD8"'
Last-Modified:
- - Fri, 06 Feb 2026 07:45:55 GMT
+ - Wed, 20 May 2026 09:01:32 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1194,14 +1195,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1210,15 +1212,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:45:55 GMT
+ - Wed, 20 May 2026 09:01:33 GMT
Pragma:
- no-cache
RequestId:
- - 82137f97-e8e4-4b56-88b0-705ba59f7fee
+ - 7db3d9e9-e1ea-401f-ae5a-4a6808205519
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1244,19 +1246,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "b0fef1a9-d996-4364-a640-73bb834a696e", "type": "SQLEndpoint",
- "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "6eb751c9-ddc6-4977-8643-8f38a7f84c79", "type": "SQLEndpoint", "displayName":
- "fabcli000002", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "0307fe75-5816-46fd-b988-179f3c6c6722", "type": "Lakehouse", "displayName":
- "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "c1d00b8c-19e9-46cf-a67f-1edd42b2e1d7", "type": "Lakehouse", "displayName":
- "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "beed31b5-8ddc-4146-945f-b8fa5dfe9cf6", "type": "SQLEndpoint",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "205f3844-4eb2-4a90-9390-85db6ac3ef51", "type": "SQLEndpoint", "displayName":
+ "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "a99d6f9a-0e12-4880-8fcc-e2275b958147", "type": "Lakehouse", "displayName":
+ "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "3824ce88-cbe7-4150-9bf8-8fbad03567e4", "type": "Lakehouse", "displayName":
+ "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1265,15 +1267,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '293'
+ - '282'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:45:56 GMT
+ - Wed, 20 May 2026 09:01:33 GMT
Pragma:
- no-cache
RequestId:
- - 12f2d1da-214f-435f-b5d6-19e72fd4d01f
+ - cd727475-7b5e-4451-aa23-15201ab28977
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1299,14 +1301,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/?recursive=false&resource=filesystem&directory=c1d00b8c-19e9-46cf-a67f-1edd42b2e1d7%2FFiles&getShortcutMetadata=true
+ uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/?recursive=false&resource=filesystem&directory=3824ce88-cbe7-4150-9bf8-8fbad03567e4%2FFiles&getShortcutMetadata=true
response:
body:
- string: '{"paths": [{"name": "c1d00b8c-19e9-46cf-a67f-1edd42b2e1d7/Files/test_cp_lakehouse.txt",
- "creationTime": "134148375530872344", "lastModified": "Fri, 06 Feb 2026 07:45:55
- GMT", "etag": "0x8DE6553C26175DC", "contentLength": "13", "owner": "bdb39224-bd86-4d14-bc6e-18637e6902b0",
+ string: '{"paths": [{"name": "3824ce88-cbe7-4150-9bf8-8fbad03567e4/Files/test_cp_lakehouse.txt",
+ "creationTime": "134237412916581940", "lastModified": "Wed, 20 May 2026 09:01:32
+ GMT", "etag": "0x8DEB64E638C1FD8", "contentLength": "13", "owner": "bdb39224-bd86-4d14-bc6e-18637e6902b0",
"group": "bdb39224-bd86-4d14-bc6e-18637e6902b0", "permissions": "rw-r-----",
"expiryTime": "0"}], "ContinuationToken": null}'
headers:
@@ -1321,9 +1323,9 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:45:57 GMT
+ - Wed, 20 May 2026 09:01:34 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel Microsoft-HTTPAPI/2.0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -1345,14 +1347,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1361,15 +1364,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:45:58 GMT
+ - Wed, 20 May 2026 09:01:35 GMT
Pragma:
- no-cache
RequestId:
- - 27b13b4b-e7b6-4eb0-889e-c78b9f194d96
+ - 55c8096c-e7ae-4b6d-b536-a02e60b4da6f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1395,19 +1398,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "b0fef1a9-d996-4364-a640-73bb834a696e", "type": "SQLEndpoint",
- "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "6eb751c9-ddc6-4977-8643-8f38a7f84c79", "type": "SQLEndpoint", "displayName":
- "fabcli000002", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "0307fe75-5816-46fd-b988-179f3c6c6722", "type": "Lakehouse", "displayName":
- "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "c1d00b8c-19e9-46cf-a67f-1edd42b2e1d7", "type": "Lakehouse", "displayName":
- "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "beed31b5-8ddc-4146-945f-b8fa5dfe9cf6", "type": "SQLEndpoint",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "205f3844-4eb2-4a90-9390-85db6ac3ef51", "type": "SQLEndpoint", "displayName":
+ "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "a99d6f9a-0e12-4880-8fcc-e2275b958147", "type": "Lakehouse", "displayName":
+ "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "3824ce88-cbe7-4150-9bf8-8fbad03567e4", "type": "Lakehouse", "displayName":
+ "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1416,15 +1419,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '293'
+ - '282'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:00 GMT
+ - Wed, 20 May 2026 09:01:35 GMT
Pragma:
- no-cache
RequestId:
- - 26a5f5fc-49d1-42e5-a37e-b597589a3402
+ - 790726a2-357e-489b-93d5-7d2b3f8733f0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1452,9 +1455,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items/c1d00b8c-19e9-46cf-a67f-1edd42b2e1d7
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items/3824ce88-cbe7-4150-9bf8-8fbad03567e4
response:
body:
string: ''
@@ -1470,11 +1473,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:46:00 GMT
+ - Wed, 20 May 2026 09:01:36 GMT
Pragma:
- no-cache
RequestId:
- - d44e4679-207a-4b0d-9168-4c101c082bb1
+ - ade86b00-2d3f-49ff-b5c4-ea46638d4e11
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1500,14 +1503,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1516,15 +1520,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:00 GMT
+ - Wed, 20 May 2026 09:01:36 GMT
Pragma:
- no-cache
RequestId:
- - 589caed3-8de6-4854-938f-ceceee3a75ff
+ - 0c416df6-a260-4157-9e77-beee697b9e7d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1550,15 +1554,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "b0fef1a9-d996-4364-a640-73bb834a696e", "type": "SQLEndpoint",
- "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "0307fe75-5816-46fd-b988-179f3c6c6722", "type": "Lakehouse", "displayName":
- "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "beed31b5-8ddc-4146-945f-b8fa5dfe9cf6", "type": "SQLEndpoint",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "a99d6f9a-0e12-4880-8fcc-e2275b958147", "type": "Lakehouse", "displayName":
+ "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1567,15 +1571,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '226'
+ - '214'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:01 GMT
+ - Wed, 20 May 2026 09:01:36 GMT
Pragma:
- no-cache
RequestId:
- - 2c4328cf-fe9f-4219-be58-0b2504e15dfb
+ - a4c85e61-8c24-4b1a-925a-b37044e405eb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1603,9 +1607,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items/0307fe75-5816-46fd-b988-179f3c6c6722
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items/a99d6f9a-0e12-4880-8fcc-e2275b958147
response:
body:
string: ''
@@ -1621,11 +1625,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:46:02 GMT
+ - Wed, 20 May 2026 09:01:37 GMT
Pragma:
- no-cache
RequestId:
- - 7119a362-ca92-4dc7-95f0-fe0ec803a4c5
+ - c5ffae71-cba6-4635-9b22-4898e7d42057
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_onelake_to_local_parquet_binary_success.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_onelake_to_local_parquet_binary_success.yaml
index 9c06da620..26a18ec4d 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_onelake_to_local_parquet_binary_success.yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_onelake_to_local_parquet_binary_success.yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:37 GMT
+ - Wed, 20 May 2026 09:02:06 GMT
Pragma:
- no-cache
RequestId:
- - bf204ed6-362c-499f-9709-3c80aa62362b
+ - 913c84dc-b155-4ac1-b69d-adb19a823e03
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,9 +62,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
string: '{"value": []}'
@@ -79,11 +80,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:38 GMT
+ - Wed, 20 May 2026 09:02:07 GMT
Pragma:
- no-cache
RequestId:
- - 3a1c2550-e8a1-4792-a615-47b9c5974f7a
+ - 5c83d586-5b23-4ca2-8e9d-01346f8eb135
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -109,9 +110,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
string: '{"value": []}'
@@ -127,11 +128,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:39 GMT
+ - Wed, 20 May 2026 09:02:08 GMT
Pragma:
- no-cache
RequestId:
- - 9eb90d5e-2221-4e3e-9ab1-c476c694f2a5
+ - 2848743a-feac-4316-84bd-24dad35669cd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -156,18 +157,16 @@ interactions:
- keep-alive
Content-Length:
- '74'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/lakehouses
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/lakehouses
response:
body:
- string: '{"id": "82f099dd-b351-4ff4-8043-302176061d65", "type": "Lakehouse",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}'
+ string: '{"id": "99456fdc-83d0-4259-958a-e19b2d7c9549", "type": "Lakehouse",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -176,17 +175,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '168'
+ - '156'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:41 GMT
+ - Wed, 20 May 2026 09:02:11 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 8afb6745-38ac-4607-abbe-df506856a9c3
+ - 602aee7d-4363-47ae-beaa-f8a650a7769e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -212,14 +211,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -228,15 +228,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:41 GMT
+ - Wed, 20 May 2026 09:02:12 GMT
Pragma:
- no-cache
RequestId:
- - 2f3e083f-df30-4044-9eba-21e1e445959c
+ - 3e4b928f-b3b7-4009-a59e-59e72ff717e0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -262,14 +262,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "82f099dd-b351-4ff4-8043-302176061d65", "type": "Lakehouse",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "99456fdc-83d0-4259-958a-e19b2d7c9549", "type": "Lakehouse",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -278,15 +277,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '180'
+ - '168'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:42 GMT
+ - Wed, 20 May 2026 09:02:13 GMT
Pragma:
- no-cache
RequestId:
- - 759a3908-9a84-471c-b4e0-8100477b979f
+ - 57994dcf-c45c-4332-89dd-83baa2c59283
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -314,9 +313,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: PUT
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/82f099dd-b351-4ff4-8043-302176061d65/Files/test.parquet/?resource=file
+ uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/99456fdc-83d0-4259-958a-e19b2d7c9549/Files/test.parquet/?resource=file
response:
body:
string: ''
@@ -332,13 +331,13 @@ interactions:
Content-Length:
- '0'
Date:
- - Fri, 06 Feb 2026 07:46:45 GMT
+ - Wed, 20 May 2026 09:02:14 GMT
ETag:
- - '"0x8DE6553E06BDA04"'
+ - '"0x8DEB64E7CB0AA50"'
Last-Modified:
- - Fri, 06 Feb 2026 07:46:45 GMT
+ - Wed, 20 May 2026 09:02:14 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel Microsoft-HTTPAPI/2.0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -369,11 +368,11 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
x-ms-content-type:
- application/octet-stream
method: PATCH
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/82f099dd-b351-4ff4-8043-302176061d65/Files/test.parquet?action=append&position=0
+ uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/99456fdc-83d0-4259-958a-e19b2d7c9549/Files/test.parquet?action=append&position=0
response:
body:
string: ''
@@ -389,9 +388,9 @@ interactions:
Content-Length:
- '0'
Date:
- - Fri, 06 Feb 2026 07:46:45 GMT
+ - Wed, 20 May 2026 09:02:16 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -413,11 +412,11 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
x-ms-content-type:
- application/octet-stream
method: PATCH
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/82f099dd-b351-4ff4-8043-302176061d65/Files/test.parquet?action=flush&position=471
+ uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/99456fdc-83d0-4259-958a-e19b2d7c9549/Files/test.parquet?action=flush&position=471
response:
body:
string: ''
@@ -433,13 +432,13 @@ interactions:
Content-Length:
- '0'
Date:
- - Fri, 06 Feb 2026 07:46:46 GMT
+ - Wed, 20 May 2026 09:02:17 GMT
ETag:
- - '"0x8DE6553E11C76A4"'
+ - '"0x8DEB64E7EFFD828"'
Last-Modified:
- - Fri, 06 Feb 2026 07:46:46 GMT
+ - Wed, 20 May 2026 09:02:18 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -459,14 +458,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -475,15 +475,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:46 GMT
+ - Wed, 20 May 2026 09:02:19 GMT
Pragma:
- no-cache
RequestId:
- - e85bea68-469c-4d2b-b688-c7666702ee9a
+ - 91a87deb-0acc-4412-888d-3b61292148a0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -509,14 +509,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "82f099dd-b351-4ff4-8043-302176061d65", "type": "Lakehouse",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "99456fdc-83d0-4259-958a-e19b2d7c9549", "type": "Lakehouse",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -525,15 +524,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '180'
+ - '168'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:48 GMT
+ - Wed, 20 May 2026 09:02:20 GMT
Pragma:
- no-cache
RequestId:
- - 5c386e01-6d84-4542-9249-ed926853709d
+ - 1dcc981a-0eff-439f-92a5-2d6a2e03db29
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -559,9 +558,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: HEAD
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/82f099dd-b351-4ff4-8043-302176061d65/Files/test.parquet
+ uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/99456fdc-83d0-4259-958a-e19b2d7c9549/Files/test.parquet
response:
body:
string: ''
@@ -581,13 +580,13 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:46:49 GMT
+ - Wed, 20 May 2026 09:02:22 GMT
ETag:
- - '"0x8DE6553E11C76A4"'
+ - '"0x8DEB64E7EFFD828"'
Last-Modified:
- - Fri, 06 Feb 2026 07:46:46 GMT
+ - Wed, 20 May 2026 09:02:18 GMT
Server:
- - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel Microsoft-HTTPAPI/2.0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -609,9 +608,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/82f099dd-b351-4ff4-8043-302176061d65/Files/test.parquet
+ uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/99456fdc-83d0-4259-958a-e19b2d7c9549/Files/test.parquet
response:
body:
string: !!binary |
@@ -640,13 +639,13 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:46:52 GMT
+ - Wed, 20 May 2026 09:02:23 GMT
ETag:
- - '"0x8DE6553E11C76A4"'
+ - '"0x8DEB64E7EFFD828"'
Last-Modified:
- - Fri, 06 Feb 2026 07:46:46 GMT
+ - Wed, 20 May 2026 09:02:18 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -668,14 +667,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -684,15 +684,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:53 GMT
+ - Wed, 20 May 2026 09:02:25 GMT
Pragma:
- no-cache
RequestId:
- - aed38ded-7273-4886-9d81-7ca8e31d62c4
+ - e3de4434-e20b-4a58-b576-86d4f1b5d584
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -718,14 +718,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "82f099dd-b351-4ff4-8043-302176061d65", "type": "Lakehouse",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "99456fdc-83d0-4259-958a-e19b2d7c9549", "type": "Lakehouse",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -734,15 +733,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '180'
+ - '168'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:53 GMT
+ - Wed, 20 May 2026 09:02:25 GMT
Pragma:
- no-cache
RequestId:
- - 53b0f683-a1b0-41e5-970d-64a9071734b4
+ - 26ecf122-b4c3-4d47-a60b-b6ea8282115c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -770,9 +769,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items/82f099dd-b351-4ff4-8043-302176061d65
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items/99456fdc-83d0-4259-958a-e19b2d7c9549
response:
body:
string: ''
@@ -788,11 +787,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:46:54 GMT
+ - Wed, 20 May 2026 09:02:27 GMT
Pragma:
- no-cache
RequestId:
- - 733f9eb7-d34a-4826-9f20-ccf8f136fa69
+ - 62c4718e-6a96-4338-abe1-5e746679091f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_onelake_to_local_success.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_onelake_to_local_success.yaml
index c0c534634..ba0e3ba8d 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_onelake_to_local_success.yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_onelake_to_local_success.yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:12 GMT
+ - Wed, 20 May 2026 09:01:48 GMT
Pragma:
- no-cache
RequestId:
- - 0a1f8d8b-f459-4469-9023-3a3da5c3df9d
+ - 0632cec4-3747-40a4-8ace-0ed4807580c7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,9 +62,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
string: '{"value": []}'
@@ -79,11 +80,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:13 GMT
+ - Wed, 20 May 2026 09:01:48 GMT
Pragma:
- no-cache
RequestId:
- - 3b546293-f425-4764-8552-3ff748eab7c5
+ - 28d355cb-9253-4c30-b744-1668b4cdd3ff
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -109,9 +110,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
string: '{"value": []}'
@@ -127,11 +128,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:14 GMT
+ - Wed, 20 May 2026 09:01:50 GMT
Pragma:
- no-cache
RequestId:
- - 3ff6e9bc-25b1-4b73-b7e9-37c742cfa6fe
+ - afc003c8-2525-4c44-9486-0b43b4737f72
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -156,18 +157,16 @@ interactions:
- keep-alive
Content-Length:
- '74'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/lakehouses
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/lakehouses
response:
body:
- string: '{"id": "88caa18f-7ddf-46d4-b509-041c5bb80695", "type": "Lakehouse",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}'
+ string: '{"id": "898f919f-2dbf-4fb1-8dbf-5f301ba5ef28", "type": "Lakehouse",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -176,17 +175,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '167'
+ - '156'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:16 GMT
+ - Wed, 20 May 2026 09:01:53 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - d496efb3-0d89-411c-baf2-99b6e9980c96
+ - e86255b9-f696-4cc7-86cf-a0a2674482e9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -212,14 +211,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -228,15 +228,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:18 GMT
+ - Wed, 20 May 2026 09:01:53 GMT
Pragma:
- no-cache
RequestId:
- - bcf29f92-9730-4e93-b322-effea383f616
+ - 679ae1d8-8ef4-4b3e-8881-01d6d2be56dd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -262,14 +262,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "88caa18f-7ddf-46d4-b509-041c5bb80695", "type": "Lakehouse",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "898f919f-2dbf-4fb1-8dbf-5f301ba5ef28", "type": "Lakehouse",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -278,15 +277,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '167'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:18 GMT
+ - Wed, 20 May 2026 09:01:55 GMT
Pragma:
- no-cache
RequestId:
- - 6fcbb3e0-2003-47d1-8bc2-2d543e63f3af
+ - a0742527-cc0b-4a46-8342-5506a6c6da90
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -314,9 +313,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: PUT
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/88caa18f-7ddf-46d4-b509-041c5bb80695/Files/test_cp_ol2lo.txt/?resource=file
+ uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/898f919f-2dbf-4fb1-8dbf-5f301ba5ef28/Files/test_cp_ol2lo.txt/?resource=file
response:
body:
string: ''
@@ -332,13 +331,13 @@ interactions:
Content-Length:
- '0'
Date:
- - Fri, 06 Feb 2026 07:46:19 GMT
+ - Wed, 20 May 2026 09:01:55 GMT
ETag:
- - '"0x8DE6553D1474360"'
+ - '"0x8DEB64E7161B400"'
Last-Modified:
- - Fri, 06 Feb 2026 07:46:20 GMT
+ - Wed, 20 May 2026 09:01:55 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel Microsoft-HTTPAPI/2.0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -362,11 +361,11 @@ interactions:
Content-Type:
- text/plain
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
x-ms-content-type:
- text/plain
method: PATCH
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/88caa18f-7ddf-46d4-b509-041c5bb80695/Files/test_cp_ol2lo.txt?action=append&position=0
+ uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/898f919f-2dbf-4fb1-8dbf-5f301ba5ef28/Files/test_cp_ol2lo.txt?action=append&position=0
response:
body:
string: ''
@@ -382,9 +381,9 @@ interactions:
Content-Length:
- '0'
Date:
- - Fri, 06 Feb 2026 07:46:21 GMT
+ - Wed, 20 May 2026 09:01:56 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel Microsoft-HTTPAPI/2.0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -406,11 +405,11 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
x-ms-content-type:
- text/plain
method: PATCH
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/88caa18f-7ddf-46d4-b509-041c5bb80695/Files/test_cp_ol2lo.txt?action=flush&position=13
+ uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/898f919f-2dbf-4fb1-8dbf-5f301ba5ef28/Files/test_cp_ol2lo.txt?action=flush&position=13
response:
body:
string: ''
@@ -426,13 +425,13 @@ interactions:
Content-Length:
- '0'
Date:
- - Fri, 06 Feb 2026 07:46:23 GMT
+ - Wed, 20 May 2026 09:01:56 GMT
ETag:
- - '"0x8DE6553D35CC2FC"'
+ - '"0x8DEB64E72052EB4"'
Last-Modified:
- - Fri, 06 Feb 2026 07:46:23 GMT
+ - Wed, 20 May 2026 09:01:56 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -452,14 +451,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -468,15 +468,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:24 GMT
+ - Wed, 20 May 2026 09:01:57 GMT
Pragma:
- no-cache
RequestId:
- - d798d02a-8fc0-4406-97ef-6c44409adc6b
+ - f18cbe27-40b0-4549-bd83-f2982585a32f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -502,15 +502,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "3d67541b-579f-4621-a6df-e2be3321e684", "type": "SQLEndpoint",
- "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "88caa18f-7ddf-46d4-b509-041c5bb80695", "type": "Lakehouse", "displayName":
- "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "53c22e80-6849-4cbb-9f39-419472d926b2", "type": "SQLEndpoint",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "898f919f-2dbf-4fb1-8dbf-5f301ba5ef28", "type": "Lakehouse", "displayName":
+ "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -519,15 +519,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '228'
+ - '214'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:24 GMT
+ - Wed, 20 May 2026 09:01:57 GMT
Pragma:
- no-cache
RequestId:
- - 675da539-f1c0-493e-9979-a078e322397b
+ - 7cbeece6-3dab-42a2-bbad-4d2511318542
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -553,9 +553,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: HEAD
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/88caa18f-7ddf-46d4-b509-041c5bb80695/Files/test_cp_ol2lo.txt
+ uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/898f919f-2dbf-4fb1-8dbf-5f301ba5ef28/Files/test_cp_ol2lo.txt
response:
body:
string: ''
@@ -575,13 +575,13 @@ interactions:
Content-Type:
- text/plain
Date:
- - Fri, 06 Feb 2026 07:46:27 GMT
+ - Wed, 20 May 2026 09:02:00 GMT
ETag:
- - '"0x8DE6553D35CC2FC"'
+ - '"0x8DEB64E72052EB4"'
Last-Modified:
- - Fri, 06 Feb 2026 07:46:23 GMT
+ - Wed, 20 May 2026 09:01:56 GMT
Server:
- - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -603,9 +603,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/88caa18f-7ddf-46d4-b509-041c5bb80695/Files/test_cp_ol2lo.txt
+ uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/898f919f-2dbf-4fb1-8dbf-5f301ba5ef28/Files/test_cp_ol2lo.txt
response:
body:
string: 'Hello world!
@@ -627,13 +627,13 @@ interactions:
Content-Type:
- text/plain
Date:
- - Fri, 06 Feb 2026 07:46:28 GMT
+ - Wed, 20 May 2026 09:02:00 GMT
ETag:
- - '"0x8DE6553D35CC2FC"'
+ - '"0x8DEB64E72052EB4"'
Last-Modified:
- - Fri, 06 Feb 2026 07:46:23 GMT
+ - Wed, 20 May 2026 09:01:56 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel Microsoft-HTTPAPI/2.0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -655,14 +655,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -671,15 +672,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:28 GMT
+ - Wed, 20 May 2026 09:02:01 GMT
Pragma:
- no-cache
RequestId:
- - b5f365ad-03ef-4f17-8599-44e298a76427
+ - 5fe82abc-c5f7-4496-b040-514fe0f69ec3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -705,15 +706,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "3d67541b-579f-4621-a6df-e2be3321e684", "type": "SQLEndpoint",
- "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "88caa18f-7ddf-46d4-b509-041c5bb80695", "type": "Lakehouse", "displayName":
- "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "53c22e80-6849-4cbb-9f39-419472d926b2", "type": "SQLEndpoint",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "898f919f-2dbf-4fb1-8dbf-5f301ba5ef28", "type": "Lakehouse", "displayName":
+ "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -722,15 +723,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '228'
+ - '214'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:30 GMT
+ - Wed, 20 May 2026 09:02:02 GMT
Pragma:
- no-cache
RequestId:
- - eb2783dd-9b03-4e9b-b892-1e68e53b0aab
+ - 0767bf92-8672-4a02-bfdd-550adff58017
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -756,9 +757,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: HEAD
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/88caa18f-7ddf-46d4-b509-041c5bb80695/Files/test_cp_ol2lo.txt
+ uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/898f919f-2dbf-4fb1-8dbf-5f301ba5ef28/Files/test_cp_ol2lo.txt
response:
body:
string: ''
@@ -778,13 +779,13 @@ interactions:
Content-Type:
- text/plain
Date:
- - Fri, 06 Feb 2026 07:46:32 GMT
+ - Wed, 20 May 2026 09:02:03 GMT
ETag:
- - '"0x8DE6553D35CC2FC"'
+ - '"0x8DEB64E72052EB4"'
Last-Modified:
- - Fri, 06 Feb 2026 07:46:23 GMT
+ - Wed, 20 May 2026 09:01:56 GMT
Server:
- - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -806,9 +807,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/88caa18f-7ddf-46d4-b509-041c5bb80695/Files/test_cp_ol2lo.txt
+ uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/898f919f-2dbf-4fb1-8dbf-5f301ba5ef28/Files/test_cp_ol2lo.txt
response:
body:
string: 'Hello world!
@@ -830,13 +831,13 @@ interactions:
Content-Type:
- text/plain
Date:
- - Fri, 06 Feb 2026 07:46:34 GMT
+ - Wed, 20 May 2026 09:02:03 GMT
ETag:
- - '"0x8DE6553D35CC2FC"'
+ - '"0x8DEB64E72052EB4"'
Last-Modified:
- - Fri, 06 Feb 2026 07:46:23 GMT
+ - Wed, 20 May 2026 09:01:56 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -858,14 +859,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -874,15 +876,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:34 GMT
+ - Wed, 20 May 2026 09:02:04 GMT
Pragma:
- no-cache
RequestId:
- - 44459ade-ed76-462b-8377-9e8524f6a666
+ - 5a359574-dfa5-4ed9-98bb-65f02716268b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -908,15 +910,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "3d67541b-579f-4621-a6df-e2be3321e684", "type": "SQLEndpoint",
- "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "88caa18f-7ddf-46d4-b509-041c5bb80695", "type": "Lakehouse", "displayName":
- "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "53c22e80-6849-4cbb-9f39-419472d926b2", "type": "SQLEndpoint",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "898f919f-2dbf-4fb1-8dbf-5f301ba5ef28", "type": "Lakehouse", "displayName":
+ "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -925,15 +927,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '228'
+ - '214'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:46:35 GMT
+ - Wed, 20 May 2026 09:02:04 GMT
Pragma:
- no-cache
RequestId:
- - 31fcfd98-4437-493b-869d-1b998079c61b
+ - eff9ecf3-6102-4952-9ce9-6365e247a815
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -961,9 +963,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items/88caa18f-7ddf-46d4-b509-041c5bb80695
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items/898f919f-2dbf-4fb1-8dbf-5f301ba5ef28
response:
body:
string: ''
@@ -979,11 +981,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:46:36 GMT
+ - Wed, 20 May 2026 09:02:05 GMT
Pragma:
- no-cache
RequestId:
- - d5aa9012-8a22-426b-ac54-0da298e73028
+ - 5a0e4473-9321-4083-bceb-f00e213b04a3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_onelake_to_onelake_success.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_onelake_to_onelake_success.yaml
index 77e30ec3e..470247ba9 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_onelake_to_onelake_success.yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_onelake_to_onelake_success.yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:43:23 GMT
+ - Wed, 20 May 2026 08:58:56 GMT
Pragma:
- no-cache
RequestId:
- - f46f165f-834e-4232-b9d0-b7feecf91ad5
+ - 30ae77a2-a06e-4baf-9326-e6a5c7b6da57
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,9 +62,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
string: '{"value": []}'
@@ -79,11 +80,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:43:24 GMT
+ - Wed, 20 May 2026 08:58:57 GMT
Pragma:
- no-cache
RequestId:
- - 0ed599a8-e19b-40be-8c91-f79ab7a676b1
+ - eb8bf435-e72b-4d56-9914-a64d8762d662
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -109,9 +110,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
string: '{"value": []}'
@@ -127,11 +128,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:43:25 GMT
+ - Wed, 20 May 2026 08:58:58 GMT
Pragma:
- no-cache
RequestId:
- - 11ce88f5-bdbb-413d-91a6-236e34549695
+ - aa923843-ab27-461b-bdcb-1def52fe7f94
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -156,18 +157,16 @@ interactions:
- keep-alive
Content-Length:
- '74'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/lakehouses
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/lakehouses
response:
body:
- string: '{"id": "13bda1b9-2d2d-4f15-96b6-954cd95441ce", "type": "Lakehouse",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}'
+ string: '{"id": "892f596b-02a6-44a5-8258-01c45ab45d12", "type": "Lakehouse",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -176,17 +175,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '168'
+ - '155'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:43:31 GMT
+ - Wed, 20 May 2026 08:59:03 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 42b3162b-8f12-4dfe-8c41-aa515fa9878c
+ - fcbedb3b-1e67-44ca-b87f-67f3932dc3f4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -212,14 +211,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -228,15 +228,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:43:31 GMT
+ - Wed, 20 May 2026 08:59:04 GMT
Pragma:
- no-cache
RequestId:
- - b6d1bfa5-0dc9-46dd-a5dc-2b6d17498323
+ - 3a91d50e-8273-4f90-8bb0-336573267d07
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -262,14 +262,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "13bda1b9-2d2d-4f15-96b6-954cd95441ce", "type": "Lakehouse",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "892f596b-02a6-44a5-8258-01c45ab45d12", "type": "Lakehouse",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -278,15 +277,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '179'
+ - '167'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:43:32 GMT
+ - Wed, 20 May 2026 08:59:05 GMT
Pragma:
- no-cache
RequestId:
- - 4b1d0ecd-255a-489e-8779-1b36b8c355bb
+ - bed7eada-ea08-408f-97df-763541b6aa4a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -312,14 +311,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "13bda1b9-2d2d-4f15-96b6-954cd95441ce", "type": "Lakehouse",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "892f596b-02a6-44a5-8258-01c45ab45d12", "type": "Lakehouse",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -328,15 +326,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '179'
+ - '167'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:43:33 GMT
+ - Wed, 20 May 2026 08:59:05 GMT
Pragma:
- no-cache
RequestId:
- - 10bc92c3-2fab-482c-a0a0-7315de37c85d
+ - 041d2d0c-af85-434f-b330-06f017387f4c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -361,18 +359,16 @@ interactions:
- keep-alive
Content-Length:
- '74'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/lakehouses
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/lakehouses
response:
body:
- string: '{"id": "fd446a4d-bff4-44f3-994f-fc04b426f76f", "type": "Lakehouse",
- "displayName": "fabcli000002", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}'
+ string: '{"id": "78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd", "type": "Lakehouse",
+ "displayName": "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -381,17 +377,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '167'
+ - '157'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:43:39 GMT
+ - Wed, 20 May 2026 08:59:09 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 846d88b0-0471-4cf0-a83e-507fc1f57e46
+ - 2e9d7c07-e28f-4479-9583-98144c4738c6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -417,14 +413,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -433,15 +430,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:43:40 GMT
+ - Wed, 20 May 2026 08:59:10 GMT
Pragma:
- no-cache
RequestId:
- - 97aae3cd-28f7-4113-b2f4-62ae7613f2e2
+ - 1bdf9033-5510-4fb8-ab83-cf339e9b620f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -467,15 +464,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "13bda1b9-2d2d-4f15-96b6-954cd95441ce", "type": "Lakehouse",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, {"id": "fd446a4d-bff4-44f3-994f-fc04b426f76f",
- "type": "Lakehouse", "displayName": "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "892f596b-02a6-44a5-8258-01c45ab45d12", "type": "Lakehouse",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd", "type": "Lakehouse", "displayName":
+ "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -484,15 +481,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '223'
+ - '211'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:43:42 GMT
+ - Wed, 20 May 2026 08:59:11 GMT
Pragma:
- no-cache
RequestId:
- - 71f7ad01-aaf4-4f0d-bae7-8f862bbc0ece
+ - 25bf895d-087f-43df-bd49-bf9246e6e1da
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -518,9 +515,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: HEAD
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/13bda1b9-2d2d-4f15-96b6-954cd95441ce/Files/test_cp_ol2ol.txt
+ uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/892f596b-02a6-44a5-8258-01c45ab45d12/Files/test_cp_ol2ol.txt
response:
body:
string: ''
@@ -534,20 +531,18 @@ interactions:
Access-Control-Expose-Headers:
- '*,Authorization'
Date:
- - Fri, 06 Feb 2026 07:43:45 GMT
+ - Wed, 20 May 2026 08:59:13 GMT
Server:
- - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
- Transfer-Encoding:
- - chunked
X-Content-Type-Options:
- nosniff
x-ms-error-code:
- - BlobNotFound
+ - PathNotFound
status:
code: 404
- message: The specified blob does not exist.
+ message: The specified path does not exist.
- request:
body: null
headers:
@@ -560,9 +555,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: HEAD
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/13bda1b9-2d2d-4f15-96b6-954cd95441ce/Files/test_cp_ol2ol.txt
+ uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/892f596b-02a6-44a5-8258-01c45ab45d12/Files/test_cp_ol2ol.txt
response:
body:
string: ''
@@ -576,9 +571,9 @@ interactions:
Access-Control-Expose-Headers:
- '*,Authorization'
Date:
- - Fri, 06 Feb 2026 07:43:47 GMT
+ - Wed, 20 May 2026 08:59:15 GMT
Server:
- - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel Microsoft-HTTPAPI/2.0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -586,10 +581,10 @@ interactions:
X-Content-Type-Options:
- nosniff
x-ms-error-code:
- - BlobNotFound
+ - PathNotFound
status:
code: 404
- message: The specified blob does not exist.
+ message: The specified path does not exist.
- request:
body: null
headers:
@@ -604,9 +599,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: PUT
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/13bda1b9-2d2d-4f15-96b6-954cd95441ce/Files/test_cp_ol2ol.txt/?resource=file
+ uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/892f596b-02a6-44a5-8258-01c45ab45d12/Files/test_cp_ol2ol.txt/?resource=file
response:
body:
string: ''
@@ -622,13 +617,13 @@ interactions:
Content-Length:
- '0'
Date:
- - Fri, 06 Feb 2026 07:43:50 GMT
+ - Wed, 20 May 2026 08:59:17 GMT
ETag:
- - '"0x8DE655377ED3E60"'
+ - '"0x8DEB64E12BBBD08"'
Last-Modified:
- - Fri, 06 Feb 2026 07:43:50 GMT
+ - Wed, 20 May 2026 08:59:17 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -652,11 +647,11 @@ interactions:
Content-Type:
- text/plain
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
x-ms-content-type:
- text/plain
method: PATCH
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/13bda1b9-2d2d-4f15-96b6-954cd95441ce/Files/test_cp_ol2ol.txt?action=append&position=0
+ uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/892f596b-02a6-44a5-8258-01c45ab45d12/Files/test_cp_ol2ol.txt?action=append&position=0
response:
body:
string: ''
@@ -672,9 +667,9 @@ interactions:
Content-Length:
- '0'
Date:
- - Fri, 06 Feb 2026 07:43:52 GMT
+ - Wed, 20 May 2026 08:59:18 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel Microsoft-HTTPAPI/2.0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -696,11 +691,11 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
x-ms-content-type:
- text/plain
method: PATCH
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/13bda1b9-2d2d-4f15-96b6-954cd95441ce/Files/test_cp_ol2ol.txt?action=flush&position=13
+ uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/892f596b-02a6-44a5-8258-01c45ab45d12/Files/test_cp_ol2ol.txt?action=flush&position=13
response:
body:
string: ''
@@ -716,13 +711,13 @@ interactions:
Content-Length:
- '0'
Date:
- - Fri, 06 Feb 2026 07:43:54 GMT
+ - Wed, 20 May 2026 08:59:21 GMT
ETag:
- - '"0x8DE65537A6749CC"'
+ - '"0x8DEB64E1559A254"'
Last-Modified:
- - Fri, 06 Feb 2026 07:43:54 GMT
+ - Wed, 20 May 2026 08:59:21 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel Microsoft-HTTPAPI/2.0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -742,14 +737,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -758,15 +754,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:43:55 GMT
+ - Wed, 20 May 2026 08:59:21 GMT
Pragma:
- no-cache
RequestId:
- - 1161f5d7-8279-45d2-a237-0b064cc121e4
+ - 938681ee-21b3-4d78-9866-0a3de73a663f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -792,19 +788,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "59db32a1-fe0e-4e37-9911-0c434267190d", "type": "SQLEndpoint",
- "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "30458c50-2456-479c-8e15-4aed29d9b293", "type": "SQLEndpoint", "displayName":
- "fabcli000002", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "13bda1b9-2d2d-4f15-96b6-954cd95441ce", "type": "Lakehouse", "displayName":
- "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "fd446a4d-bff4-44f3-994f-fc04b426f76f", "type": "Lakehouse", "displayName":
- "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "863e6caf-e081-473b-a293-44ea70521459", "type": "SQLEndpoint",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "480f0a7b-eebe-46d4-93fc-741fffb68dcd", "type": "SQLEndpoint", "displayName":
+ "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "892f596b-02a6-44a5-8258-01c45ab45d12", "type": "Lakehouse", "displayName":
+ "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd", "type": "Lakehouse", "displayName":
+ "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -813,15 +809,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '296'
+ - '279'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:43:55 GMT
+ - Wed, 20 May 2026 08:59:22 GMT
Pragma:
- no-cache
RequestId:
- - ac029495-de2f-44c9-b39c-1a57a4aab3b6
+ - b9b5bae2-a20d-48b2-b5df-351e12b906ac
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -847,9 +843,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: HEAD
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/13bda1b9-2d2d-4f15-96b6-954cd95441ce/Files/test_cp_ol2ol.txt
+ uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/892f596b-02a6-44a5-8258-01c45ab45d12/Files/test_cp_ol2ol.txt
response:
body:
string: ''
@@ -869,13 +865,13 @@ interactions:
Content-Type:
- text/plain
Date:
- - Fri, 06 Feb 2026 07:43:56 GMT
+ - Wed, 20 May 2026 08:59:24 GMT
ETag:
- - '"0x8DE65537A6749CC"'
+ - '"0x8DEB64E1559A254"'
Last-Modified:
- - Fri, 06 Feb 2026 07:43:54 GMT
+ - Wed, 20 May 2026 08:59:21 GMT
Server:
- - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -897,14 +893,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -913,15 +910,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:43:57 GMT
+ - Wed, 20 May 2026 08:59:25 GMT
Pragma:
- no-cache
RequestId:
- - 62fd1ebb-c21b-409d-a830-3abb78439f1f
+ - c8929cad-3034-42fa-9e92-692bc65373a5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -947,19 +944,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "59db32a1-fe0e-4e37-9911-0c434267190d", "type": "SQLEndpoint",
- "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "30458c50-2456-479c-8e15-4aed29d9b293", "type": "SQLEndpoint", "displayName":
- "fabcli000002", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "13bda1b9-2d2d-4f15-96b6-954cd95441ce", "type": "Lakehouse", "displayName":
- "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "fd446a4d-bff4-44f3-994f-fc04b426f76f", "type": "Lakehouse", "displayName":
- "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "863e6caf-e081-473b-a293-44ea70521459", "type": "SQLEndpoint",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "480f0a7b-eebe-46d4-93fc-741fffb68dcd", "type": "SQLEndpoint", "displayName":
+ "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "892f596b-02a6-44a5-8258-01c45ab45d12", "type": "Lakehouse", "displayName":
+ "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd", "type": "Lakehouse", "displayName":
+ "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -968,15 +965,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '296'
+ - '279'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:43:58 GMT
+ - Wed, 20 May 2026 08:59:25 GMT
Pragma:
- no-cache
RequestId:
- - b4e15818-86ab-4320-9ca3-a04d947c11ba
+ - 4cab7fc2-25f5-48f7-8c90-7fa07ed93b10
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1002,9 +999,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/13bda1b9-2d2d-4f15-96b6-954cd95441ce/Files/test_cp_ol2ol.txt
+ uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/892f596b-02a6-44a5-8258-01c45ab45d12/Files/test_cp_ol2ol.txt
response:
body:
string: 'Hello world!
@@ -1026,13 +1023,13 @@ interactions:
Content-Type:
- text/plain
Date:
- - Fri, 06 Feb 2026 07:44:00 GMT
+ - Wed, 20 May 2026 08:59:28 GMT
ETag:
- - '"0x8DE65537A6749CC"'
+ - '"0x8DEB64E1559A254"'
Last-Modified:
- - Fri, 06 Feb 2026 07:43:54 GMT
+ - Wed, 20 May 2026 08:59:21 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel Microsoft-HTTPAPI/2.0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1056,9 +1053,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: PUT
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/fd446a4d-bff4-44f3-994f-fc04b426f76f/Files/test_cp_ol2ol.txt/?resource=file
+ uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd/Files/test_cp_ol2ol.txt/?resource=file
response:
body:
string: ''
@@ -1074,13 +1071,13 @@ interactions:
Content-Length:
- '0'
Date:
- - Fri, 06 Feb 2026 07:44:03 GMT
+ - Wed, 20 May 2026 08:59:31 GMT
ETag:
- - '"0x8DE65537FB8DC64"'
+ - '"0x8DEB64E1ADBEC30"'
Last-Modified:
- - Fri, 06 Feb 2026 07:44:03 GMT
+ - Wed, 20 May 2026 08:59:30 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel Microsoft-HTTPAPI/2.0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1104,11 +1101,11 @@ interactions:
Content-Type:
- text/plain
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
x-ms-content-type:
- text/plain
method: PATCH
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/fd446a4d-bff4-44f3-994f-fc04b426f76f/Files/test_cp_ol2ol.txt?action=append&position=0
+ uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd/Files/test_cp_ol2ol.txt?action=append&position=0
response:
body:
string: ''
@@ -1124,9 +1121,9 @@ interactions:
Content-Length:
- '0'
Date:
- - Fri, 06 Feb 2026 07:44:05 GMT
+ - Wed, 20 May 2026 08:59:31 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1148,11 +1145,11 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
x-ms-content-type:
- text/plain
method: PATCH
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/fd446a4d-bff4-44f3-994f-fc04b426f76f/Files/test_cp_ol2ol.txt?action=flush&position=13
+ uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd/Files/test_cp_ol2ol.txt?action=flush&position=13
response:
body:
string: ''
@@ -1168,13 +1165,13 @@ interactions:
Content-Length:
- '0'
Date:
- - Fri, 06 Feb 2026 07:44:07 GMT
+ - Wed, 20 May 2026 08:59:33 GMT
ETag:
- - '"0x8DE65538241BEB0"'
+ - '"0x8DEB64E1CE0D47C"'
Last-Modified:
- - Fri, 06 Feb 2026 07:44:07 GMT
+ - Wed, 20 May 2026 08:59:34 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1194,14 +1191,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1210,15 +1208,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:07 GMT
+ - Wed, 20 May 2026 08:59:35 GMT
Pragma:
- no-cache
RequestId:
- - f8230566-e09d-4cf4-a1f3-5d53c50fc977
+ - 684d132d-545a-456e-86a5-cb8b8834dacd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1244,19 +1242,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "59db32a1-fe0e-4e37-9911-0c434267190d", "type": "SQLEndpoint",
- "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "30458c50-2456-479c-8e15-4aed29d9b293", "type": "SQLEndpoint", "displayName":
- "fabcli000002", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "13bda1b9-2d2d-4f15-96b6-954cd95441ce", "type": "Lakehouse", "displayName":
- "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "fd446a4d-bff4-44f3-994f-fc04b426f76f", "type": "Lakehouse", "displayName":
- "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "863e6caf-e081-473b-a293-44ea70521459", "type": "SQLEndpoint",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "480f0a7b-eebe-46d4-93fc-741fffb68dcd", "type": "SQLEndpoint", "displayName":
+ "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "892f596b-02a6-44a5-8258-01c45ab45d12", "type": "Lakehouse", "displayName":
+ "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd", "type": "Lakehouse", "displayName":
+ "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1265,15 +1263,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '296'
+ - '279'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:09 GMT
+ - Wed, 20 May 2026 08:59:35 GMT
Pragma:
- no-cache
RequestId:
- - d10b8a62-c982-424a-92b6-b683ae1379dd
+ - efc78d69-e03e-454c-bdfb-8db5754433b7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1299,14 +1297,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/?recursive=false&resource=filesystem&directory=fd446a4d-bff4-44f3-994f-fc04b426f76f%2FFiles&getShortcutMetadata=true
+ uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/?recursive=false&resource=filesystem&directory=78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd%2FFiles&getShortcutMetadata=true
response:
body:
- string: '{"paths": [{"name": "fd446a4d-bff4-44f3-994f-fc04b426f76f/Files/test_cp_ol2ol.txt",
- "creationTime": "134148374432701540", "lastModified": "Fri, 06 Feb 2026 07:44:07
- GMT", "etag": "0x8DE65538241BEB0", "contentLength": "13", "owner": "bdb39224-bd86-4d14-bc6e-18637e6902b0",
+ string: '{"paths": [{"name": "78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd/Files/test_cp_ol2ol.txt",
+ "creationTime": "134237411707513904", "lastModified": "Wed, 20 May 2026 08:59:34
+ GMT", "etag": "0x8DEB64E1CE0D47C", "contentLength": "13", "owner": "bdb39224-bd86-4d14-bc6e-18637e6902b0",
"group": "bdb39224-bd86-4d14-bc6e-18637e6902b0", "permissions": "rw-r-----",
"expiryTime": "0"}], "ContinuationToken": null}'
headers:
@@ -1321,9 +1319,9 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:10 GMT
+ - Wed, 20 May 2026 08:59:37 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel Microsoft-HTTPAPI/2.0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -1345,14 +1343,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1361,15 +1360,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:11 GMT
+ - Wed, 20 May 2026 08:59:38 GMT
Pragma:
- no-cache
RequestId:
- - 5b5c47e6-4c6d-4e2c-adcc-c489cfea9e4c
+ - 2c8b3b77-bc2e-4d9b-bcdd-9bdb26a967df
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1395,19 +1394,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "59db32a1-fe0e-4e37-9911-0c434267190d", "type": "SQLEndpoint",
- "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "30458c50-2456-479c-8e15-4aed29d9b293", "type": "SQLEndpoint", "displayName":
- "fabcli000002", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "13bda1b9-2d2d-4f15-96b6-954cd95441ce", "type": "Lakehouse", "displayName":
- "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "fd446a4d-bff4-44f3-994f-fc04b426f76f", "type": "Lakehouse", "displayName":
- "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "863e6caf-e081-473b-a293-44ea70521459", "type": "SQLEndpoint",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "480f0a7b-eebe-46d4-93fc-741fffb68dcd", "type": "SQLEndpoint", "displayName":
+ "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "892f596b-02a6-44a5-8258-01c45ab45d12", "type": "Lakehouse", "displayName":
+ "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd", "type": "Lakehouse", "displayName":
+ "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1416,15 +1415,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '296'
+ - '279'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:12 GMT
+ - Wed, 20 May 2026 08:59:39 GMT
Pragma:
- no-cache
RequestId:
- - 2613494e-7d70-4794-a85f-1810b11673ba
+ - 0417bd94-b17f-4875-a7e4-6ef18c07dea0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1450,9 +1449,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: HEAD
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/13bda1b9-2d2d-4f15-96b6-954cd95441ce/Files/test_cp_ol2ol.txt
+ uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/892f596b-02a6-44a5-8258-01c45ab45d12/Files/test_cp_ol2ol.txt
response:
body:
string: ''
@@ -1472,13 +1471,13 @@ interactions:
Content-Type:
- text/plain
Date:
- - Fri, 06 Feb 2026 07:44:14 GMT
+ - Wed, 20 May 2026 08:59:40 GMT
ETag:
- - '"0x8DE65537A6749CC"'
+ - '"0x8DEB64E1559A254"'
Last-Modified:
- - Fri, 06 Feb 2026 07:43:54 GMT
+ - Wed, 20 May 2026 08:59:21 GMT
Server:
- - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1500,14 +1499,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1516,15 +1516,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:15 GMT
+ - Wed, 20 May 2026 08:59:42 GMT
Pragma:
- no-cache
RequestId:
- - 4b244b54-9831-4545-95e5-c209fced7306
+ - 18eb6280-1472-4089-a9fb-44112ea99577
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1550,19 +1550,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "59db32a1-fe0e-4e37-9911-0c434267190d", "type": "SQLEndpoint",
- "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "30458c50-2456-479c-8e15-4aed29d9b293", "type": "SQLEndpoint", "displayName":
- "fabcli000002", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "13bda1b9-2d2d-4f15-96b6-954cd95441ce", "type": "Lakehouse", "displayName":
- "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "fd446a4d-bff4-44f3-994f-fc04b426f76f", "type": "Lakehouse", "displayName":
- "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "863e6caf-e081-473b-a293-44ea70521459", "type": "SQLEndpoint",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "480f0a7b-eebe-46d4-93fc-741fffb68dcd", "type": "SQLEndpoint", "displayName":
+ "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "892f596b-02a6-44a5-8258-01c45ab45d12", "type": "Lakehouse", "displayName":
+ "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd", "type": "Lakehouse", "displayName":
+ "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1571,15 +1571,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '296'
+ - '279'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:15 GMT
+ - Wed, 20 May 2026 08:59:42 GMT
Pragma:
- no-cache
RequestId:
- - 665f99f3-5305-4524-a229-f43c0ce95198
+ - 87cca82b-cab9-4526-bfb7-ea4121bbb052
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1605,9 +1605,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: HEAD
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/fd446a4d-bff4-44f3-994f-fc04b426f76f/Files/renamed_test_cp_ol2ol.txt
+ uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd/Files/renamed_test_cp_ol2ol.txt
response:
body:
string: ''
@@ -1621,9 +1621,9 @@ interactions:
Access-Control-Expose-Headers:
- '*,Authorization'
Date:
- - Fri, 06 Feb 2026 07:44:18 GMT
+ - Wed, 20 May 2026 08:59:45 GMT
Server:
- - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel Microsoft-HTTPAPI/2.0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -1631,10 +1631,10 @@ interactions:
X-Content-Type-Options:
- nosniff
x-ms-error-code:
- - BlobNotFound
+ - PathNotFound
status:
code: 404
- message: The specified blob does not exist.
+ message: The specified path does not exist.
- request:
body: null
headers:
@@ -1647,9 +1647,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: HEAD
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/fd446a4d-bff4-44f3-994f-fc04b426f76f/Files/renamed_test_cp_ol2ol.txt
+ uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd/Files/renamed_test_cp_ol2ol.txt
response:
body:
string: ''
@@ -1663,9 +1663,9 @@ interactions:
Access-Control-Expose-Headers:
- '*,Authorization'
Date:
- - Fri, 06 Feb 2026 07:44:20 GMT
+ - Wed, 20 May 2026 08:59:47 GMT
Server:
- - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel Microsoft-HTTPAPI/2.0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -1673,10 +1673,10 @@ interactions:
X-Content-Type-Options:
- nosniff
x-ms-error-code:
- - BlobNotFound
+ - PathNotFound
status:
code: 404
- message: The specified blob does not exist.
+ message: The specified path does not exist.
- request:
body: null
headers:
@@ -1689,9 +1689,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/13bda1b9-2d2d-4f15-96b6-954cd95441ce/Files/test_cp_ol2ol.txt
+ uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/892f596b-02a6-44a5-8258-01c45ab45d12/Files/test_cp_ol2ol.txt
response:
body:
string: 'Hello world!
@@ -1713,13 +1713,13 @@ interactions:
Content-Type:
- text/plain
Date:
- - Fri, 06 Feb 2026 07:44:22 GMT
+ - Wed, 20 May 2026 08:59:49 GMT
ETag:
- - '"0x8DE65537A6749CC"'
+ - '"0x8DEB64E1559A254"'
Last-Modified:
- - Fri, 06 Feb 2026 07:43:54 GMT
+ - Wed, 20 May 2026 08:59:21 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel Microsoft-HTTPAPI/2.0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1743,9 +1743,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: PUT
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/fd446a4d-bff4-44f3-994f-fc04b426f76f/Files/renamed_test_cp_ol2ol.txt/?resource=file
+ uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd/Files/renamed_test_cp_ol2ol.txt/?resource=file
response:
body:
string: ''
@@ -1761,13 +1761,13 @@ interactions:
Content-Length:
- '0'
Date:
- - Fri, 06 Feb 2026 07:44:24 GMT
+ - Wed, 20 May 2026 08:59:51 GMT
ETag:
- - '"0x8DE65538CBD08CC"'
+ - '"0x8DEB64E27476C6C"'
Last-Modified:
- - Fri, 06 Feb 2026 07:44:25 GMT
+ - Wed, 20 May 2026 08:59:51 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel Microsoft-HTTPAPI/2.0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1791,11 +1791,11 @@ interactions:
Content-Type:
- text/plain
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
x-ms-content-type:
- text/plain
method: PATCH
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/fd446a4d-bff4-44f3-994f-fc04b426f76f/Files/renamed_test_cp_ol2ol.txt?action=append&position=0
+ uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd/Files/renamed_test_cp_ol2ol.txt?action=append&position=0
response:
body:
string: ''
@@ -1811,9 +1811,9 @@ interactions:
Content-Length:
- '0'
Date:
- - Fri, 06 Feb 2026 07:44:26 GMT
+ - Wed, 20 May 2026 08:59:53 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel Microsoft-HTTPAPI/2.0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1835,11 +1835,11 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
x-ms-content-type:
- text/plain
method: PATCH
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/fd446a4d-bff4-44f3-994f-fc04b426f76f/Files/renamed_test_cp_ol2ol.txt?action=flush&position=13
+ uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd/Files/renamed_test_cp_ol2ol.txt?action=flush&position=13
response:
body:
string: ''
@@ -1855,13 +1855,13 @@ interactions:
Content-Length:
- '0'
Date:
- - Fri, 06 Feb 2026 07:44:29 GMT
+ - Wed, 20 May 2026 08:59:55 GMT
ETag:
- - '"0x8DE65538F3C2EC8"'
+ - '"0x8DEB64E29F1D6EC"'
Last-Modified:
- - Fri, 06 Feb 2026 07:44:29 GMT
+ - Wed, 20 May 2026 08:59:56 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1881,14 +1881,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1897,15 +1898,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:29 GMT
+ - Wed, 20 May 2026 08:59:56 GMT
Pragma:
- no-cache
RequestId:
- - bedc0479-360b-47d9-b561-746ec9ce88cd
+ - 73ea9b92-ac65-447b-9907-b8a1555c52f2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1931,19 +1932,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "59db32a1-fe0e-4e37-9911-0c434267190d", "type": "SQLEndpoint",
- "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "30458c50-2456-479c-8e15-4aed29d9b293", "type": "SQLEndpoint", "displayName":
- "fabcli000002", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "13bda1b9-2d2d-4f15-96b6-954cd95441ce", "type": "Lakehouse", "displayName":
- "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "fd446a4d-bff4-44f3-994f-fc04b426f76f", "type": "Lakehouse", "displayName":
- "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "863e6caf-e081-473b-a293-44ea70521459", "type": "SQLEndpoint",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "480f0a7b-eebe-46d4-93fc-741fffb68dcd", "type": "SQLEndpoint", "displayName":
+ "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "892f596b-02a6-44a5-8258-01c45ab45d12", "type": "Lakehouse", "displayName":
+ "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd", "type": "Lakehouse", "displayName":
+ "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1952,15 +1953,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '296'
+ - '279'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:30 GMT
+ - Wed, 20 May 2026 08:59:57 GMT
Pragma:
- no-cache
RequestId:
- - eb85b15e-6871-4fce-94f5-3f82b75a3536
+ - 347d9910-982d-4c2f-880c-890635aadf6f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1986,18 +1987,18 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/?recursive=false&resource=filesystem&directory=fd446a4d-bff4-44f3-994f-fc04b426f76f%2FFiles&getShortcutMetadata=true
+ uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/?recursive=false&resource=filesystem&directory=78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd%2FFiles&getShortcutMetadata=true
response:
body:
- string: '{"paths": [{"name": "fd446a4d-bff4-44f3-994f-fc04b426f76f/Files/renamed_test_cp_ol2ol.txt",
- "creationTime": "134148374651078860", "lastModified": "Fri, 06 Feb 2026 07:44:29
- GMT", "etag": "0x8DE65538F3C2EC8", "contentLength": "13", "owner": "bdb39224-bd86-4d14-bc6e-18637e6902b0",
+ string: '{"paths": [{"name": "78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd/Files/renamed_test_cp_ol2ol.txt",
+ "creationTime": "134237411915885676", "lastModified": "Wed, 20 May 2026 08:59:56
+ GMT", "etag": "0x8DEB64E29F1D6EC", "contentLength": "13", "owner": "bdb39224-bd86-4d14-bc6e-18637e6902b0",
"group": "bdb39224-bd86-4d14-bc6e-18637e6902b0", "permissions": "rw-r-----",
- "expiryTime": "0"}, {"name": "fd446a4d-bff4-44f3-994f-fc04b426f76f/Files/test_cp_ol2ol.txt",
- "creationTime": "134148374432701540", "lastModified": "Fri, 06 Feb 2026 07:44:07
- GMT", "etag": "0x8DE65538241BEB0", "contentLength": "13", "owner": "bdb39224-bd86-4d14-bc6e-18637e6902b0",
+ "expiryTime": "0"}, {"name": "78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd/Files/test_cp_ol2ol.txt",
+ "creationTime": "134237411707513904", "lastModified": "Wed, 20 May 2026 08:59:34
+ GMT", "etag": "0x8DEB64E1CE0D47C", "contentLength": "13", "owner": "bdb39224-bd86-4d14-bc6e-18637e6902b0",
"group": "bdb39224-bd86-4d14-bc6e-18637e6902b0", "permissions": "rw-r-----",
"expiryTime": "0"}], "ContinuationToken": null}'
headers:
@@ -2012,9 +2013,9 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:32 GMT
+ - Wed, 20 May 2026 08:59:58 GMT
Server:
- - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ - Kestrel
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -2036,14 +2037,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2052,15 +2054,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:33 GMT
+ - Wed, 20 May 2026 09:00:00 GMT
Pragma:
- no-cache
RequestId:
- - 9da45682-62d3-49a4-b6d5-a8bdf204b6bd
+ - d37d81c7-f33c-4b67-804a-835fdf515bbc
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2086,19 +2088,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "59db32a1-fe0e-4e37-9911-0c434267190d", "type": "SQLEndpoint",
- "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "30458c50-2456-479c-8e15-4aed29d9b293", "type": "SQLEndpoint", "displayName":
- "fabcli000002", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "13bda1b9-2d2d-4f15-96b6-954cd95441ce", "type": "Lakehouse", "displayName":
- "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "fd446a4d-bff4-44f3-994f-fc04b426f76f", "type": "Lakehouse", "displayName":
- "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "863e6caf-e081-473b-a293-44ea70521459", "type": "SQLEndpoint",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "480f0a7b-eebe-46d4-93fc-741fffb68dcd", "type": "SQLEndpoint", "displayName":
+ "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "892f596b-02a6-44a5-8258-01c45ab45d12", "type": "Lakehouse", "displayName":
+ "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd", "type": "Lakehouse", "displayName":
+ "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2107,15 +2109,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '296'
+ - '279'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:34 GMT
+ - Wed, 20 May 2026 09:00:01 GMT
Pragma:
- no-cache
RequestId:
- - 38f47cfb-1c4b-40ec-b9eb-9fd61ed75f67
+ - 1db5e677-f34f-46c7-859e-c08f225c044e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2143,9 +2145,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items/fd446a4d-bff4-44f3-994f-fc04b426f76f
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items/78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd
response:
body:
string: ''
@@ -2161,11 +2163,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:44:35 GMT
+ - Wed, 20 May 2026 09:00:02 GMT
Pragma:
- no-cache
RequestId:
- - 942c7a63-f93e-487a-adb8-6d0fef405bbe
+ - fd0ae4ce-e83e-4a16-9525-a8c60bd40654
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2191,14 +2193,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2207,15 +2210,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:36 GMT
+ - Wed, 20 May 2026 09:00:02 GMT
Pragma:
- no-cache
RequestId:
- - 2281d6f5-add2-4d48-92dc-f913aec1b383
+ - 8782780c-98d8-4bf5-8a65-256a54c92a7f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2241,15 +2244,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "59db32a1-fe0e-4e37-9911-0c434267190d", "type": "SQLEndpoint",
- "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"},
- {"id": "13bda1b9-2d2d-4f15-96b6-954cd95441ce", "type": "Lakehouse", "displayName":
- "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "863e6caf-e081-473b-a293-44ea70521459", "type": "SQLEndpoint",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"},
+ {"id": "892f596b-02a6-44a5-8258-01c45ab45d12", "type": "Lakehouse", "displayName":
+ "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2258,15 +2261,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '228'
+ - '214'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:44:36 GMT
+ - Wed, 20 May 2026 09:00:03 GMT
Pragma:
- no-cache
RequestId:
- - c12e9128-2041-45c3-8a65-21f022ddc5de
+ - cc99c6c6-805e-4427-959f-b75ad91702a7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2294,9 +2297,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items/13bda1b9-2d2d-4f15-96b6-954cd95441ce
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items/892f596b-02a6-44a5-8258-01c45ab45d12
response:
body:
string: ''
@@ -2312,11 +2315,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:44:38 GMT
+ - Wed, 20 May 2026 09:00:04 GMT
Pragma:
- no-cache
RequestId:
- - 10b722c1-b200-41f7-a031-332a3907f043
+ - ee6e258f-5425-4f28-b012-9f52e453562a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_virtual_workspace_item_not_supported_failure[.domains].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_virtual_workspace_item_not_supported_failure[.domains].yaml
index ba9fa41e1..719655873 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_virtual_workspace_item_not_supported_failure[.domains].yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_virtual_workspace_item_not_supported_failure[.domains].yaml
@@ -11,7 +11,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/admin/domains
response:
@@ -29,11 +29,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:41:26 GMT
+ - Wed, 20 May 2026 08:58:16 GMT
Pragma:
- no-cache
RequestId:
- - f5ce672d-020a-4697-8116-88d416a6f8ce
+ - 40454280-f704-41c1-b1e7-c494fd3e0b3f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,12 +61,12 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/admin/domains
response:
body:
- string: '{"contributorsScope": "AllTenant", "id": "13b0ce95-dc6a-429e-bf62-40caa6ee444a",
+ string: '{"contributorsScope": "AllTenant", "id": "a70cfe11-735d-40a8-9e34-70c03d7276fb",
"displayName": "fabcli000001", "description": ""}'
headers:
Access-Control-Expose-Headers:
@@ -80,13 +80,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:41:26 GMT
+ - Wed, 20 May 2026 08:58:17 GMT
Location:
- - https://api.fabric.microsoft.com/v1/admin/domains/13b0ce95-dc6a-429e-bf62-40caa6ee444a
+ - https://api.fabric.microsoft.com/v1/admin/domains/a70cfe11-735d-40a8-9e34-70c03d7276fb
Pragma:
- no-cache
RequestId:
- - 8fbe93df-31f8-49bd-9545-6b8d96aadca1
+ - 7c7fb0c7-96d9-4f47-aa34-52887b0a1b72
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -112,12 +112,12 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/admin/domains
response:
body:
- string: '{"domains": [{"contributorsScope": "AllTenant", "id": "13b0ce95-dc6a-429e-bf62-40caa6ee444a",
+ string: '{"domains": [{"contributorsScope": "AllTenant", "id": "a70cfe11-735d-40a8-9e34-70c03d7276fb",
"displayName": "fabcli000001", "description": ""}]}'
headers:
Access-Control-Expose-Headers:
@@ -127,15 +127,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '225'
+ - '227'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:41:28 GMT
+ - Wed, 20 May 2026 08:58:18 GMT
Pragma:
- no-cache
RequestId:
- - 34975b56-5b4b-4497-b3b3-3769cabb4d56
+ - d7c64d82-96e5-49aa-a444-277774d58c4f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -161,12 +161,12 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/admin/domains
response:
body:
- string: '{"domains": [{"contributorsScope": "AllTenant", "id": "13b0ce95-dc6a-429e-bf62-40caa6ee444a",
+ string: '{"domains": [{"contributorsScope": "AllTenant", "id": "a70cfe11-735d-40a8-9e34-70c03d7276fb",
"displayName": "fabcli000001", "description": ""}]}'
headers:
Access-Control-Expose-Headers:
@@ -176,15 +176,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '225'
+ - '227'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:41:29 GMT
+ - Wed, 20 May 2026 08:58:19 GMT
Pragma:
- no-cache
RequestId:
- - adbf91c4-3458-4b87-bc9b-534f82b0f80a
+ - 3903d9e1-4222-434e-bccf-f424becd9cbd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -210,12 +210,12 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/admin/domains
response:
body:
- string: '{"domains": [{"contributorsScope": "AllTenant", "id": "13b0ce95-dc6a-429e-bf62-40caa6ee444a",
+ string: '{"domains": [{"contributorsScope": "AllTenant", "id": "a70cfe11-735d-40a8-9e34-70c03d7276fb",
"displayName": "fabcli000001", "description": ""}]}'
headers:
Access-Control-Expose-Headers:
@@ -225,15 +225,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '225'
+ - '227'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:41:30 GMT
+ - Wed, 20 May 2026 08:58:20 GMT
Pragma:
- no-cache
RequestId:
- - 440d17ac-f50a-4ff0-b7c9-f7b41ba096e3
+ - 9f08b98e-57a1-440f-98a8-a03e3e7d907e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -261,9 +261,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/admin/domains/13b0ce95-dc6a-429e-bf62-40caa6ee444a
+ uri: https://api.fabric.microsoft.com/v1/admin/domains/a70cfe11-735d-40a8-9e34-70c03d7276fb
response:
body:
string: ''
@@ -279,11 +279,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:41:30 GMT
+ - Wed, 20 May 2026 08:58:21 GMT
Pragma:
- no-cache
RequestId:
- - d2c55b8f-6c79-4c09-830e-bf4dc92f1eb5
+ - 9298408c-b40f-4d6b-a881-26166179181c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_virtual_workspace_item_not_supported_failure[.gateways].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_virtual_workspace_item_not_supported_failure[.gateways].yaml
index 7c3be1a11..bdb917eb5 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_virtual_workspace_item_not_supported_failure[.gateways].yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_virtual_workspace_item_not_supported_failure[.gateways].yaml
@@ -11,7 +11,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/gateways
response:
@@ -25,15 +25,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '1263'
+ - '1460'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:42:55 GMT
+ - Wed, 20 May 2026 08:58:22 GMT
Pragma:
- no-cache
RequestId:
- - ed7a5671-412d-4875-8c54-34a5d2509680
+ - fcdcc84d-c999-4194-84c7-5a73b14be9c6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -59,7 +59,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -75,15 +75,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '427'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:42:59 GMT
+ - Wed, 20 May 2026 08:58:28 GMT
Pragma:
- no-cache
RequestId:
- - 83502241-b0f2-47c4-a88f-00fb14834aff
+ - afa8beb0-14dd-4464-b5f8-324d2e817583
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -109,7 +109,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://management.azure.com/subscriptions?api-version=2022-12-01
response:
@@ -124,7 +124,7 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:43:00 GMT
+ - Wed, 20 May 2026 08:58:29 GMT
Expires:
- '-1'
Pragma:
@@ -150,7 +150,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/virtualNetworks?api-version=2024-05-01
response:
@@ -162,11 +162,11 @@ interactions:
Cache-Control:
- no-cache
Content-Length:
- - '2758'
+ - '2962'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:43:01 GMT
+ - Wed, 20 May 2026 08:58:30 GMT
Expires:
- '-1'
Pragma:
@@ -198,7 +198,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/gateways
response:
@@ -207,7 +207,7 @@ interactions:
"virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name",
"subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group",
"subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep":
- 30, "numberOfMemberGateways": 1, "id": "6e0da460-ac99-41af-bf36-ef238a4d9dee",
+ 30, "numberOfMemberGateways": 1, "id": "c9b66737-5f93-4315-8f16-3bde89a86a82",
"type": "VirtualNetwork"}'
headers:
Access-Control-Expose-Headers:
@@ -221,13 +221,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:43:16 GMT
+ - Wed, 20 May 2026 08:58:49 GMT
Location:
- - https://api.fabric.microsoft.com/v1/gateways/6e0da460-ac99-41af-bf36-ef238a4d9dee
+ - https://api.fabric.microsoft.com/v1/gateways/c9b66737-5f93-4315-8f16-3bde89a86a82
Pragma:
- no-cache
RequestId:
- - 6ab61a30-bdd2-4950-985a-2e074ef19a78
+ - 7efd4d74-dbd6-4bb5-ab38-b80c730fd4dd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -253,7 +253,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/gateways
response:
@@ -262,7 +262,7 @@ interactions:
"virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name",
"subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group",
"subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep":
- 30, "numberOfMemberGateways": 1, "id": "6e0da460-ac99-41af-bf36-ef238a4d9dee",
+ 30, "numberOfMemberGateways": 1, "id": "c9b66737-5f93-4315-8f16-3bde89a86a82",
"type": "VirtualNetwork"}]}'
headers:
Access-Control-Expose-Headers:
@@ -272,15 +272,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '1304'
+ - '1500'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:43:17 GMT
+ - Wed, 20 May 2026 08:58:50 GMT
Pragma:
- no-cache
RequestId:
- - ed94b2cd-c3b8-4db0-85df-aae3a748ab0e
+ - 1d514a35-43e5-497f-b75b-815afa7961b2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -306,7 +306,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/gateways
response:
@@ -315,7 +315,7 @@ interactions:
"virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name",
"subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group",
"subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep":
- 30, "numberOfMemberGateways": 1, "id": "6e0da460-ac99-41af-bf36-ef238a4d9dee",
+ 30, "numberOfMemberGateways": 1, "id": "c9b66737-5f93-4315-8f16-3bde89a86a82",
"type": "VirtualNetwork"}]}'
headers:
Access-Control-Expose-Headers:
@@ -325,15 +325,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '1304'
+ - '1500'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:43:18 GMT
+ - Wed, 20 May 2026 08:58:52 GMT
Pragma:
- no-cache
RequestId:
- - 173d4f4e-9c48-4bf0-9cb6-c85d283f0c81
+ - e8ea558d-4f77-4539-a64b-9b83161ff01d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -359,7 +359,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/gateways
response:
@@ -368,7 +368,7 @@ interactions:
"virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name",
"subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group",
"subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep":
- 30, "numberOfMemberGateways": 1, "id": "6e0da460-ac99-41af-bf36-ef238a4d9dee",
+ 30, "numberOfMemberGateways": 1, "id": "c9b66737-5f93-4315-8f16-3bde89a86a82",
"type": "VirtualNetwork"}]}'
headers:
Access-Control-Expose-Headers:
@@ -378,15 +378,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '1304'
+ - '1500'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:43:19 GMT
+ - Wed, 20 May 2026 08:58:53 GMT
Pragma:
- no-cache
RequestId:
- - d824b543-967b-4aa5-a85d-02b50694e4d8
+ - 107460b2-82fc-4e44-876e-34894d421c3f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -414,9 +414,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/gateways/6e0da460-ac99-41af-bf36-ef238a4d9dee
+ uri: https://api.fabric.microsoft.com/v1/gateways/c9b66737-5f93-4315-8f16-3bde89a86a82
response:
body:
string: ''
@@ -432,11 +432,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:43:22 GMT
+ - Wed, 20 May 2026 08:58:56 GMT
Pragma:
- no-cache
RequestId:
- - 94e86e4e-8dd9-4d20-a011-14ebb11b1ae1
+ - e4584b6e-4bbb-431f-92f8-a4e93ccd4d98
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_folder_success.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_folder_success.yaml
index b1935b416..61ded8066 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_folder_success.yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_folder_success.yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:24:53 GMT
+ - Wed, 20 May 2026 08:42:57 GMT
Pragma:
- no-cache
RequestId:
- - 5d7893be-2ade-4bc4-8eb9-21c0e5e95404
+ - 56ee9a17-7018-41d7-94e5-e8d266c31bde
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,14 +62,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -77,15 +79,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:24:54 GMT
+ - Wed, 20 May 2026 08:42:57 GMT
Pragma:
- no-cache
RequestId:
- - 7598bfe0-1a8b-41bc-9260-f702c7b6d3bb
+ - 49a377d5-be48-48e3-b361-93949f00b9ef
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -111,7 +113,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -127,15 +129,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '425'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:25:00 GMT
+ - Wed, 20 May 2026 08:43:02 GMT
Pragma:
- no-cache
RequestId:
- - 3516858b-1855-43de-a9c4-35ab7f4fb374
+ - ae7dafde-28d6-4d27-92b2-cef25a07dc7e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -160,16 +162,16 @@ interactions:
- keep-alive
Content-Length:
- '89'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -178,17 +180,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '167'
+ - '154'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:25:09 GMT
+ - Wed, 20 May 2026 08:43:10 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/1da9d768-e2c2-494b-9eea-755c6a674b9a
+ - https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c
Pragma:
- no-cache
RequestId:
- - e41453d2-017f-4e03-bbf8-bce5f0ade240
+ - 9a43f582-ea00-4630-8728-736e5087354b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -214,15 +216,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -231,15 +235,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2844'
+ - '2659'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:25:09 GMT
+ - Wed, 20 May 2026 08:43:12 GMT
Pragma:
- no-cache
RequestId:
- - 2cfb6a06-fdce-496c-9fa8-d1da244b6a4e
+ - f82465f2-f669-4025-a1ab-95ad0a9c6f36
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -265,15 +269,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -282,15 +288,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2844'
+ - '2659'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:25:10 GMT
+ - Wed, 20 May 2026 08:43:12 GMT
Pragma:
- no-cache
RequestId:
- - 1d9dac71-49aa-40e5-82e8-93626343ad18
+ - 219cab12-db7e-495a-aa86-8c828d07fc75
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -316,7 +322,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -332,15 +338,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '424'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:25:14 GMT
+ - Wed, 20 May 2026 08:43:15 GMT
Pragma:
- no-cache
RequestId:
- - 3b3800cc-f432-4172-8716-7461ac404b7c
+ - dd6b0eb1-24da-42d5-abe4-66e1c2b5ba50
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -365,16 +371,16 @@ interactions:
- keep-alive
Content-Length:
- '89'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -383,17 +389,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '163'
+ - '153'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:25:22 GMT
+ - Wed, 20 May 2026 08:43:23 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2
+ - https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4
Pragma:
- no-cache
RequestId:
- - 88e0511b-28d4-45d8-a5b8-da5bc8112c7e
+ - c54e2cbf-c0dd-4dfa-8201-41f9e57719c0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -419,16 +425,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -437,15 +446,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:25:22 GMT
+ - Wed, 20 May 2026 08:43:25 GMT
Pragma:
- no-cache
RequestId:
- - 7c6f577d-700e-4d58-8d19-13e48581b6fc
+ - a0556e96-19e5-4bd6-96b7-ba131f2b77a3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -471,9 +480,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -489,11 +498,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:25:23 GMT
+ - Wed, 20 May 2026 08:43:25 GMT
Pragma:
- no-cache
RequestId:
- - bcc87c81-7c84-4d9a-aadb-497079ef8e1e
+ - 9e5a0e02-2817-459e-b2ff-33d4e0193dcd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -519,49 +528,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True
- response:
- body:
- string: '{"requestId": "00e414cc-a48a-4bbd-a3ff-077d3143d085", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 7:25:36 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:25:23 GMT
- RequestId:
- - 00e414cc-a48a-4bbd-a3ff-077d3143d085
- Retry-After:
- - '12'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -577,11 +546,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:25:37 GMT
+ - Wed, 20 May 2026 08:43:26 GMT
Pragma:
- no-cache
RequestId:
- - afcac472-8963-47e9-8dcd-151e47826f52
+ - 9eef1d94-fc53-4dec-860e-6440f2a51855
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -605,17 +574,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders
response:
body:
- string: '{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName": "fabcli000003",
- "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}'
+ string: '{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName": "fabcli000003",
+ "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -624,17 +593,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '133'
+ - '132'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:25:38 GMT
+ - Wed, 20 May 2026 08:43:26 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders/e0125fd8-b9c7-48ba-bf91-7d8f33273566
+ - https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders/63b4dc3b-8cfd-46d9-9310-8a78fd751ff5
Pragma:
- no-cache
RequestId:
- - 2c26e161-e9c6-4a6b-bbe7-2126487e7a55
+ - ab6b4e6e-618c-49fe-9712-752cc2f803af
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -660,16 +629,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -678,15 +650,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:25:38 GMT
+ - Wed, 20 May 2026 08:43:27 GMT
Pragma:
- no-cache
RequestId:
- - c3bff748-2bf9-4497-8ece-4a49499c5e7e
+ - 9b540d3e-62da-4d3b-818d-0f45bc008e3f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -712,9 +684,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1da9d768-e2c2-494b-9eea-755c6a674b9a/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/items
response:
body:
string: '{"value": []}'
@@ -730,11 +702,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:25:39 GMT
+ - Wed, 20 May 2026 08:43:28 GMT
Pragma:
- no-cache
RequestId:
- - a4f25696-f2a5-4f64-99b8-c8e9c5ef7edd
+ - c9b272ff-259c-40af-8038-e394c0a8b323
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -760,9 +732,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1da9d768-e2c2-494b-9eea-755c6a674b9a/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/items
response:
body:
string: '{"value": []}'
@@ -778,11 +750,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:25:40 GMT
+ - Wed, 20 May 2026 08:43:28 GMT
Pragma:
- no-cache
RequestId:
- - 33239db3-f603-45d7-89c2-c80e59c1b6de
+ - 78edede9-f93f-40cb-8d7f-ee30fcd2493a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -797,7 +769,9 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000004", "type": "Notebook", "folderId": null, "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", "payloadType": "InlineBase64"}]}}'
+ body: '{"displayName": "fabcli000004", "type": "Notebook", "folderId": null, "definition":
+ {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
+ "payloadType": "InlineBase64"}]}}'
headers:
Accept:
- '*/*'
@@ -807,13 +781,12 @@ interactions:
- keep-alive
Content-Length:
- '731'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/1da9d768-e2c2-494b-9eea-755c6a674b9a/notebooks
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/notebooks
response:
body:
string: 'null'
@@ -829,15 +802,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:25:43 GMT
+ - Wed, 20 May 2026 08:43:31 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f24194d3-9947-4492-ab70-ab12cb174e0d
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d016ea19-1c6d-4c62-a06b-ddfa7296acb3
Pragma:
- no-cache
RequestId:
- - 21920e0d-b125-4be1-93b9-7e82ba8315f8
+ - bb7f9314-e34c-4e7f-9567-d143b3108edd
Retry-After:
- '20'
Strict-Transport-Security:
@@ -851,7 +824,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - f24194d3-9947-4492-ab70-ab12cb174e0d
+ - d016ea19-1c6d-4c62-a06b-ddfa7296acb3
status:
code: 202
message: Accepted
@@ -867,13 +840,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f24194d3-9947-4492-ab70-ab12cb174e0d
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d016ea19-1c6d-4c62-a06b-ddfa7296acb3
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:25:42.2991393",
- "lastUpdatedTimeUtc": "2026-02-06T07:25:44.1274767", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:43:30.3514019",
+ "lastUpdatedTimeUtc": "2026-05-20T08:43:31.8524048", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -887,13 +860,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:26:04 GMT
+ - Wed, 20 May 2026 08:43:51 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f24194d3-9947-4492-ab70-ab12cb174e0d/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d016ea19-1c6d-4c62-a06b-ddfa7296acb3/result
Pragma:
- no-cache
RequestId:
- - 4c78501a-ab3a-4979-b40b-eabdb81d5103
+ - f19ec93f-9cc0-48f0-8f9f-c89536b9aef5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -901,7 +874,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - f24194d3-9947-4492-ab70-ab12cb174e0d
+ - d016ea19-1c6d-4c62-a06b-ddfa7296acb3
status:
code: 200
message: OK
@@ -917,14 +890,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f24194d3-9947-4492-ab70-ab12cb174e0d/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d016ea19-1c6d-4c62-a06b-ddfa7296acb3/result
response:
body:
- string: '{"id": "89030c7d-37d9-4bb7-8008-e2e01f6983f9", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "1da9d768-e2c2-494b-9eea-755c6a674b9a"}'
+ string: '{"id": "a12d237a-af9e-4300-8e53-2acb181fd1b9", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -935,11 +907,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 07:26:05 GMT
+ - Wed, 20 May 2026 08:43:52 GMT
Pragma:
- no-cache
RequestId:
- - ba49db75-923a-49e0-ac57-fe7c37c6a0a6
+ - d51fe363-2096-4a64-b4e9-e7ab63cad260
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -963,16 +935,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -981,15 +956,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:26:06 GMT
+ - Wed, 20 May 2026 08:43:52 GMT
Pragma:
- no-cache
RequestId:
- - e5641686-2455-483e-8aa3-e8d979593495
+ - a4c484c5-15d6-4ee2-a4ff-a5f4f8b5bc91
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1015,14 +990,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1da9d768-e2c2-494b-9eea-755c6a674b9a/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/items
response:
body:
- string: '{"value": [{"id": "89030c7d-37d9-4bb7-8008-e2e01f6983f9", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "1da9d768-e2c2-494b-9eea-755c6a674b9a"}]}'
+ string: '{"value": [{"id": "a12d237a-af9e-4300-8e53-2acb181fd1b9", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1031,15 +1005,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '176'
+ - '164'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:26:07 GMT
+ - Wed, 20 May 2026 08:43:53 GMT
Pragma:
- no-cache
RequestId:
- - a426fd75-0e5a-43c5-bad8-69d228a3e411
+ - 280f3ef9-119b-4404-a29b-62eb5e0fa00b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1065,14 +1039,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1da9d768-e2c2-494b-9eea-755c6a674b9a/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/items
response:
body:
- string: '{"value": [{"id": "89030c7d-37d9-4bb7-8008-e2e01f6983f9", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "1da9d768-e2c2-494b-9eea-755c6a674b9a"}]}'
+ string: '{"value": [{"id": "a12d237a-af9e-4300-8e53-2acb181fd1b9", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1081,15 +1054,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '176'
+ - '164'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:26:07 GMT
+ - Wed, 20 May 2026 08:43:54 GMT
Pragma:
- no-cache
RequestId:
- - a7dfd9c2-0e7a-4eff-a013-a8fd8ad8e479
+ - 153d4903-b8a3-4972-87b1-1ec24c3e459f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1114,18 +1087,16 @@ interactions:
- keep-alive
Content-Length:
- '77'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/1da9d768-e2c2-494b-9eea-755c6a674b9a/dataPipelines
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/dataPipelines
response:
body:
- string: '{"id": "af747ab6-475e-462c-912e-5599efb31307", "type": "DataPipeline",
- "displayName": "fabcli000005", "workspaceId":
- "1da9d768-e2c2-494b-9eea-755c6a674b9a"}'
+ string: '{"id": "b93e315e-2c42-4433-8224-de473412064a", "type": "DataPipeline",
+ "displayName": "fabcli000005", "description": "", "workspaceId": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1134,17 +1105,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '168'
+ - '158'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:26:13 GMT
+ - Wed, 20 May 2026 08:44:00 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 308cab5d-e0e8-4d8c-a94f-5553b65445f6
+ - 25681abb-bc8e-4d08-a47c-3a33a485e573
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1170,16 +1141,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1188,15 +1162,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:26:14 GMT
+ - Wed, 20 May 2026 08:44:01 GMT
Pragma:
- no-cache
RequestId:
- - e0af35cc-184b-4477-98d1-228703e64f81
+ - 8ef0a6ee-68c0-4563-ac31-2ce64bb4e73e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1222,16 +1196,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1240,15 +1217,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:26:15 GMT
+ - Wed, 20 May 2026 08:44:01 GMT
Pragma:
- no-cache
RequestId:
- - a6c92590-3969-4880-aa11-f9f7f83675ef
+ - 406f0e1b-9d85-4f7d-9f60-baf9df2ac2ff
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1274,13 +1251,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName":
- "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}'
+ string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName":
+ "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1293,11 +1270,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:26:16 GMT
+ - Wed, 20 May 2026 08:44:02 GMT
Pragma:
- no-cache
RequestId:
- - f2d5833d-fa71-47a7-82f1-da24472bc95b
+ - 25cf2235-771d-4284-897f-3827c7ea7d7c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1323,15 +1300,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1da9d768-e2c2-494b-9eea-755c6a674b9a/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/items
response:
body:
- string: '{"value": [{"id": "89030c7d-37d9-4bb7-8008-e2e01f6983f9", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "1da9d768-e2c2-494b-9eea-755c6a674b9a"}, {"id": "af747ab6-475e-462c-912e-5599efb31307",
- "type": "DataPipeline", "displayName": "fabcli000005", "workspaceId": "1da9d768-e2c2-494b-9eea-755c6a674b9a"}]}'
+ string: '{"value": [{"id": "a12d237a-af9e-4300-8e53-2acb181fd1b9", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c"},
+ {"id": "b93e315e-2c42-4433-8224-de473412064a", "type": "DataPipeline", "displayName":
+ "fabcli000005", "description": "", "workspaceId": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1340,15 +1317,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '230'
+ - '220'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:26:17 GMT
+ - Wed, 20 May 2026 08:44:03 GMT
Pragma:
- no-cache
RequestId:
- - a69d3c9d-c0c6-4adb-9bad-1218dfaf20d9
+ - 4111b8a6-5856-4240-b8df-e4bf96778651
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1374,9 +1351,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1da9d768-e2c2-494b-9eea-755c6a674b9a/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -1392,11 +1369,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:26:18 GMT
+ - Wed, 20 May 2026 08:44:04 GMT
Pragma:
- no-cache
RequestId:
- - 6a1fab08-e862-48a3-9d58-ab2d694631fc
+ - 2779ef4b-e22a-4f52-82e8-27d6f6b4c601
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1422,16 +1399,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1440,15 +1420,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:26:18 GMT
+ - Wed, 20 May 2026 08:44:05 GMT
Pragma:
- no-cache
RequestId:
- - b2b56267-6346-4404-9a78-f08978121547
+ - ac533ce4-7fbc-4ac5-a46b-29cee783ef34
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1474,13 +1454,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName":
- "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}'
+ string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName":
+ "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1493,11 +1473,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:26:19 GMT
+ - Wed, 20 May 2026 08:44:06 GMT
Pragma:
- no-cache
RequestId:
- - 97ff1e94-90d0-4128-a3a3-e526c8593b6c
+ - 68f59b0f-53e0-4fce-bb54-926bb95569d3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1523,9 +1503,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/items
response:
body:
string: '{"value": []}'
@@ -1541,11 +1521,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:26:20 GMT
+ - Wed, 20 May 2026 08:44:07 GMT
Pragma:
- no-cache
RequestId:
- - 06f0d0dd-520f-4de7-8b39-c095017ff231
+ - 200e8ea9-4e28-445c-9333-f3ca2da5c3a4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1571,9 +1551,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/items
response:
body:
string: '{"value": []}'
@@ -1589,11 +1569,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:26:21 GMT
+ - Wed, 20 May 2026 08:44:07 GMT
Pragma:
- no-cache
RequestId:
- - a0fdf06d-8aaf-43ab-ba5f-152209f48ce9
+ - ddcd8c77-e3a5-48ce-8780-c3b91482c81a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1619,9 +1599,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/items
response:
body:
string: '{"value": []}'
@@ -1637,11 +1617,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:26:22 GMT
+ - Wed, 20 May 2026 08:44:08 GMT
Pragma:
- no-cache
RequestId:
- - 897821e0-381c-46e3-bd06-7c89e5223ca6
+ - 6aa6c9e3-1c71-4dc7-9435-f68e48920ea8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1667,14 +1647,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1da9d768-e2c2-494b-9eea-755c6a674b9a/items/89030c7d-37d9-4bb7-8008-e2e01f6983f9
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/items/a12d237a-af9e-4300-8e53-2acb181fd1b9
response:
body:
- string: '{"id": "89030c7d-37d9-4bb7-8008-e2e01f6983f9", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "1da9d768-e2c2-494b-9eea-755c6a674b9a"}'
+ string: '{"id": "a12d237a-af9e-4300-8e53-2acb181fd1b9", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1683,17 +1662,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '164'
+ - '152'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:26:22 GMT
+ - Wed, 20 May 2026 08:44:09 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 91d085fe-7dff-4f56-9b90-eb262f4d35a0
+ - a342b90a-07a0-4cc1-9cd1-d19906fd14e0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1721,9 +1700,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/1da9d768-e2c2-494b-9eea-755c6a674b9a/items/89030c7d-37d9-4bb7-8008-e2e01f6983f9/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/items/a12d237a-af9e-4300-8e53-2acb181fd1b9/getDefinition
response:
body:
string: 'null'
@@ -1739,13 +1718,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:26:22 GMT
+ - Wed, 20 May 2026 08:44:10 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3694b858-3f2b-4f9e-aec4-d7cd51918e68
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a71b9692-3717-4f0d-984c-2cbbc86bdd37
Pragma:
- no-cache
RequestId:
- - cbea8e16-4b65-4a1c-b83d-ebd371c94bdf
+ - ebf498d7-03d4-40a7-b893-73551f36e291
Retry-After:
- '20'
Strict-Transport-Security:
@@ -1759,7 +1738,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - 3694b858-3f2b-4f9e-aec4-d7cd51918e68
+ - a71b9692-3717-4f0d-984c-2cbbc86bdd37
status:
code: 202
message: Accepted
@@ -1775,13 +1754,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3694b858-3f2b-4f9e-aec4-d7cd51918e68
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a71b9692-3717-4f0d-984c-2cbbc86bdd37
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:26:23.8243461",
- "lastUpdatedTimeUtc": "2026-02-06T07:26:24.1534572", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:44:11.3323096",
+ "lastUpdatedTimeUtc": "2026-05-20T08:44:12.0707731", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -1795,13 +1774,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:26:45 GMT
+ - Wed, 20 May 2026 08:44:32 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3694b858-3f2b-4f9e-aec4-d7cd51918e68/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a71b9692-3717-4f0d-984c-2cbbc86bdd37/result
Pragma:
- no-cache
RequestId:
- - 07fadf32-80c1-427c-9dd1-59c748de5eb1
+ - 948768b6-5261-4311-b8c7-c7b31c27ded5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1809,7 +1788,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - 3694b858-3f2b-4f9e-aec4-d7cd51918e68
+ - a71b9692-3717-4f0d-984c-2cbbc86bdd37
status:
code: 200
message: OK
@@ -1825,14 +1804,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3694b858-3f2b-4f9e-aec4-d7cd51918e68/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a71b9692-3717-4f0d-984c-2cbbc86bdd37/result
response:
body:
string: '{"definition": {"parts": [{"path": "notebook-content.py", "payload":
"IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
"payloadType": "InlineBase64"}]}}'
headers:
Access-Control-Expose-Headers:
@@ -1844,11 +1823,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 07:26:45 GMT
+ - Wed, 20 May 2026 08:44:32 GMT
Pragma:
- no-cache
RequestId:
- - 0251b27a-d025-4176-b2c1-7bdbcf440958
+ - 4ceaf0f7-9413-4025-bb11-e93e94540774
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -1861,10 +1840,10 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "Notebook", "displayName": "fabcli000004",
- "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
- "payloadType": "InlineBase64"}]}, "folderId": "e0125fd8-b9c7-48ba-bf91-7d8f33273566"}'
+ body: '{"type": "Notebook", "displayName": "fabcli000004", "definition": {"parts":
+ [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
+ "payloadType": "InlineBase64"}]}, "folderId": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5"}'
headers:
Accept:
- '*/*'
@@ -1873,14 +1852,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1286'
-
+ - '1238'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/items
response:
body:
string: 'null'
@@ -1896,15 +1874,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:26:48 GMT
+ - Wed, 20 May 2026 08:44:34 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1bd7a048-e1c9-4b1f-8c7a-621ca89f1332
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cc86124f-6ee0-4874-8342-edae249b8a50
Pragma:
- no-cache
RequestId:
- - d6c5bee6-4268-4ba8-a444-8a4bc5dbb090
+ - 7bc6de06-56b5-4482-a563-82957bfb2910
Retry-After:
- '20'
Strict-Transport-Security:
@@ -1918,7 +1896,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - 1bd7a048-e1c9-4b1f-8c7a-621ca89f1332
+ - cc86124f-6ee0-4874-8342-edae249b8a50
status:
code: 202
message: Accepted
@@ -1934,13 +1912,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1bd7a048-e1c9-4b1f-8c7a-621ca89f1332
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cc86124f-6ee0-4874-8342-edae249b8a50
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:26:47.7201897",
- "lastUpdatedTimeUtc": "2026-02-06T07:26:49.5642741", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:44:34.2063211",
+ "lastUpdatedTimeUtc": "2026-05-20T08:44:35.6979496", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -1954,13 +1932,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:27:09 GMT
+ - Wed, 20 May 2026 08:44:54 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1bd7a048-e1c9-4b1f-8c7a-621ca89f1332/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cc86124f-6ee0-4874-8342-edae249b8a50/result
Pragma:
- no-cache
RequestId:
- - 6d01796a-7cf1-43b0-b46e-e92cf786133b
+ - 2f81e4b1-5703-4f2f-8690-2ff40f941a9d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1968,7 +1946,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - 1bd7a048-e1c9-4b1f-8c7a-621ca89f1332
+ - cc86124f-6ee0-4874-8342-edae249b8a50
status:
code: 200
message: OK
@@ -1984,14 +1962,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1bd7a048-e1c9-4b1f-8c7a-621ca89f1332/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cc86124f-6ee0-4874-8342-edae249b8a50/result
response:
body:
- string: '{"id": "974586fe-2df8-4778-9b64-a44b2df06ec8", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "07c9486c-6ebb-4741-a86d-407baefbf5e2", "folderId": "e0125fd8-b9c7-48ba-bf91-7d8f33273566"}'
+ string: '{"id": "3e210ca4-03bc-48ef-9e62-332319146bc2", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4",
+ "folderId": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2002,11 +1980,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 07:27:11 GMT
+ - Wed, 20 May 2026 08:44:56 GMT
Pragma:
- no-cache
RequestId:
- - 5b2046a4-02b3-4872-91b3-76259a740489
+ - 4d577bf7-58cc-44a3-8a71-e26955ca388f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -2030,16 +2008,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2048,15 +2029,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:27:11 GMT
+ - Wed, 20 May 2026 08:44:57 GMT
Pragma:
- no-cache
RequestId:
- - 3da8fc87-5baa-4f6e-9e7e-11b9a5668f34
+ - 6999cc4f-ee25-4f0a-b605-03e1fd2c0109
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2082,13 +2063,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName":
- "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}'
+ string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName":
+ "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2101,11 +2082,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:27:12 GMT
+ - Wed, 20 May 2026 08:44:57 GMT
Pragma:
- no-cache
RequestId:
- - 3f8897e1-0bf3-4324-894b-745da609d161
+ - dea4bd53-e19b-4e4d-bc67-13c409822232
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2131,14 +2112,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/items
response:
body:
- string: '{"value": [{"id": "974586fe-2df8-4778-9b64-a44b2df06ec8", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "07c9486c-6ebb-4741-a86d-407baefbf5e2", "folderId": "e0125fd8-b9c7-48ba-bf91-7d8f33273566"}]}'
+ string: '{"value": [{"id": "3e210ca4-03bc-48ef-9e62-332319146bc2", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4",
+ "folderId": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2147,15 +2128,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '207'
+ - '197'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:27:13 GMT
+ - Wed, 20 May 2026 08:44:59 GMT
Pragma:
- no-cache
RequestId:
- - 99d13d17-9efb-4103-ba27-e8e9b01d890c
+ - b87b710e-5258-4b97-838f-b0a151678989
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2181,13 +2162,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName":
- "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}'
+ string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName":
+ "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2200,11 +2181,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:27:13 GMT
+ - Wed, 20 May 2026 08:45:00 GMT
Pragma:
- no-cache
RequestId:
- - 0d63ae38-73e5-4370-9dd7-ca16666af64b
+ - 699ef376-1e3b-4878-9baa-55da5c2397bd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2230,14 +2211,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/items
response:
body:
- string: '{"value": [{"id": "974586fe-2df8-4778-9b64-a44b2df06ec8", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "07c9486c-6ebb-4741-a86d-407baefbf5e2", "folderId": "e0125fd8-b9c7-48ba-bf91-7d8f33273566"}]}'
+ string: '{"value": [{"id": "3e210ca4-03bc-48ef-9e62-332319146bc2", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4",
+ "folderId": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2246,15 +2227,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '207'
+ - '197'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:27:14 GMT
+ - Wed, 20 May 2026 08:45:01 GMT
Pragma:
- no-cache
RequestId:
- - cf59df05-59ef-454a-a63a-dca56c632c27
+ - 8999c9a4-0e1d-4fbf-9725-143fd26c1d4b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2280,13 +2261,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName":
- "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}'
+ string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName":
+ "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2299,11 +2280,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:27:15 GMT
+ - Wed, 20 May 2026 08:45:02 GMT
Pragma:
- no-cache
RequestId:
- - cc7d8cc3-ebcb-42f3-a707-7c0ae9d1d38d
+ - ff3f355c-04af-4f63-8719-8efbf674073e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2329,14 +2310,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/items
response:
body:
- string: '{"value": [{"id": "974586fe-2df8-4778-9b64-a44b2df06ec8", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "07c9486c-6ebb-4741-a86d-407baefbf5e2", "folderId": "e0125fd8-b9c7-48ba-bf91-7d8f33273566"}]}'
+ string: '{"value": [{"id": "3e210ca4-03bc-48ef-9e62-332319146bc2", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4",
+ "folderId": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2345,15 +2326,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '207'
+ - '197'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:27:16 GMT
+ - Wed, 20 May 2026 08:45:02 GMT
Pragma:
- no-cache
RequestId:
- - dc089a16-d19a-481f-b842-73557ae84066
+ - bca88811-93eb-4615-8481-49d0aad15d67
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2379,13 +2360,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName":
- "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}'
+ string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName":
+ "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2398,11 +2379,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:27:16 GMT
+ - Wed, 20 May 2026 08:45:03 GMT
Pragma:
- no-cache
RequestId:
- - 5bb7b362-eda1-42c1-b67c-81102404aeb1
+ - bce55272-b76a-4645-a114-5c1d6c160b58
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2428,14 +2409,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1da9d768-e2c2-494b-9eea-755c6a674b9a/items/af747ab6-475e-462c-912e-5599efb31307
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/items/b93e315e-2c42-4433-8224-de473412064a
response:
body:
- string: '{"id": "af747ab6-475e-462c-912e-5599efb31307", "type": "DataPipeline",
- "displayName": "fabcli000005", "workspaceId":
- "1da9d768-e2c2-494b-9eea-755c6a674b9a"}'
+ string: '{"id": "b93e315e-2c42-4433-8224-de473412064a", "type": "DataPipeline",
+ "displayName": "fabcli000005", "description": "", "workspaceId": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -2444,17 +2424,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '168'
+ - '158'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:27:18 GMT
+ - Wed, 20 May 2026 08:45:04 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - bc7d101d-4b7c-4eb1-a414-c6be84915070
+ - bc430f8a-8eff-436b-ab1f-1c4376d4eac1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2482,14 +2462,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/1da9d768-e2c2-494b-9eea-755c6a674b9a/items/af747ab6-475e-462c-912e-5599efb31307/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/items/b93e315e-2c42-4433-8224-de473412064a/getDefinition
response:
body:
string: '{"definition": {"parts": [{"path": "pipeline-content.json", "payload":
"ewogICJwcm9wZXJ0aWVzIjogewogICAgImFjdGl2aXRpZXMiOiBbXQogIH0KfQ==", "payloadType":
- "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA1IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
+ "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA1IgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
"payloadType": "InlineBase64"}]}}'
headers:
Access-Control-Expose-Headers:
@@ -2499,15 +2479,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '457'
+ - '440'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:27:18 GMT
+ - Wed, 20 May 2026 08:45:05 GMT
Pragma:
- no-cache
RequestId:
- - e8bc3c4c-6fbf-41ff-8254-0c9ab7bae10b
+ - 8e9050e2-45ea-4019-87cb-e52979dc6879
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2522,11 +2502,10 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "DataPipeline", "displayName":
- "fabcli000005", "definition": {"parts": [{"path": "pipeline-content.json", "payload":
- "ewogICJwcm9wZXJ0aWVzIjogewogICAgImFjdGl2aXRpZXMiOiBbXQogIH0KfQ==", "payloadType":
- "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA1IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
- "payloadType": "InlineBase64"}]}, "folderId": "e0125fd8-b9c7-48ba-bf91-7d8f33273566"}'
+ body: '{"type": "DataPipeline", "displayName": "fabcli000005", "definition": {"parts":
+ [{"path": "pipeline-content.json", "payload": "ewogICJwcm9wZXJ0aWVzIjogewogICAgImFjdGl2aXRpZXMiOiBbXQogIH0KfQ==",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA1IgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
+ "payloadType": "InlineBase64"}]}, "folderId": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5"}'
headers:
Accept:
- '*/*'
@@ -2535,19 +2514,18 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '812'
-
+ - '760'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/items
response:
body:
- string: '{"id": "835cd2cc-6db6-4d2c-b8f0-5ad7b8f58afe", "type": "DataPipeline",
- "displayName": "fabcli000005", "workspaceId":
- "07c9486c-6ebb-4741-a86d-407baefbf5e2", "folderId": "e0125fd8-b9c7-48ba-bf91-7d8f33273566"}'
+ string: '{"id": "d0c5f464-3d38-4f8e-b7c4-9afc8be801b0", "type": "DataPipeline",
+ "displayName": "fabcli000005", "description": "", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4",
+ "folderId": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -2556,17 +2534,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '196'
+ - '186'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:27:23 GMT
+ - Wed, 20 May 2026 08:45:12 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 7ee9b83c-0fbb-4aa7-98fa-a4bd9d9a0d19
+ - 8b8528b7-648d-4fa4-9d21-2b81d81f03ad
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2592,16 +2570,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2610,15 +2591,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:27:25 GMT
+ - Wed, 20 May 2026 08:45:13 GMT
Pragma:
- no-cache
RequestId:
- - 0e04f4ab-cb59-4ee2-a3ac-78e3d9ebcb30
+ - 8ef40ea2-434f-4800-a088-2e6ae8a9b14b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2644,15 +2625,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1da9d768-e2c2-494b-9eea-755c6a674b9a/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/items
response:
body:
- string: '{"value": [{"id": "89030c7d-37d9-4bb7-8008-e2e01f6983f9", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "1da9d768-e2c2-494b-9eea-755c6a674b9a"}, {"id": "af747ab6-475e-462c-912e-5599efb31307",
- "type": "DataPipeline", "displayName": "fabcli000005", "workspaceId": "1da9d768-e2c2-494b-9eea-755c6a674b9a"}]}'
+ string: '{"value": [{"id": "a12d237a-af9e-4300-8e53-2acb181fd1b9", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c"},
+ {"id": "b93e315e-2c42-4433-8224-de473412064a", "type": "DataPipeline", "displayName":
+ "fabcli000005", "description": "", "workspaceId": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2661,15 +2642,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '230'
+ - '220'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:27:25 GMT
+ - Wed, 20 May 2026 08:45:13 GMT
Pragma:
- no-cache
RequestId:
- - 67a802d4-479f-48d0-b5e1-67313e7aecfc
+ - c7552109-bb67-4e19-b50d-47cb52f8fb18
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2695,9 +2676,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1da9d768-e2c2-494b-9eea-755c6a674b9a/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -2713,11 +2694,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:27:26 GMT
+ - Wed, 20 May 2026 08:45:14 GMT
Pragma:
- no-cache
RequestId:
- - de156314-bee4-4f8e-ab41-5bffaf8f9b8a
+ - 4f8af41f-adc0-47bf-9f9f-ad053accc57f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2743,16 +2724,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2761,15 +2745,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:27:27 GMT
+ - Wed, 20 May 2026 08:45:15 GMT
Pragma:
- no-cache
RequestId:
- - 0bb14726-78e2-4003-8605-5da0abf5b078
+ - 44566df5-1094-446f-b06d-24bc2ca7f902
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2795,17 +2779,16 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/items
response:
body:
- string: '{"value": [{"id": "974586fe-2df8-4778-9b64-a44b2df06ec8", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "07c9486c-6ebb-4741-a86d-407baefbf5e2", "folderId": "e0125fd8-b9c7-48ba-bf91-7d8f33273566"},
- {"id": "835cd2cc-6db6-4d2c-b8f0-5ad7b8f58afe", "type": "DataPipeline", "displayName":
- "fabcli000005", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2",
- "folderId": "e0125fd8-b9c7-48ba-bf91-7d8f33273566"}]}'
+ string: '{"value": [{"id": "3e210ca4-03bc-48ef-9e62-332319146bc2", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4",
+ "folderId": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5"}, {"id": "d0c5f464-3d38-4f8e-b7c4-9afc8be801b0",
+ "type": "DataPipeline", "displayName": "fabcli000005", "description": "",
+ "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "folderId": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2814,15 +2797,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '259'
+ - '250'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:27:27 GMT
+ - Wed, 20 May 2026 08:45:15 GMT
Pragma:
- no-cache
RequestId:
- - afe96f7d-f22b-48cb-9f57-355c410b36d4
+ - 3bb16283-336f-48c4-9cff-ca9252b31e37
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2848,13 +2831,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName":
- "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}'
+ string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName":
+ "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2867,11 +2850,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:27:28 GMT
+ - Wed, 20 May 2026 08:45:17 GMT
Pragma:
- no-cache
RequestId:
- - f00aa269-1638-4f3f-a9ff-2f748187d65c
+ - 5943c00f-c9c7-4076-9ca0-e82368b3478a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2897,13 +2880,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName":
- "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}'
+ string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName":
+ "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2916,11 +2899,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:27:30 GMT
+ - Wed, 20 May 2026 08:45:17 GMT
Pragma:
- no-cache
RequestId:
- - 8b97a35c-f534-49c9-a853-1ffab4a32978
+ - 460f1a9a-89a8-4204-a13a-251e02831c10
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2946,13 +2929,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName":
- "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}'
+ string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName":
+ "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2965,11 +2948,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:27:30 GMT
+ - Wed, 20 May 2026 08:45:18 GMT
Pragma:
- no-cache
RequestId:
- - 69df5121-33eb-4194-a0ed-5d763ff7b6eb
+ - 14d016d8-c3d8-4a83-8043-ba961a1b9440
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2995,16 +2978,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3013,15 +2999,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:27:31 GMT
+ - Wed, 20 May 2026 08:45:20 GMT
Pragma:
- no-cache
RequestId:
- - d34adf68-f7b2-4711-bdeb-7a13b962a680
+ - 7863a6e8-83b7-449f-9d4b-c0e23fc3d706
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3047,13 +3033,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName":
- "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}'
+ string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName":
+ "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3066,11 +3052,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:27:31 GMT
+ - Wed, 20 May 2026 08:45:20 GMT
Pragma:
- no-cache
RequestId:
- - ce1884a7-8e54-4176-a34a-8468fa68cb06
+ - f3c4837f-62d4-4747-976d-26edd0cf0327
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3096,17 +3082,16 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/items
response:
body:
- string: '{"value": [{"id": "974586fe-2df8-4778-9b64-a44b2df06ec8", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "07c9486c-6ebb-4741-a86d-407baefbf5e2", "folderId": "e0125fd8-b9c7-48ba-bf91-7d8f33273566"},
- {"id": "835cd2cc-6db6-4d2c-b8f0-5ad7b8f58afe", "type": "DataPipeline", "displayName":
- "fabcli000005", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2",
- "folderId": "e0125fd8-b9c7-48ba-bf91-7d8f33273566"}]}'
+ string: '{"value": [{"id": "3e210ca4-03bc-48ef-9e62-332319146bc2", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4",
+ "folderId": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5"}, {"id": "d0c5f464-3d38-4f8e-b7c4-9afc8be801b0",
+ "type": "DataPipeline", "displayName": "fabcli000005", "description": "",
+ "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "folderId": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3115,15 +3100,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '259'
+ - '250'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:27:32 GMT
+ - Wed, 20 May 2026 08:45:21 GMT
Pragma:
- no-cache
RequestId:
- - 4a10befe-8ab1-4679-a28f-e36cc0a4d475
+ - 456c4054-20a0-427d-b454-683b3705d687
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3149,13 +3134,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName":
- "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}'
+ string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName":
+ "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3168,11 +3153,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:27:33 GMT
+ - Wed, 20 May 2026 08:45:21 GMT
Pragma:
- no-cache
RequestId:
- - 465627b3-771c-40df-8bca-bf7740d9e30a
+ - 48bcd49a-5352-426b-81d1-af0803e678d1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3198,53 +3183,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True
response:
body:
- string: '{"requestId": "15a3e6d4-bbf4-4106-a9ff-47074d49e7e0", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 7:28:13 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:27:33 GMT
- RequestId:
- - 15a3e6d4-bbf4-4106-a9ff-47074d49e7e0
- Retry-After:
- - '39'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True
- response:
- body:
- string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName":
- "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}'
+ string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName":
+ "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3257,11 +3202,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:28:15 GMT
+ - Wed, 20 May 2026 08:45:22 GMT
Pragma:
- no-cache
RequestId:
- - d71d7df4-72e9-436e-857c-fd3fe5ed58a6
+ - 553e026e-8906-46d1-9fd4-4c99d6758d39
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3287,13 +3232,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName":
- "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}'
+ string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName":
+ "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3306,11 +3251,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:28:16 GMT
+ - Wed, 20 May 2026 08:45:24 GMT
Pragma:
- no-cache
RequestId:
- - 8dce992a-a41e-423c-88c1-fcc3f34fd9b1
+ - 5373bfdd-2a4f-4bc8-9477-f82fd39f2c38
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3336,16 +3281,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3354,15 +3302,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:28:17 GMT
+ - Wed, 20 May 2026 08:45:24 GMT
Pragma:
- no-cache
RequestId:
- - 1f52b7cf-84f6-4ef4-8139-aa527ba7fc90
+ - b31f5b0d-b704-445f-b0df-0df8e270adf3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3388,13 +3336,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName":
- "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}'
+ string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName":
+ "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3407,11 +3355,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:28:18 GMT
+ - Wed, 20 May 2026 08:45:25 GMT
Pragma:
- no-cache
RequestId:
- - 5a98f235-64dd-4c5f-894f-981ba67afffb
+ - 990949da-7217-4cc8-b700-c5d06bac6d4a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3437,17 +3385,16 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/items
response:
body:
- string: '{"value": [{"id": "974586fe-2df8-4778-9b64-a44b2df06ec8", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "07c9486c-6ebb-4741-a86d-407baefbf5e2", "folderId": "e0125fd8-b9c7-48ba-bf91-7d8f33273566"},
- {"id": "835cd2cc-6db6-4d2c-b8f0-5ad7b8f58afe", "type": "DataPipeline", "displayName":
- "fabcli000005", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2",
- "folderId": "e0125fd8-b9c7-48ba-bf91-7d8f33273566"}]}'
+ string: '{"value": [{"id": "3e210ca4-03bc-48ef-9e62-332319146bc2", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4",
+ "folderId": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5"}, {"id": "d0c5f464-3d38-4f8e-b7c4-9afc8be801b0",
+ "type": "DataPipeline", "displayName": "fabcli000005", "description": "",
+ "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "folderId": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3456,15 +3403,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '259'
+ - '250'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:28:18 GMT
+ - Wed, 20 May 2026 08:45:26 GMT
Pragma:
- no-cache
RequestId:
- - bdc18190-8c12-4f47-a2fc-0f1dbc892397
+ - e2309044-e23b-4ec4-974f-97783809a115
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3490,13 +3437,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName":
- "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}'
+ string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName":
+ "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3509,11 +3456,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:28:20 GMT
+ - Wed, 20 May 2026 08:45:27 GMT
Pragma:
- no-cache
RequestId:
- - 550f2ce1-09dc-4364-b934-be1b81181acf
+ - 76ba1dd7-44e8-4aa9-a693-b05855f749f7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3539,13 +3486,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName":
- "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}'
+ string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName":
+ "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3558,11 +3505,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:28:20 GMT
+ - Wed, 20 May 2026 08:45:28 GMT
Pragma:
- no-cache
RequestId:
- - 65eefc11-005b-4557-bc26-987141b88d52
+ - 759064c6-021f-4b89-a8c8-dc694293c78e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3590,9 +3537,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/items/974586fe-2df8-4778-9b64-a44b2df06ec8
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/items/3e210ca4-03bc-48ef-9e62-332319146bc2
response:
body:
string: ''
@@ -3608,11 +3555,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:28:22 GMT
+ - Wed, 20 May 2026 08:45:29 GMT
Pragma:
- no-cache
RequestId:
- - 34572e24-f930-402a-a8cb-09274c04bcb4
+ - c646b13e-c6fc-445d-8547-a13f9abb43db
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3638,16 +3585,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3656,15 +3606,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:28:22 GMT
+ - Wed, 20 May 2026 08:45:29 GMT
Pragma:
- no-cache
RequestId:
- - 15c95059-d4d5-4502-94bd-11fd0e8f99ab
+ - 07e9e837-2e5c-452a-abc1-b1aa6325e8d5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3690,13 +3640,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName":
- "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}'
+ string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName":
+ "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3709,11 +3659,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:28:22 GMT
+ - Wed, 20 May 2026 08:45:30 GMT
Pragma:
- no-cache
RequestId:
- - 157d2938-53d0-408c-815f-2937b27c4db0
+ - 4dc9e44c-9da4-48e8-99a6-970a1300c8ba
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3739,14 +3689,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/items
response:
body:
- string: '{"value": [{"id": "835cd2cc-6db6-4d2c-b8f0-5ad7b8f58afe", "type": "DataPipeline",
- "displayName": "fabcli000005", "workspaceId":
- "07c9486c-6ebb-4741-a86d-407baefbf5e2", "folderId": "e0125fd8-b9c7-48ba-bf91-7d8f33273566"}]}'
+ string: '{"value": [{"id": "d0c5f464-3d38-4f8e-b7c4-9afc8be801b0", "type": "DataPipeline",
+ "displayName": "fabcli000005", "description": "", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4",
+ "folderId": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3755,15 +3705,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '210'
+ - '200'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:28:23 GMT
+ - Wed, 20 May 2026 08:45:32 GMT
Pragma:
- no-cache
RequestId:
- - fee10ed9-4b53-42c3-b927-07d86b1e03af
+ - 442908fa-2aeb-4a6e-9044-913b18f06712
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3789,13 +3739,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName":
- "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}'
+ string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName":
+ "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3808,11 +3758,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:28:24 GMT
+ - Wed, 20 May 2026 08:45:32 GMT
Pragma:
- no-cache
RequestId:
- - 0a6c700d-baae-4158-ad79-331925b5a219
+ - ab4fe604-e2c5-44d9-8164-cfb656c10f2e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3840,9 +3790,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/items/835cd2cc-6db6-4d2c-b8f0-5ad7b8f58afe
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/items/d0c5f464-3d38-4f8e-b7c4-9afc8be801b0
response:
body:
string: ''
@@ -3858,11 +3808,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:28:24 GMT
+ - Wed, 20 May 2026 08:45:33 GMT
Pragma:
- no-cache
RequestId:
- - 53355089-ab65-4942-9ebe-fd96fb854e54
+ - 8871f2d9-df27-4f0e-a88a-c1742a7f3b77
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3888,16 +3838,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3906,15 +3859,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:28:26 GMT
+ - Wed, 20 May 2026 08:45:33 GMT
Pragma:
- no-cache
RequestId:
- - 1654f8d4-54e5-4a90-a027-27c86900eb04
+ - f16e7420-aba3-449a-96de-30ed4ba69e74
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3940,15 +3893,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1da9d768-e2c2-494b-9eea-755c6a674b9a/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/items
response:
body:
- string: '{"value": [{"id": "89030c7d-37d9-4bb7-8008-e2e01f6983f9", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "1da9d768-e2c2-494b-9eea-755c6a674b9a"}, {"id": "af747ab6-475e-462c-912e-5599efb31307",
- "type": "DataPipeline", "displayName": "fabcli000005", "workspaceId": "1da9d768-e2c2-494b-9eea-755c6a674b9a"}]}'
+ string: '{"value": [{"id": "a12d237a-af9e-4300-8e53-2acb181fd1b9", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c"},
+ {"id": "b93e315e-2c42-4433-8224-de473412064a", "type": "DataPipeline", "displayName":
+ "fabcli000005", "description": "", "workspaceId": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3957,15 +3910,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '230'
+ - '220'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:28:26 GMT
+ - Wed, 20 May 2026 08:45:34 GMT
Pragma:
- no-cache
RequestId:
- - 517ddb90-c5c9-4e98-80fd-74510ceb4fd9
+ - bfa5b12b-b6e3-43bb-b75a-1d5c791fcfb7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3993,9 +3946,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/1da9d768-e2c2-494b-9eea-755c6a674b9a/items/af747ab6-475e-462c-912e-5599efb31307
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/items/b93e315e-2c42-4433-8224-de473412064a
response:
body:
string: ''
@@ -4011,11 +3964,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:28:27 GMT
+ - Wed, 20 May 2026 08:45:35 GMT
Pragma:
- no-cache
RequestId:
- - 57530013-ca66-4635-883b-477f76b343b7
+ - c3fed764-238d-4a64-bc86-1a97b16a6db1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4041,16 +3994,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4059,15 +4015,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:28:29 GMT
+ - Wed, 20 May 2026 08:45:36 GMT
Pragma:
- no-cache
RequestId:
- - 4ece2973-0214-45f5-acf1-5fbdef4cc824
+ - 9cb688ef-7e00-47d8-a960-546edef86180
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4093,14 +4049,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1da9d768-e2c2-494b-9eea-755c6a674b9a/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/items
response:
body:
- string: '{"value": [{"id": "89030c7d-37d9-4bb7-8008-e2e01f6983f9", "type": "Notebook",
- "displayName": "fabcli000004", "workspaceId":
- "1da9d768-e2c2-494b-9eea-755c6a674b9a"}]}'
+ string: '{"value": [{"id": "a12d237a-af9e-4300-8e53-2acb181fd1b9", "type": "Notebook",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4109,15 +4064,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '176'
+ - '164'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:28:29 GMT
+ - Wed, 20 May 2026 08:45:37 GMT
Pragma:
- no-cache
RequestId:
- - 3ffd7887-1c78-437c-a843-e3064dccf3f9
+ - 90cd9693-c8b8-4437-8461-1ad647bb4bc6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4145,9 +4100,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/1da9d768-e2c2-494b-9eea-755c6a674b9a/items/89030c7d-37d9-4bb7-8008-e2e01f6983f9
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/items/a12d237a-af9e-4300-8e53-2acb181fd1b9
response:
body:
string: ''
@@ -4163,11 +4118,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:28:30 GMT
+ - Wed, 20 May 2026 08:45:37 GMT
Pragma:
- no-cache
RequestId:
- - dc884192-5aea-484c-8ee4-bb8e51889d9b
+ - 7e593eb0-ca2b-42fe-ab8f-baad361e01fd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4193,16 +4148,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4211,15 +4169,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:28:31 GMT
+ - Wed, 20 May 2026 08:45:38 GMT
Pragma:
- no-cache
RequestId:
- - 673d0dcd-95c8-4ff6-9eb3-d3a916676cc4
+ - 0b1cb55f-1128-4056-9782-a8583ce02e26
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4245,13 +4203,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName":
- "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}'
+ string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName":
+ "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4264,11 +4222,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:28:31 GMT
+ - Wed, 20 May 2026 08:45:39 GMT
Pragma:
- no-cache
RequestId:
- - 8eed22fc-96fe-427f-9250-c32cc4a61018
+ - 5c668d04-8caa-4c20-bb9a-14a8b76bb158
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4296,9 +4254,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders/e0125fd8-b9c7-48ba-bf91-7d8f33273566
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders/63b4dc3b-8cfd-46d9-9310-8a78fd751ff5
response:
body:
string: ''
@@ -4314,11 +4272,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:28:32 GMT
+ - Wed, 20 May 2026 08:45:40 GMT
Pragma:
- no-cache
RequestId:
- - 1e298888-7c6b-4752-a83b-449966a8d974
+ - df9a7da8-ddf5-4362-a1bf-950f014daa6a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4344,16 +4302,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4362,15 +4323,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2879'
+ - '2697'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:28:33 GMT
+ - Wed, 20 May 2026 08:45:40 GMT
Pragma:
- no-cache
RequestId:
- - 15de265e-2322-48aa-b33a-3300e21ec083
+ - 17f7507d-1672-4150-9561-f56ba51f4656
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4396,9 +4357,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/1da9d768-e2c2-494b-9eea-755c6a674b9a/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/items
response:
body:
string: '{"value": []}'
@@ -4414,11 +4375,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:28:33 GMT
+ - Wed, 20 May 2026 08:45:40 GMT
Pragma:
- no-cache
RequestId:
- - 949269b1-35d2-4d94-b199-4ae2e1370921
+ - 2a09ce61-decd-416e-bd92-aaabeb06de43
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4446,9 +4407,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/1da9d768-e2c2-494b-9eea-755c6a674b9a
+ uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c
response:
body:
string: ''
@@ -4464,11 +4425,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:28:35 GMT
+ - Wed, 20 May 2026 08:45:41 GMT
Pragma:
- no-cache
RequestId:
- - 4be1a737-2d75-4b12-8d2d-af05ef0345cb
+ - 5b648d92-ae64-40f1-b894-e847d27b2d7c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4494,15 +4455,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4511,15 +4474,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2841'
+ - '2659'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:28:35 GMT
+ - Wed, 20 May 2026 08:45:42 GMT
Pragma:
- no-cache
RequestId:
- - ffd263ff-499a-4df8-8e1b-78db29e28c36
+ - 17669129-4015-4d9f-b3f5-696817b43d7e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4545,9 +4508,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/items
response:
body:
string: '{"value": []}'
@@ -4563,11 +4526,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:28:36 GMT
+ - Wed, 20 May 2026 08:45:42 GMT
Pragma:
- no-cache
RequestId:
- - 3e25a2cd-9401-4aa5-8de1-d2f0b67f0896
+ - ec78891c-033d-4025-baeb-a1032faa44ca
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4595,9 +4558,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2
+ uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4
response:
body:
string: ''
@@ -4613,11 +4576,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:28:37 GMT
+ - Wed, 20 May 2026 08:45:43 GMT
Pragma:
- no-cache
RequestId:
- - 8423fe65-69ad-446b-a464-0e7716a9d93d
+ - 140c60ac-d2e8-484e-8862-e95ef37ba207
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_item_type_mismatch_failure.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_item_type_mismatch_failure.yaml
index 9a544c622..54966c28e 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_item_type_mismatch_failure.yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_item_type_mismatch_failure.yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:40:09 GMT
+ - Wed, 20 May 2026 08:57:01 GMT
Pragma:
- no-cache
RequestId:
- - 524c0401-9fa2-45ef-9f84-b6c2fe37e737
+ - 1510e351-cd74-47b2-be9b-4a4782beac5a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,9 +62,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
string: '{"value": []}'
@@ -79,11 +80,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:40:09 GMT
+ - Wed, 20 May 2026 08:57:02 GMT
Pragma:
- no-cache
RequestId:
- - 351cb088-e8f3-42e5-830b-d2c41859afaf
+ - 579c17c1-6132-4466-b1e1-219b4ada1ea0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -109,9 +110,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
string: '{"value": []}'
@@ -127,11 +128,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:40:09 GMT
+ - Wed, 20 May 2026 08:57:03 GMT
Pragma:
- no-cache
RequestId:
- - eabf7bbe-19a3-4031-9ce2-eb6845bfc90e
+ - c65a5a02-7b99-4f82-b015-4686d5a6e7b3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -146,7 +147,9 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000001", "type": "Notebook", "folderId": null, "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", "payloadType": "InlineBase64"}]}}'
+ body: '{"displayName": "fabcli000001", "type": "Notebook", "folderId": null, "definition":
+ {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
+ "payloadType": "InlineBase64"}]}}'
headers:
Accept:
- '*/*'
@@ -156,13 +159,12 @@ interactions:
- keep-alive
Content-Length:
- '731'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/notebooks
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/notebooks
response:
body:
string: 'null'
@@ -178,15 +180,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:40:11 GMT
+ - Wed, 20 May 2026 08:57:05 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c63ca9f9-3a74-4483-ad70-909f48425e93
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b705ae39-ed95-42dc-932f-e062b32815f8
Pragma:
- no-cache
RequestId:
- - 065a8cc3-5954-4479-a6bd-dfb3a0ae9944
+ - 2565f41b-de74-4d56-92b8-b23e886675f6
Retry-After:
- '20'
Strict-Transport-Security:
@@ -200,7 +202,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - c63ca9f9-3a74-4483-ad70-909f48425e93
+ - b705ae39-ed95-42dc-932f-e062b32815f8
status:
code: 202
message: Accepted
@@ -216,13 +218,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c63ca9f9-3a74-4483-ad70-909f48425e93
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b705ae39-ed95-42dc-932f-e062b32815f8
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:40:11.4028626",
- "lastUpdatedTimeUtc": "2026-02-06T07:40:13.0441214", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:57:04.955593",
+ "lastUpdatedTimeUtc": "2026-05-20T08:57:06.9216108", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -236,13 +238,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:40:33 GMT
+ - Wed, 20 May 2026 08:57:26 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c63ca9f9-3a74-4483-ad70-909f48425e93/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b705ae39-ed95-42dc-932f-e062b32815f8/result
Pragma:
- no-cache
RequestId:
- - ea61b86c-fef8-4688-85b3-057d4995be3d
+ - 47ee6ebc-7d54-463f-9a4c-dbdec85d3a61
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -250,7 +252,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - c63ca9f9-3a74-4483-ad70-909f48425e93
+ - b705ae39-ed95-42dc-932f-e062b32815f8
status:
code: 200
message: OK
@@ -266,14 +268,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c63ca9f9-3a74-4483-ad70-909f48425e93/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b705ae39-ed95-42dc-932f-e062b32815f8/result
response:
body:
- string: '{"id": "fb2af902-f1bc-4a0e-972d-6c43638161ff", "type": "Notebook",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}'
+ string: '{"id": "5463ebc8-c2ba-4305-b003-1d6945379c01", "type": "Notebook",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -284,11 +285,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 07:40:34 GMT
+ - Wed, 20 May 2026 08:57:27 GMT
Pragma:
- no-cache
RequestId:
- - f69343d4-a86f-4f2b-99d7-a442c60ccf6a
+ - 439bbc3d-044f-4650-8a47-9fef910031de
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -312,14 +313,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -328,15 +330,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:40:35 GMT
+ - Wed, 20 May 2026 08:57:28 GMT
Pragma:
- no-cache
RequestId:
- - a498beb9-af31-4bf9-96e7-640385456637
+ - 7602a49c-ed3d-47a4-b2c8-6aaa2f6b8abe
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -362,14 +364,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -378,15 +381,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:40:36 GMT
+ - Wed, 20 May 2026 08:57:28 GMT
Pragma:
- no-cache
RequestId:
- - 1037b74c-392b-43d2-89db-d2b3544714b8
+ - c23cb68a-848f-46cc-99be-dceb4d578a7b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -412,14 +415,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "fb2af902-f1bc-4a0e-972d-6c43638161ff", "type": "Notebook",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "5463ebc8-c2ba-4305-b003-1d6945379c01", "type": "Notebook",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -428,15 +430,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '167'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:40:37 GMT
+ - Wed, 20 May 2026 08:57:29 GMT
Pragma:
- no-cache
RequestId:
- - 7176dca3-ab7e-47bf-a5b9-cf8375ab88d7
+ - 861fb188-5034-431d-b332-8ccc8eb1bf22
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -462,14 +464,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -478,15 +481,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:40:37 GMT
+ - Wed, 20 May 2026 08:57:31 GMT
Pragma:
- no-cache
RequestId:
- - 0933b99a-e204-43dd-bb41-49361c444b28
+ - 7782ad73-d240-43e7-b78b-de532b291730
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -512,14 +515,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
- string: '{"value": [{"id": "fb2af902-f1bc-4a0e-972d-6c43638161ff", "type": "Notebook",
- "displayName": "fabcli000001", "workspaceId":
- "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}'
+ string: '{"value": [{"id": "5463ebc8-c2ba-4305-b003-1d6945379c01", "type": "Notebook",
+ "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -528,15 +530,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '178'
+ - '167'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:40:38 GMT
+ - Wed, 20 May 2026 08:57:32 GMT
Pragma:
- no-cache
RequestId:
- - 63c1ffc3-2476-4561-b828-86fb9e31e864
+ - e37f6dfc-287c-492d-a80d-7047857d4434
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -564,9 +566,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items/fb2af902-f1bc-4a0e-972d-6c43638161ff
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items/5463ebc8-c2ba-4305-b003-1d6945379c01
response:
body:
string: ''
@@ -582,11 +584,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:40:39 GMT
+ - Wed, 20 May 2026 08:57:33 GMT
Pragma:
- no-cache
RequestId:
- - a80ec2ca-b422-4124-bb52-80793aa771fc
+ - 105f6e5b-4f2c-4175-b881-5bc3955512cb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_workspace_non_recursive_success.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_workspace_non_recursive_success.yaml
index 8287ac912..503f15c2d 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_workspace_non_recursive_success.yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_workspace_non_recursive_success.yaml
@@ -11,13 +11,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "ace730cf-7c25-4530-9b0a-403d51a84a39",
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
"displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
"type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
@@ -28,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2341'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:40:29 GMT
+ - Wed, 20 May 2026 08:34:01 GMT
Pragma:
- no-cache
RequestId:
- - 1bdb20ba-63b0-4dfc-9bfa-10baa2b84364
+ - e82533b5-98be-4639-88fb-0125e6c84ae3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -62,13 +62,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "ace730cf-7c25-4530-9b0a-403d51a84a39",
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
"displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
"type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
@@ -79,15 +79,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2341'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:40:30 GMT
+ - Wed, 20 May 2026 08:34:01 GMT
Pragma:
- no-cache
RequestId:
- - 257b9981-30a7-408e-a719-a3995dc4ba25
+ - 97b359d1-8eea-4f9e-b413-f615551627ab
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -113,7 +113,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -129,15 +129,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '424'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:40:34 GMT
+ - Wed, 20 May 2026 08:34:05 GMT
Pragma:
- no-cache
RequestId:
- - 506daf51-dafe-475b-8c06-6bbfa7066d5a
+ - 58728bff-2462-4595-8061-1e413922c34e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -165,12 +165,12 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001",
+ string: '{"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
@@ -184,13 +184,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:40:41 GMT
+ - Wed, 20 May 2026 08:34:14 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c
+ - https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e
Pragma:
- no-cache
RequestId:
- - 982362b3-28d4-46bc-9efc-1de43c0c9dd5
+ - 6e8c5d3e-2af2-4c0a-9663-74b67597bd02
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -216,16 +216,16 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "ace730cf-7c25-4530-9b0a-403d51a84a39",
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
"displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
"type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001",
+ {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
@@ -235,15 +235,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2381'
+ - '2656'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:40:41 GMT
+ - Wed, 20 May 2026 08:34:15 GMT
Pragma:
- no-cache
RequestId:
- - b0be197c-9658-4a0b-8454-cdfdbc2ac342
+ - 8bcdd6b8-dc65-479d-9d0d-08c0fc8de7b1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -269,16 +269,16 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "ace730cf-7c25-4530-9b0a-403d51a84a39",
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
"displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
"type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001",
+ {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
@@ -288,15 +288,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2381'
+ - '2656'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:40:42 GMT
+ - Wed, 20 May 2026 08:34:15 GMT
Pragma:
- no-cache
RequestId:
- - c976bc1b-e219-40fa-9d5a-d48a2a003466
+ - afc3f7ca-c0fb-4b18-8593-cc8545c02c59
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -322,7 +322,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -338,15 +338,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '424'
+ - '425'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:40:47 GMT
+ - Wed, 20 May 2026 08:34:19 GMT
Pragma:
- no-cache
RequestId:
- - 53d54b91-9952-48be-9f51-ec7a8d447bff
+ - 64b0aac6-1f53-41ff-a9d1-1bde0711239b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -374,12 +374,12 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002",
+ string: '{"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
@@ -389,17 +389,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '155'
+ - '156'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:40:54 GMT
+ - Wed, 20 May 2026 08:34:25 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/b0c6f754-3685-4dc9-a679-2eb046618f22
+ - https://api.fabric.microsoft.com/v1/workspaces/6b1091f5-3057-4e89-81f8-25884ca70f7a
Pragma:
- no-cache
RequestId:
- - cac65866-0052-40c6-9d26-daff99bf26d8
+ - de9df86f-4fa1-4d0d-918b-c973e7366d71
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -425,18 +425,18 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "ace730cf-7c25-4530-9b0a-403d51a84a39",
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
"displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
"type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001",
+ {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002",
+ {"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
@@ -446,15 +446,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2418'
+ - '2691'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:40:55 GMT
+ - Wed, 20 May 2026 08:34:26 GMT
Pragma:
- no-cache
RequestId:
- - d815f3b2-6d34-4111-8b18-63f9649e81e3
+ - 5e6ab99a-650b-4342-a87a-62063497965d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -480,9 +480,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items
response:
body:
string: '{"value": []}'
@@ -498,11 +498,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:40:55 GMT
+ - Wed, 20 May 2026 08:34:27 GMT
Pragma:
- no-cache
RequestId:
- - 490b4d29-3a7c-40f1-81f2-ed3f41044149
+ - 1e3f9f98-d85e-4c18-9711-dff2166e1e1e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -528,9 +528,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items
response:
body:
string: '{"value": []}'
@@ -546,11 +546,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:40:55 GMT
+ - Wed, 20 May 2026 08:34:28 GMT
Pragma:
- no-cache
RequestId:
- - 0f8778d9-806e-4570-bd0b-bbda9343ed22
+ - 5045147d-5017-4273-8f9c-7898b07d19d4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -580,9 +580,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/notebooks
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/notebooks
response:
body:
string: 'null'
@@ -598,15 +598,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:40:57 GMT
+ - Wed, 20 May 2026 08:34:30 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/443d6a3a-4a04-40c0-8471-82ea2b43117c
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/22aa18fe-b12f-4e41-bdff-303e808a1104
Pragma:
- no-cache
RequestId:
- - 839aec1a-b9fb-4062-a98c-9d42382b4a94
+ - 01d480a9-4a86-4da6-be43-d7e83cfc4930
Retry-After:
- '20'
Strict-Transport-Security:
@@ -620,7 +620,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - 443d6a3a-4a04-40c0-8471-82ea2b43117c
+ - 22aa18fe-b12f-4e41-bdff-303e808a1104
status:
code: 202
message: Accepted
@@ -636,13 +636,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/443d6a3a-4a04-40c0-8471-82ea2b43117c
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/22aa18fe-b12f-4e41-bdff-303e808a1104
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-23T12:40:56.1090063",
- "lastUpdatedTimeUtc": "2026-04-23T12:40:58.0145778", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:34:29.9244458",
+ "lastUpdatedTimeUtc": "2026-05-20T08:34:31.5902068", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -652,17 +652,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '131'
+ - '132'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:41:17 GMT
+ - Wed, 20 May 2026 08:34:51 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/443d6a3a-4a04-40c0-8471-82ea2b43117c/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/22aa18fe-b12f-4e41-bdff-303e808a1104/result
Pragma:
- no-cache
RequestId:
- - 48a397a9-33b0-4aea-bdb4-a5ad76d59925
+ - 7f3e8293-df0b-40a1-aa45-2a3c1997a368
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -670,7 +670,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - 443d6a3a-4a04-40c0-8471-82ea2b43117c
+ - 22aa18fe-b12f-4e41-bdff-303e808a1104
status:
code: 200
message: OK
@@ -686,13 +686,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/443d6a3a-4a04-40c0-8471-82ea2b43117c/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/22aa18fe-b12f-4e41-bdff-303e808a1104/result
response:
body:
- string: '{"id": "de691bb3-4191-4e3f-b119-fd14d8248f37", "type": "Notebook",
- "displayName": "fabcli000003", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}'
+ string: '{"id": "3f09b34f-9c96-4bda-9cc3-8c80d78c1d3b", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -703,11 +703,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Thu, 23 Apr 2026 12:41:17 GMT
+ - Wed, 20 May 2026 08:34:52 GMT
Pragma:
- no-cache
RequestId:
- - 672f3c4a-ed55-4bef-8467-acf7279e0f74
+ - 2a5b616f-2d28-464d-aaed-27b8c62afd73
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -731,18 +731,18 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "ace730cf-7c25-4530-9b0a-403d51a84a39",
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
"displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
"type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001",
+ {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002",
+ {"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
@@ -752,15 +752,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2418'
+ - '2691'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:41:18 GMT
+ - Wed, 20 May 2026 08:34:52 GMT
Pragma:
- no-cache
RequestId:
- - 4968c7b0-260e-45f7-b045-350ca1acdf51
+ - c1ad665b-20eb-475e-9408-391a47cee344
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -786,13 +786,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items
response:
body:
- string: '{"value": [{"id": "de691bb3-4191-4e3f-b119-fd14d8248f37", "type": "Notebook",
- "displayName": "fabcli000003", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}]}'
+ string: '{"value": [{"id": "3f09b34f-9c96-4bda-9cc3-8c80d78c1d3b", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -801,15 +801,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '165'
+ - '166'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:41:19 GMT
+ - Wed, 20 May 2026 08:34:53 GMT
Pragma:
- no-cache
RequestId:
- - aaaac2f1-78be-4154-bb4a-4f00eb0dce08
+ - 38e4b509-4c9b-4efc-98aa-443e9b1fc5a4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -835,13 +835,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items
response:
body:
- string: '{"value": [{"id": "de691bb3-4191-4e3f-b119-fd14d8248f37", "type": "Notebook",
- "displayName": "fabcli000003", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}]}'
+ string: '{"value": [{"id": "3f09b34f-9c96-4bda-9cc3-8c80d78c1d3b", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -850,15 +850,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '165'
+ - '166'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:41:19 GMT
+ - Wed, 20 May 2026 08:34:55 GMT
Pragma:
- no-cache
RequestId:
- - ba536aec-37f2-4b8d-b651-956949039a44
+ - 1007eb59-40cc-4203-b6e6-45c39011badd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -886,13 +886,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/dataPipelines
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/dataPipelines
response:
body:
- string: '{"id": "3c4accdb-4d14-4dc1-974e-b59eaa4f489c", "type": "DataPipeline",
- "displayName": "fabcli000004", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}'
+ string: '{"id": "2cdfbc2a-0fe6-40ac-8aae-5c6d89ec8eb4", "type": "DataPipeline",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -901,17 +901,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '157'
+ - '155'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:41:26 GMT
+ - Wed, 20 May 2026 08:35:00 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - d50819f9-281e-40d1-9f49-9d460629c687
+ - d8c39061-0292-4e92-9c64-59d11e764d34
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -937,18 +937,18 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "ace730cf-7c25-4530-9b0a-403d51a84a39",
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
"displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
"type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001",
+ {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002",
+ {"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
@@ -958,15 +958,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2418'
+ - '2691'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:41:26 GMT
+ - Wed, 20 May 2026 08:35:01 GMT
Pragma:
- no-cache
RequestId:
- - 09a3975c-44cb-40e7-ae5a-e51398629aca
+ - 5e3b6dcd-b6ba-4e44-9420-5b61937b7921
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -992,9 +992,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -1010,11 +1010,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:41:27 GMT
+ - Wed, 20 May 2026 08:35:02 GMT
Pragma:
- no-cache
RequestId:
- - 9b1095b3-24d7-4eb7-bb58-7dce15e9cc66
+ - 252a976d-e91f-482f-91e6-0e71cd1b047e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1040,9 +1040,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -1058,11 +1058,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:41:27 GMT
+ - Wed, 20 May 2026 08:35:02 GMT
Pragma:
- no-cache
RequestId:
- - 3a79cc41-384f-4405-8881-6d959b575a47
+ - 0fd284d9-5dc3-4e1f-9b8e-a3fc80393bff
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1090,13 +1090,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/folders
response:
body:
- string: '{"id": "072d7ba5-69a8-4ad2-8cfa-2622113df04e", "displayName": "fabcli000005",
- "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}'
+ string: '{"id": "105f23f9-2490-41f7-a1c5-dc95d99acb4a", "displayName": "fabcli000005",
+ "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -1109,13 +1109,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:41:28 GMT
+ - Wed, 20 May 2026 08:35:04 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/folders/072d7ba5-69a8-4ad2-8cfa-2622113df04e
+ - https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/folders/105f23f9-2490-41f7-a1c5-dc95d99acb4a
Pragma:
- no-cache
RequestId:
- - 14b31b5a-75b5-48a8-b630-7790aa29170c
+ - 5b6adf45-2447-45a8-af09-668936bfb976
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1141,18 +1141,18 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "ace730cf-7c25-4530-9b0a-403d51a84a39",
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
"displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
"type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001",
+ {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002",
+ {"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
@@ -1162,15 +1162,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2418'
+ - '2691'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:41:28 GMT
+ - Wed, 20 May 2026 08:35:05 GMT
Pragma:
- no-cache
RequestId:
- - 4444333d-16d2-47c2-81d9-2aec1326aa6a
+ - ed9c70f9-2c93-4a94-a638-8c616d81ad9a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1196,13 +1196,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "072d7ba5-69a8-4ad2-8cfa-2622113df04e", "displayName":
- "fabcli000005", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}]}'
+ string: '{"value": [{"id": "105f23f9-2490-41f7-a1c5-dc95d99acb4a", "displayName":
+ "fabcli000005", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1211,15 +1211,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '142'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:41:28 GMT
+ - Wed, 20 May 2026 08:35:06 GMT
Pragma:
- no-cache
RequestId:
- - 1b43df11-2ca4-4ca0-8593-66547a170733
+ - 9ac232a9-52fd-443b-b210-cec316cd5e4d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1245,15 +1245,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items
response:
body:
- string: '{"value": [{"id": "de691bb3-4191-4e3f-b119-fd14d8248f37", "type": "Notebook",
- "displayName": "fabcli000003", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"},
- {"id": "3c4accdb-4d14-4dc1-974e-b59eaa4f489c", "type": "DataPipeline", "displayName":
- "fabcli000004", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}]}'
+ string: '{"value": [{"id": "3f09b34f-9c96-4bda-9cc3-8c80d78c1d3b", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"},
+ {"id": "2cdfbc2a-0fe6-40ac-8aae-5c6d89ec8eb4", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1266,11 +1266,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:41:29 GMT
+ - Wed, 20 May 2026 08:35:06 GMT
Pragma:
- no-cache
RequestId:
- - ffdcf669-5f08-4a66-a903-46c35f19cbc6
+ - e8fb10c0-325d-4a11-b424-7632c8fc8f07
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1296,15 +1296,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items
response:
body:
- string: '{"value": [{"id": "de691bb3-4191-4e3f-b119-fd14d8248f37", "type": "Notebook",
- "displayName": "fabcli000003", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"},
- {"id": "3c4accdb-4d14-4dc1-974e-b59eaa4f489c", "type": "DataPipeline", "displayName":
- "fabcli000004", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}]}'
+ string: '{"value": [{"id": "3f09b34f-9c96-4bda-9cc3-8c80d78c1d3b", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"},
+ {"id": "2cdfbc2a-0fe6-40ac-8aae-5c6d89ec8eb4", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1317,11 +1317,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:41:29 GMT
+ - Wed, 20 May 2026 08:35:07 GMT
Pragma:
- no-cache
RequestId:
- - e5564303-426a-48ea-9005-f98deb350dc2
+ - eb362a77-22c9-4bf6-80bf-0aebd4dc888a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1337,7 +1337,7 @@ interactions:
message: OK
- request:
body: '{"displayName": "fabcli000006", "type": "SparkJobDefinition", "folderId":
- "072d7ba5-69a8-4ad2-8cfa-2622113df04e"}'
+ "105f23f9-2490-41f7-a1c5-dc95d99acb4a"}'
headers:
Accept:
- '*/*'
@@ -1350,14 +1350,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/sparkJobDefinitions
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/sparkJobDefinitions
response:
body:
- string: '{"id": "e370d96c-07fc-4fd7-b39b-1535f95e66ea", "type": "SparkJobDefinition",
- "displayName": "fabcli000006", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c",
- "folderId": "072d7ba5-69a8-4ad2-8cfa-2622113df04e"}'
+ string: '{"id": "c8742bed-419c-48a5-9190-ed76c459f74c", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e",
+ "folderId": "105f23f9-2490-41f7-a1c5-dc95d99acb4a"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1366,17 +1366,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '193'
+ - '195'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:41:31 GMT
+ - Wed, 20 May 2026 08:35:09 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 1bf1ad3a-5d85-42db-9424-f3be5a8e245b
+ - aea98a0e-c3c0-4c54-beb5-3b59c797b943
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1402,18 +1402,18 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "ace730cf-7c25-4530-9b0a-403d51a84a39",
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
"displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
"type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001",
+ {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002",
+ {"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
@@ -1423,15 +1423,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2418'
+ - '2691'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:41:31 GMT
+ - Wed, 20 May 2026 08:35:10 GMT
Pragma:
- no-cache
RequestId:
- - b794a981-5355-41a9-96b5-b21214265b9b
+ - 7a104f42-b8f0-47e0-a7f5-ef356d64932e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1457,18 +1457,18 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "ace730cf-7c25-4530-9b0a-403d51a84a39",
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
"displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
"type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001",
+ {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002",
+ {"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
@@ -1478,15 +1478,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2418'
+ - '2691'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:41:31 GMT
+ - Wed, 20 May 2026 08:35:11 GMT
Pragma:
- no-cache
RequestId:
- - d8e60f1d-c56f-418b-a9b3-8e2b77e060be
+ - dd9bf0ad-2db3-4dd3-a0f7-6ffe4bee9de2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1512,18 +1512,18 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items
response:
body:
- string: '{"value": [{"id": "de691bb3-4191-4e3f-b119-fd14d8248f37", "type": "Notebook",
- "displayName": "fabcli000003", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"},
- {"id": "3c4accdb-4d14-4dc1-974e-b59eaa4f489c", "type": "DataPipeline", "displayName":
- "fabcli000004", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"},
- {"id": "e370d96c-07fc-4fd7-b39b-1535f95e66ea", "type": "SparkJobDefinition",
- "displayName": "fabcli000006", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c",
- "folderId": "072d7ba5-69a8-4ad2-8cfa-2622113df04e"}]}'
+ string: '{"value": [{"id": "3f09b34f-9c96-4bda-9cc3-8c80d78c1d3b", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"},
+ {"id": "2cdfbc2a-0fe6-40ac-8aae-5c6d89ec8eb4", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"},
+ {"id": "c8742bed-419c-48a5-9190-ed76c459f74c", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e",
+ "folderId": "105f23f9-2490-41f7-a1c5-dc95d99acb4a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1532,15 +1532,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '302'
+ - '301'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:41:32 GMT
+ - Wed, 20 May 2026 08:35:11 GMT
Pragma:
- no-cache
RequestId:
- - f93377ce-25b8-4d76-8b04-cf202a6efbff
+ - 1137113c-4048-40a2-96f6-d75e9b86459a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1566,13 +1566,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "072d7ba5-69a8-4ad2-8cfa-2622113df04e", "displayName":
- "fabcli000005", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}]}'
+ string: '{"value": [{"id": "105f23f9-2490-41f7-a1c5-dc95d99acb4a", "displayName":
+ "fabcli000005", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1581,15 +1581,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '142'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:41:32 GMT
+ - Wed, 20 May 2026 08:35:12 GMT
Pragma:
- no-cache
RequestId:
- - d014918b-d0ae-4b18-b7c3-1805c8da9c86
+ - fd612e39-a616-40f8-9894-898858d0dc4c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1615,13 +1615,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "072d7ba5-69a8-4ad2-8cfa-2622113df04e", "displayName":
- "fabcli000005", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}]}'
+ string: '{"value": [{"id": "105f23f9-2490-41f7-a1c5-dc95d99acb4a", "displayName":
+ "fabcli000005", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1630,15 +1630,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '142'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:41:32 GMT
+ - Wed, 20 May 2026 08:35:13 GMT
Pragma:
- no-cache
RequestId:
- - 836425c9-c4fb-47bd-b18e-541ad0dcf982
+ - 64d1dd76-cefa-4fa2-8ed6-af6b3a457787
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1664,18 +1664,18 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "ace730cf-7c25-4530-9b0a-403d51a84a39",
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
"displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
"type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001",
+ {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002",
+ {"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
@@ -1685,15 +1685,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2418'
+ - '2691'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:41:33 GMT
+ - Wed, 20 May 2026 08:35:14 GMT
Pragma:
- no-cache
RequestId:
- - a9d06663-f9ad-405e-8f06-02f188f694a3
+ - b38d79f3-ed51-4e70-ba2b-bb5ac9d97462
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1719,9 +1719,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b0c6f754-3685-4dc9-a679-2eb046618f22/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6b1091f5-3057-4e89-81f8-25884ca70f7a/items
response:
body:
string: '{"value": []}'
@@ -1737,11 +1737,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:41:33 GMT
+ - Wed, 20 May 2026 08:35:15 GMT
Pragma:
- no-cache
RequestId:
- - 6a970044-42ea-48ba-a781-356e500b02ff
+ - 2e968f55-bab9-418b-8b62-fc490611b8e6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1767,9 +1767,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b0c6f754-3685-4dc9-a679-2eb046618f22/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6b1091f5-3057-4e89-81f8-25884ca70f7a/items
response:
body:
string: '{"value": []}'
@@ -1785,11 +1785,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:41:33 GMT
+ - Wed, 20 May 2026 08:35:15 GMT
Pragma:
- no-cache
RequestId:
- - 952f3660-c578-494d-860b-28132e58827e
+ - e5e49e27-b1b4-4e55-972a-3ce227614458
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1815,9 +1815,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b0c6f754-3685-4dc9-a679-2eb046618f22/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6b1091f5-3057-4e89-81f8-25884ca70f7a/items
response:
body:
string: '{"value": []}'
@@ -1833,11 +1833,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:41:33 GMT
+ - Wed, 20 May 2026 08:35:16 GMT
Pragma:
- no-cache
RequestId:
- - fcc0c943-8254-4de9-8770-39f96f01a88b
+ - f8154e89-218a-4d0e-87d6-e939358c7f1d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1863,13 +1863,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/items/de691bb3-4191-4e3f-b119-fd14d8248f37
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items/3f09b34f-9c96-4bda-9cc3-8c80d78c1d3b
response:
body:
- string: '{"id": "de691bb3-4191-4e3f-b119-fd14d8248f37", "type": "Notebook",
- "displayName": "fabcli000003", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}'
+ string: '{"id": "3f09b34f-9c96-4bda-9cc3-8c80d78c1d3b", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1878,17 +1878,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '154'
+ - '153'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:41:34 GMT
+ - Wed, 20 May 2026 08:35:17 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - fe902025-5033-46e6-84ef-e7542adcd04d
+ - c57d2fb4-0562-4139-9474-fb6b462fb03d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1916,9 +1916,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/items/de691bb3-4191-4e3f-b119-fd14d8248f37/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items/3f09b34f-9c96-4bda-9cc3-8c80d78c1d3b/getDefinition
response:
body:
string: 'null'
@@ -1934,13 +1934,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:41:35 GMT
+ - Wed, 20 May 2026 08:35:18 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cf660bb6-96e5-4606-be18-5909b22267d8
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a77af522-7a12-4272-b5c1-d5e9c88b1cc6
Pragma:
- no-cache
RequestId:
- - 345a9068-2069-416d-a328-8ff750b5a519
+ - b30e4704-bab3-4d45-a426-7613ea0edec8
Retry-After:
- '20'
Strict-Transport-Security:
@@ -1954,7 +1954,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - cf660bb6-96e5-4606-be18-5909b22267d8
+ - a77af522-7a12-4272-b5c1-d5e9c88b1cc6
status:
code: 202
message: Accepted
@@ -1970,13 +1970,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cf660bb6-96e5-4606-be18-5909b22267d8
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a77af522-7a12-4272-b5c1-d5e9c88b1cc6
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-23T12:41:35.2682824",
- "lastUpdatedTimeUtc": "2026-04-23T12:41:36.0138292", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:35:18.7236268",
+ "lastUpdatedTimeUtc": "2026-05-20T08:35:19.047186", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -1990,13 +1990,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:41:55 GMT
+ - Wed, 20 May 2026 08:35:39 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cf660bb6-96e5-4606-be18-5909b22267d8/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a77af522-7a12-4272-b5c1-d5e9c88b1cc6/result
Pragma:
- no-cache
RequestId:
- - 4642249f-00f1-4b5a-845d-063813fd9778
+ - d1ea0236-88ce-4865-b5af-6a3c0dd088c3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2004,7 +2004,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - cf660bb6-96e5-4606-be18-5909b22267d8
+ - a77af522-7a12-4272-b5c1-d5e9c88b1cc6
status:
code: 200
message: OK
@@ -2020,9 +2020,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cf660bb6-96e5-4606-be18-5909b22267d8/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a77af522-7a12-4272-b5c1-d5e9c88b1cc6/result
response:
body:
string: '{"definition": {"parts": [{"path": "notebook-content.py", "payload":
@@ -2039,11 +2039,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Thu, 23 Apr 2026 12:41:56 GMT
+ - Wed, 20 May 2026 08:35:39 GMT
Pragma:
- no-cache
RequestId:
- - 63ab3a27-e03d-4a34-97b8-ddb54180f804
+ - 78fb269a-e459-44a6-b23d-2a9fa7ff1d08
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -2072,9 +2072,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/b0c6f754-3685-4dc9-a679-2eb046618f22/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6b1091f5-3057-4e89-81f8-25884ca70f7a/items
response:
body:
string: 'null'
@@ -2090,15 +2090,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:41:58 GMT
+ - Wed, 20 May 2026 08:35:42 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d8d68273-a6fb-4e6c-85ba-d58a0d108c31
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/327862e8-47cc-4b09-99a5-5f442a554f33
Pragma:
- no-cache
RequestId:
- - 2790f725-b2a3-4ba7-9c69-027e2559c943
+ - 5a0a2945-7ede-4a2b-a832-a8b3f7d6d9d9
Retry-After:
- '20'
Strict-Transport-Security:
@@ -2112,7 +2112,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - d8d68273-a6fb-4e6c-85ba-d58a0d108c31
+ - 327862e8-47cc-4b09-99a5-5f442a554f33
status:
code: 202
message: Accepted
@@ -2128,13 +2128,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d8d68273-a6fb-4e6c-85ba-d58a0d108c31
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/327862e8-47cc-4b09-99a5-5f442a554f33
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-23T12:41:57.4906507",
- "lastUpdatedTimeUtc": "2026-04-23T12:41:59.0672945", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:35:41.5076251",
+ "lastUpdatedTimeUtc": "2026-05-20T08:35:43.6498577", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -2148,13 +2148,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:42:17 GMT
+ - Wed, 20 May 2026 08:36:03 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d8d68273-a6fb-4e6c-85ba-d58a0d108c31/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/327862e8-47cc-4b09-99a5-5f442a554f33/result
Pragma:
- no-cache
RequestId:
- - 2ca6942a-bd62-4000-a68f-85b52bb9e8ea
+ - a7653e91-2545-498e-97c1-e5b83c831c38
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2162,7 +2162,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - d8d68273-a6fb-4e6c-85ba-d58a0d108c31
+ - 327862e8-47cc-4b09-99a5-5f442a554f33
status:
code: 200
message: OK
@@ -2178,13 +2178,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d8d68273-a6fb-4e6c-85ba-d58a0d108c31/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/327862e8-47cc-4b09-99a5-5f442a554f33/result
response:
body:
- string: '{"id": "ce5bf52e-9577-4643-a6ea-c06443313768", "type": "Notebook",
- "displayName": "fabcli000003", "description": "", "workspaceId": "b0c6f754-3685-4dc9-a679-2eb046618f22"}'
+ string: '{"id": "0c98cff7-ac91-4b00-ae65-bd4b81c8a2da", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "6b1091f5-3057-4e89-81f8-25884ca70f7a"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2195,11 +2195,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Thu, 23 Apr 2026 12:42:19 GMT
+ - Wed, 20 May 2026 08:36:04 GMT
Pragma:
- no-cache
RequestId:
- - 35ea3d0e-21d3-44e0-b02a-00c59cb54260
+ - 706c3582-1f4e-4e98-a355-23e19e69fcb3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -2223,18 +2223,18 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "ace730cf-7c25-4530-9b0a-403d51a84a39",
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
"displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
"type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001",
+ {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002",
+ {"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
@@ -2244,15 +2244,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2418'
+ - '2691'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:42:20 GMT
+ - Wed, 20 May 2026 08:36:05 GMT
Pragma:
- no-cache
RequestId:
- - 334d5a60-8dd1-47a2-8e59-c57343b718ff
+ - 50b3e269-d8b9-4706-932b-dd5e041927de
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2278,13 +2278,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b0c6f754-3685-4dc9-a679-2eb046618f22/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6b1091f5-3057-4e89-81f8-25884ca70f7a/items
response:
body:
- string: '{"value": [{"id": "ce5bf52e-9577-4643-a6ea-c06443313768", "type": "Notebook",
- "displayName": "fabcli000003", "description": "", "workspaceId": "b0c6f754-3685-4dc9-a679-2eb046618f22"}]}'
+ string: '{"value": [{"id": "0c98cff7-ac91-4b00-ae65-bd4b81c8a2da", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "6b1091f5-3057-4e89-81f8-25884ca70f7a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2293,15 +2293,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '167'
+ - '166'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:42:21 GMT
+ - Wed, 20 May 2026 08:36:05 GMT
Pragma:
- no-cache
RequestId:
- - 090feaaf-d0a1-412c-b378-2d1373c6b20d
+ - 4517f967-47cd-4265-9690-fd330a4b6f6e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2327,13 +2327,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b0c6f754-3685-4dc9-a679-2eb046618f22/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6b1091f5-3057-4e89-81f8-25884ca70f7a/items
response:
body:
- string: '{"value": [{"id": "ce5bf52e-9577-4643-a6ea-c06443313768", "type": "Notebook",
- "displayName": "fabcli000003", "description": "", "workspaceId": "b0c6f754-3685-4dc9-a679-2eb046618f22"}]}'
+ string: '{"value": [{"id": "0c98cff7-ac91-4b00-ae65-bd4b81c8a2da", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "6b1091f5-3057-4e89-81f8-25884ca70f7a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2342,15 +2342,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '167'
+ - '166'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:42:21 GMT
+ - Wed, 20 May 2026 08:36:06 GMT
Pragma:
- no-cache
RequestId:
- - 27a3d3c1-159a-4360-ba36-16cdfb7446be
+ - d5eb3816-ab5a-479b-916a-61e4120bada2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2376,13 +2376,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b0c6f754-3685-4dc9-a679-2eb046618f22/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6b1091f5-3057-4e89-81f8-25884ca70f7a/items
response:
body:
- string: '{"value": [{"id": "ce5bf52e-9577-4643-a6ea-c06443313768", "type": "Notebook",
- "displayName": "fabcli000003", "description": "", "workspaceId": "b0c6f754-3685-4dc9-a679-2eb046618f22"}]}'
+ string: '{"value": [{"id": "0c98cff7-ac91-4b00-ae65-bd4b81c8a2da", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "6b1091f5-3057-4e89-81f8-25884ca70f7a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2391,15 +2391,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '167'
+ - '166'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:42:22 GMT
+ - Wed, 20 May 2026 08:36:07 GMT
Pragma:
- no-cache
RequestId:
- - 9395298a-6e3d-48d1-9388-3d20fa338e74
+ - 356e83f2-606a-49ff-8094-905805b29947
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2425,13 +2425,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/items/3c4accdb-4d14-4dc1-974e-b59eaa4f489c
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items/2cdfbc2a-0fe6-40ac-8aae-5c6d89ec8eb4
response:
body:
- string: '{"id": "3c4accdb-4d14-4dc1-974e-b59eaa4f489c", "type": "DataPipeline",
- "displayName": "fabcli000004", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}'
+ string: '{"id": "2cdfbc2a-0fe6-40ac-8aae-5c6d89ec8eb4", "type": "DataPipeline",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -2440,17 +2440,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '157'
+ - '155'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:42:22 GMT
+ - Wed, 20 May 2026 08:36:08 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 386baa52-b5a4-41e7-979c-e45af85e1b8b
+ - cfa802b2-052c-4c1d-bb8a-b6212ce65369
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2478,9 +2478,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/items/3c4accdb-4d14-4dc1-974e-b59eaa4f489c/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items/2cdfbc2a-0fe6-40ac-8aae-5c6d89ec8eb4/getDefinition
response:
body:
string: '{"definition": {"parts": [{"path": "pipeline-content.json", "payload":
@@ -2495,15 +2495,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '439'
+ - '441'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:42:23 GMT
+ - Wed, 20 May 2026 08:36:09 GMT
Pragma:
- no-cache
RequestId:
- - a85bd75e-da7e-44f1-8dcc-42f984f206cc
+ - 298fb869-edf4-4b44-8a8a-dd07e6323153
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2534,13 +2534,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/b0c6f754-3685-4dc9-a679-2eb046618f22/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6b1091f5-3057-4e89-81f8-25884ca70f7a/items
response:
body:
- string: '{"id": "85d8976a-20c1-4544-898a-859bd1b552df", "type": "DataPipeline",
- "displayName": "fabcli000004", "description": "", "workspaceId": "b0c6f754-3685-4dc9-a679-2eb046618f22"}'
+ string: '{"id": "b435558b-c5b8-4cbd-82e5-aaf020d9fc5b", "type": "DataPipeline",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "6b1091f5-3057-4e89-81f8-25884ca70f7a"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -2549,17 +2549,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '160'
+ - '156'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:42:28 GMT
+ - Wed, 20 May 2026 08:36:15 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 2a375651-1b73-45a2-8773-bca60017e42f
+ - 76a72780-65cd-4642-ab03-63160e9ec746
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2585,18 +2585,18 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "ace730cf-7c25-4530-9b0a-403d51a84a39",
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
"displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
"type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001",
+ {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002",
+ {"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
@@ -2606,15 +2606,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2418'
+ - '2691'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:42:29 GMT
+ - Wed, 20 May 2026 08:36:16 GMT
Pragma:
- no-cache
RequestId:
- - afe7bb7b-2d93-491e-9dd7-f751f423c996
+ - 092c7d3d-a320-40cc-9e63-4af644e12b28
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2640,18 +2640,18 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items
response:
body:
- string: '{"value": [{"id": "de691bb3-4191-4e3f-b119-fd14d8248f37", "type": "Notebook",
- "displayName": "fabcli000003", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"},
- {"id": "3c4accdb-4d14-4dc1-974e-b59eaa4f489c", "type": "DataPipeline", "displayName":
- "fabcli000004", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"},
- {"id": "e370d96c-07fc-4fd7-b39b-1535f95e66ea", "type": "SparkJobDefinition",
- "displayName": "fabcli000006", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c",
- "folderId": "072d7ba5-69a8-4ad2-8cfa-2622113df04e"}]}'
+ string: '{"value": [{"id": "3f09b34f-9c96-4bda-9cc3-8c80d78c1d3b", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"},
+ {"id": "2cdfbc2a-0fe6-40ac-8aae-5c6d89ec8eb4", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"},
+ {"id": "c8742bed-419c-48a5-9190-ed76c459f74c", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e",
+ "folderId": "105f23f9-2490-41f7-a1c5-dc95d99acb4a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2660,15 +2660,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '302'
+ - '301'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:42:29 GMT
+ - Wed, 20 May 2026 08:36:17 GMT
Pragma:
- no-cache
RequestId:
- - b3c28a04-51b6-4ce9-bec1-f98f80690753
+ - d54af077-a2de-4882-880d-d79d5cf4e4b5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2694,13 +2694,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "072d7ba5-69a8-4ad2-8cfa-2622113df04e", "displayName":
- "fabcli000005", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}]}'
+ string: '{"value": [{"id": "105f23f9-2490-41f7-a1c5-dc95d99acb4a", "displayName":
+ "fabcli000005", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2709,15 +2709,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '142'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:42:30 GMT
+ - Wed, 20 May 2026 08:36:18 GMT
Pragma:
- no-cache
RequestId:
- - c18bc4c7-e53f-4385-b3d9-84a1186dcc6d
+ - 0630187f-c75c-4059-8e7a-94a4cc625435
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2743,13 +2743,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "072d7ba5-69a8-4ad2-8cfa-2622113df04e", "displayName":
- "fabcli000005", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}]}'
+ string: '{"value": [{"id": "105f23f9-2490-41f7-a1c5-dc95d99acb4a", "displayName":
+ "fabcli000005", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2758,15 +2758,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '142'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:42:30 GMT
+ - Wed, 20 May 2026 08:36:19 GMT
Pragma:
- no-cache
RequestId:
- - fd4bcb17-bcd2-4465-8a8f-5c69b76e93a7
+ - 1fce0e5e-c9ba-4dba-a4d4-7d017f539f8d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2792,18 +2792,18 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "ace730cf-7c25-4530-9b0a-403d51a84a39",
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
"displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
"type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001",
+ {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002",
+ {"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
@@ -2813,15 +2813,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2418'
+ - '2691'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:42:30 GMT
+ - Wed, 20 May 2026 08:36:19 GMT
Pragma:
- no-cache
RequestId:
- - fa8c1f9c-fc77-42fc-bc90-3c20032d2a1d
+ - c5197a47-9655-4b10-abe7-846352eaa438
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2847,15 +2847,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b0c6f754-3685-4dc9-a679-2eb046618f22/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6b1091f5-3057-4e89-81f8-25884ca70f7a/items
response:
body:
- string: '{"value": [{"id": "ce5bf52e-9577-4643-a6ea-c06443313768", "type": "Notebook",
- "displayName": "fabcli000003", "description": "", "workspaceId": "b0c6f754-3685-4dc9-a679-2eb046618f22"},
- {"id": "85d8976a-20c1-4544-898a-859bd1b552df", "type": "DataPipeline", "displayName":
- "fabcli000004", "description": "", "workspaceId": "b0c6f754-3685-4dc9-a679-2eb046618f22"}]}'
+ string: '{"value": [{"id": "0c98cff7-ac91-4b00-ae65-bd4b81c8a2da", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "6b1091f5-3057-4e89-81f8-25884ca70f7a"},
+ {"id": "b435558b-c5b8-4cbd-82e5-aaf020d9fc5b", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "6b1091f5-3057-4e89-81f8-25884ca70f7a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2864,15 +2864,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '222'
+ - '220'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:42:31 GMT
+ - Wed, 20 May 2026 08:36:20 GMT
Pragma:
- no-cache
RequestId:
- - b7438827-f275-4d91-a753-3fbbfbef24ad
+ - 605b68b2-2a0d-4d9d-92db-bbc5f7e8f655
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2898,9 +2898,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b0c6f754-3685-4dc9-a679-2eb046618f22/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6b1091f5-3057-4e89-81f8-25884ca70f7a/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -2916,11 +2916,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:42:32 GMT
+ - Wed, 20 May 2026 08:36:21 GMT
Pragma:
- no-cache
RequestId:
- - 2529c14d-fda4-44ee-b694-070dc7eeb567
+ - 12d806d8-0d9a-4142-9ab7-ebc3d590ad12
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2946,18 +2946,18 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "ace730cf-7c25-4530-9b0a-403d51a84a39",
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
"displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
"type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001",
+ {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002",
+ {"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
@@ -2967,15 +2967,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2418'
+ - '2691'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:42:32 GMT
+ - Wed, 20 May 2026 08:36:22 GMT
Pragma:
- no-cache
RequestId:
- - f475edc1-ccaa-480c-a686-56517dedddde
+ - e49f642f-49c7-47b5-8851-4c4245e5ce6a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3001,13 +3001,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "072d7ba5-69a8-4ad2-8cfa-2622113df04e", "displayName":
- "fabcli000005", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}]}'
+ string: '{"value": [{"id": "105f23f9-2490-41f7-a1c5-dc95d99acb4a", "displayName":
+ "fabcli000005", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3016,15 +3016,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '142'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:42:33 GMT
+ - Wed, 20 May 2026 08:36:23 GMT
Pragma:
- no-cache
RequestId:
- - 081bfab9-5101-42ea-bb4b-f398ca9be0df
+ - baa19523-4d33-4b8a-971d-6c304dd32b11
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3050,18 +3050,18 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items
response:
body:
- string: '{"value": [{"id": "de691bb3-4191-4e3f-b119-fd14d8248f37", "type": "Notebook",
- "displayName": "fabcli000003", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"},
- {"id": "3c4accdb-4d14-4dc1-974e-b59eaa4f489c", "type": "DataPipeline", "displayName":
- "fabcli000004", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"},
- {"id": "e370d96c-07fc-4fd7-b39b-1535f95e66ea", "type": "SparkJobDefinition",
- "displayName": "fabcli000006", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c",
- "folderId": "072d7ba5-69a8-4ad2-8cfa-2622113df04e"}]}'
+ string: '{"value": [{"id": "3f09b34f-9c96-4bda-9cc3-8c80d78c1d3b", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"},
+ {"id": "2cdfbc2a-0fe6-40ac-8aae-5c6d89ec8eb4", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"},
+ {"id": "c8742bed-419c-48a5-9190-ed76c459f74c", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e",
+ "folderId": "105f23f9-2490-41f7-a1c5-dc95d99acb4a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3070,15 +3070,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '302'
+ - '301'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:42:33 GMT
+ - Wed, 20 May 2026 08:36:23 GMT
Pragma:
- no-cache
RequestId:
- - 4fc61d5b-3ddc-4ae9-a5ce-68218cc5a970
+ - 014a1a92-468d-43b3-a733-fd9abdaa411d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3104,13 +3104,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "072d7ba5-69a8-4ad2-8cfa-2622113df04e", "displayName":
- "fabcli000005", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}]}'
+ string: '{"value": [{"id": "105f23f9-2490-41f7-a1c5-dc95d99acb4a", "displayName":
+ "fabcli000005", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3119,15 +3119,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '142'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:42:35 GMT
+ - Wed, 20 May 2026 08:36:24 GMT
Pragma:
- no-cache
RequestId:
- - f05cab0d-11ea-4e99-883c-7d6c6dfaf276
+ - 95823f14-43f3-433c-bdda-110ac029a9e5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3155,9 +3155,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/items/e370d96c-07fc-4fd7-b39b-1535f95e66ea
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items/c8742bed-419c-48a5-9190-ed76c459f74c
response:
body:
string: ''
@@ -3173,11 +3173,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 23 Apr 2026 12:42:35 GMT
+ - Wed, 20 May 2026 08:36:26 GMT
Pragma:
- no-cache
RequestId:
- - c3902480-90e6-4a01-a1d9-5687a16971d0
+ - aed4f075-f2e8-4dc1-a36c-ae6aea0bb5c9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3203,18 +3203,18 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "ace730cf-7c25-4530-9b0a-403d51a84a39",
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
"displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
"type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001",
+ {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002",
+ {"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
@@ -3224,15 +3224,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2418'
+ - '2691'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:42:35 GMT
+ - Wed, 20 May 2026 08:36:27 GMT
Pragma:
- no-cache
RequestId:
- - b83aada1-6a95-4130-88b9-59e5f8fc341b
+ - ffda10dc-af00-4e2d-ab9c-e7e3fa417904
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3258,15 +3258,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items
response:
body:
- string: '{"value": [{"id": "de691bb3-4191-4e3f-b119-fd14d8248f37", "type": "Notebook",
- "displayName": "fabcli000003", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"},
- {"id": "3c4accdb-4d14-4dc1-974e-b59eaa4f489c", "type": "DataPipeline", "displayName":
- "fabcli000004", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}]}'
+ string: '{"value": [{"id": "3f09b34f-9c96-4bda-9cc3-8c80d78c1d3b", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"},
+ {"id": "2cdfbc2a-0fe6-40ac-8aae-5c6d89ec8eb4", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3279,11 +3279,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:42:36 GMT
+ - Wed, 20 May 2026 08:36:27 GMT
Pragma:
- no-cache
RequestId:
- - d0ce3fb9-ef1b-4748-9c6c-f78cdd7f323f
+ - 557619f4-3319-4b10-a4f6-751986482bb5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3311,9 +3311,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/items/3c4accdb-4d14-4dc1-974e-b59eaa4f489c
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items/2cdfbc2a-0fe6-40ac-8aae-5c6d89ec8eb4
response:
body:
string: ''
@@ -3329,11 +3329,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 23 Apr 2026 12:42:36 GMT
+ - Wed, 20 May 2026 08:36:28 GMT
Pragma:
- no-cache
RequestId:
- - 5983ddd1-1718-41f5-ab6b-ae5fe2bd761c
+ - 066a55a4-0ab4-4030-8962-d43b37ce8c06
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3359,18 +3359,18 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "ace730cf-7c25-4530-9b0a-403d51a84a39",
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
"displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
"type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001",
+ {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002",
+ {"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
@@ -3380,15 +3380,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2418'
+ - '2691'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:42:37 GMT
+ - Wed, 20 May 2026 08:36:30 GMT
Pragma:
- no-cache
RequestId:
- - e90d2f3d-73ab-4c83-998d-81d202fd95c6
+ - 38169040-35fb-446a-b2ab-8f38d734a54e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3414,13 +3414,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items
response:
body:
- string: '{"value": [{"id": "de691bb3-4191-4e3f-b119-fd14d8248f37", "type": "Notebook",
- "displayName": "fabcli000003", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}]}'
+ string: '{"value": [{"id": "3f09b34f-9c96-4bda-9cc3-8c80d78c1d3b", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3429,15 +3429,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '165'
+ - '166'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:42:36 GMT
+ - Wed, 20 May 2026 08:36:30 GMT
Pragma:
- no-cache
RequestId:
- - ef2b39eb-61e5-4129-8971-c47299ccb185
+ - 923662c6-bf84-483c-bafb-5359b30b807e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3465,9 +3465,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/items/de691bb3-4191-4e3f-b119-fd14d8248f37
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items/3f09b34f-9c96-4bda-9cc3-8c80d78c1d3b
response:
body:
string: ''
@@ -3483,11 +3483,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 23 Apr 2026 12:42:37 GMT
+ - Wed, 20 May 2026 08:36:31 GMT
Pragma:
- no-cache
RequestId:
- - 3d44e4e7-6cd5-496a-9ed2-df05eb1d2705
+ - 6e9cd56b-87f0-49e5-ba3c-0eed7d09c993
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3513,18 +3513,18 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "ace730cf-7c25-4530-9b0a-403d51a84a39",
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
"displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
"type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001",
+ {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002",
+ {"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
@@ -3534,15 +3534,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2418'
+ - '2691'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:42:38 GMT
+ - Wed, 20 May 2026 08:36:31 GMT
Pragma:
- no-cache
RequestId:
- - 99c61854-24ac-448b-9bb2-58cd7537acc4
+ - a09b7a0a-4d90-4b9b-899d-19bf26a7cdf7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3568,13 +3568,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "072d7ba5-69a8-4ad2-8cfa-2622113df04e", "displayName":
- "fabcli000005", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}]}'
+ string: '{"value": [{"id": "105f23f9-2490-41f7-a1c5-dc95d99acb4a", "displayName":
+ "fabcli000005", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3583,15 +3583,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '143'
+ - '142'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:42:38 GMT
+ - Wed, 20 May 2026 08:36:33 GMT
Pragma:
- no-cache
RequestId:
- - d208b765-2a36-4dc2-a0c9-dc2bf687f90d
+ - 47e9e153-2fe7-4bac-a91e-794ec673db80
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3619,9 +3619,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/folders/072d7ba5-69a8-4ad2-8cfa-2622113df04e
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/folders/105f23f9-2490-41f7-a1c5-dc95d99acb4a
response:
body:
string: ''
@@ -3637,11 +3637,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 23 Apr 2026 12:42:38 GMT
+ - Wed, 20 May 2026 08:36:33 GMT
Pragma:
- no-cache
RequestId:
- - 3a9e2fc5-87a5-4435-beab-c8eab31f1b23
+ - 32eab29c-aa5c-4e2b-ad3c-e85a2ed97183
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3667,18 +3667,18 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "ace730cf-7c25-4530-9b0a-403d51a84a39",
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
"displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
"type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001",
+ {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002",
+ {"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
@@ -3688,15 +3688,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2418'
+ - '2691'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:42:40 GMT
+ - Wed, 20 May 2026 08:36:34 GMT
Pragma:
- no-cache
RequestId:
- - 04b632c2-64a6-4ac3-9a06-0c5fafae416b
+ - 86895ea0-71ed-4020-ade7-8db3b26b8093
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3722,9 +3722,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items
response:
body:
string: '{"value": []}'
@@ -3740,11 +3740,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:42:40 GMT
+ - Wed, 20 May 2026 08:36:34 GMT
Pragma:
- no-cache
RequestId:
- - ad23ed30-5410-4469-ae9e-3f404dde4ec5
+ - 39d1f140-e272-4850-ab61-4108b8e9eec0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3772,9 +3772,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c
+ uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e
response:
body:
string: ''
@@ -3790,11 +3790,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 23 Apr 2026 12:42:40 GMT
+ - Wed, 20 May 2026 08:36:36 GMT
Pragma:
- no-cache
RequestId:
- - 20466da4-bfc1-42ba-a35c-7bfe5e2cc515
+ - b4e30f3e-e422-4ac9-9372-9a50c9889ba9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3820,16 +3820,16 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "ace730cf-7c25-4530-9b0a-403d51a84a39",
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
"displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
"type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002",
+ {"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002",
"description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
@@ -3839,15 +3839,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2377'
+ - '2655'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:42:40 GMT
+ - Wed, 20 May 2026 08:36:36 GMT
Pragma:
- no-cache
RequestId:
- - 7d060de8-1bf8-4d1e-8dbe-396505e45fb7
+ - e4e97b68-0fef-4d99-82e4-172eb49946eb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3873,15 +3873,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/b0c6f754-3685-4dc9-a679-2eb046618f22/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6b1091f5-3057-4e89-81f8-25884ca70f7a/items
response:
body:
- string: '{"value": [{"id": "ce5bf52e-9577-4643-a6ea-c06443313768", "type": "Notebook",
- "displayName": "fabcli000003", "description": "", "workspaceId": "b0c6f754-3685-4dc9-a679-2eb046618f22"},
- {"id": "85d8976a-20c1-4544-898a-859bd1b552df", "type": "DataPipeline", "displayName":
- "fabcli000004", "description": "", "workspaceId": "b0c6f754-3685-4dc9-a679-2eb046618f22"}]}'
+ string: '{"value": [{"id": "0c98cff7-ac91-4b00-ae65-bd4b81c8a2da", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "6b1091f5-3057-4e89-81f8-25884ca70f7a"},
+ {"id": "b435558b-c5b8-4cbd-82e5-aaf020d9fc5b", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "6b1091f5-3057-4e89-81f8-25884ca70f7a"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3890,15 +3890,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '222'
+ - '220'
Content-Type:
- application/json; charset=utf-8
Date:
- - Thu, 23 Apr 2026 12:42:41 GMT
+ - Wed, 20 May 2026 08:36:37 GMT
Pragma:
- no-cache
RequestId:
- - 3c203570-15dd-4670-9d86-80d61473f8c3
+ - 14cb6653-7ecb-426e-971d-69ff8cd27f4f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3926,9 +3926,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.5.0
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/b0c6f754-3685-4dc9-a679-2eb046618f22
+ uri: https://api.fabric.microsoft.com/v1/workspaces/6b1091f5-3057-4e89-81f8-25884ca70f7a
response:
body:
string: ''
@@ -3944,11 +3944,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 23 Apr 2026 12:42:41 GMT
+ - Wed, 20 May 2026 08:36:39 GMT
Pragma:
- no-cache
RequestId:
- - 68f0b1f6-8e0c-4f73-aa64-9b5a631ba266
+ - 141478ef-ffb5-4d65-99da-c472bf1224b2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_workspace_recursive_success.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_workspace_recursive_success.yaml
index 8e9d7b388..7d93c7ffc 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_workspace_recursive_success.yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_workspace_recursive_success.yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:09:32 GMT
+ - Wed, 20 May 2026 08:36:39 GMT
Pragma:
- no-cache
RequestId:
- - 6f2b50f8-9fbb-4833-8761-60a6db825fd2
+ - 95befb87-41eb-489b-8171-67990be1e192
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,14 +62,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -77,15 +79,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:09:33 GMT
+ - Wed, 20 May 2026 08:36:40 GMT
Pragma:
- no-cache
RequestId:
- - 6b2bd881-3d98-46b1-ad93-0452b2e30313
+ - 4e1b270b-e14d-4f3b-bbf1-3a195b986451
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -111,7 +113,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -127,15 +129,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '427'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:09:39 GMT
+ - Wed, 20 May 2026 08:36:46 GMT
Pragma:
- no-cache
RequestId:
- - 5d20ea45-fe47-49b6-8881-eba85772eafc
+ - cfff5515-b69e-438e-9356-945a8e18aa04
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -160,16 +162,16 @@ interactions:
- keep-alive
Content-Length:
- '89'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -178,17 +180,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '165'
+ - '155'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:09:47 GMT
+ - Wed, 20 May 2026 08:36:53 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e
+ - https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc
Pragma:
- no-cache
RequestId:
- - 60ab7511-cd68-4faa-9698-0e621e1dd84a
+ - 38edceb6-624d-4f50-af8a-e7428e99f74b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -214,15 +216,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -231,15 +235,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2845'
+ - '2658'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:09:48 GMT
+ - Wed, 20 May 2026 08:36:55 GMT
Pragma:
- no-cache
RequestId:
- - 80dcbb1b-37a1-49b2-863d-767512cebc31
+ - 3f2ba209-ad0e-48b6-9514-922da778a593
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -265,15 +269,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -282,15 +288,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2845'
+ - '2658'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:09:48 GMT
+ - Wed, 20 May 2026 08:36:56 GMT
Pragma:
- no-cache
RequestId:
- - 09d01681-66a9-4de2-b63e-0b39b095d34d
+ - a3c6052d-4594-4620-80a7-6135b118164b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -316,7 +322,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/capacities
response:
@@ -332,15 +338,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '425'
+ - '426'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:09:54 GMT
+ - Wed, 20 May 2026 08:37:00 GMT
Pragma:
- no-cache
RequestId:
- - 16ddb0b3-5aa7-4910-bd36-9b0498cef615
+ - 20c8bc21-da42-4637-9e7b-49b83e8ca9b0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -365,16 +371,16 @@ interactions:
- keep-alive
Content-Length:
- '89'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
- string: '{"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
+ string: '{"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -383,17 +389,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '154'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:10:03 GMT
+ - Wed, 20 May 2026 08:37:08 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40
+ - https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d
Pragma:
- no-cache
RequestId:
- - bf1f7000-571e-4cd4-8cc0-8f40f9abc5f4
+ - 34ec8a96-f00f-44e8-a54a-7f060cb038f2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -419,16 +425,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -437,15 +446,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:10:04 GMT
+ - Wed, 20 May 2026 08:37:09 GMT
Pragma:
- no-cache
RequestId:
- - bd28a755-bac4-40fd-80f5-abd1a27a468c
+ - 21a80756-c755-4816-8daf-cc211f0bc2bd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -471,9 +480,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items
response:
body:
string: '{"value": []}'
@@ -489,11 +498,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:10:04 GMT
+ - Wed, 20 May 2026 08:37:10 GMT
Pragma:
- no-cache
RequestId:
- - d1a52e6e-21ee-4ecb-b754-f9777b7f4d73
+ - 29e04137-c92f-4f80-a62e-91728e719eea
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -519,9 +528,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items
response:
body:
string: '{"value": []}'
@@ -537,11 +546,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:10:06 GMT
+ - Wed, 20 May 2026 08:37:11 GMT
Pragma:
- no-cache
RequestId:
- - 9ef5bbdb-c16e-4aef-bf31-e4b42ec5c6d8
+ - ae4e9bf9-766b-4bd6-94eb-27914275b5bf
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -556,7 +565,9 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000003", "type": "Notebook", "folderId": null, "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", "payloadType": "InlineBase64"}]}}'
+ body: '{"displayName": "fabcli000003", "type": "Notebook", "folderId": null, "definition":
+ {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
+ "payloadType": "InlineBase64"}]}}'
headers:
Accept:
- '*/*'
@@ -566,13 +577,12 @@ interactions:
- keep-alive
Content-Length:
- '731'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/notebooks
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/notebooks
response:
body:
string: 'null'
@@ -588,15 +598,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:10:07 GMT
+ - Wed, 20 May 2026 08:37:13 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aafabd90-a9ec-4455-8c92-ee844eb8a6b3
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e2cb3428-4a68-4333-ba39-70bf0dd39c42
Pragma:
- no-cache
RequestId:
- - ebd58dd6-d9d2-41be-8a6f-58e1d49a5420
+ - 0325d11b-df64-45a3-94c6-6ab7bdf5af3e
Retry-After:
- '20'
Strict-Transport-Security:
@@ -610,7 +620,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - aafabd90-a9ec-4455-8c92-ee844eb8a6b3
+ - e2cb3428-4a68-4333-ba39-70bf0dd39c42
status:
code: 202
message: Accepted
@@ -626,13 +636,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aafabd90-a9ec-4455-8c92-ee844eb8a6b3
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e2cb3428-4a68-4333-ba39-70bf0dd39c42
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:10:07.231195",
- "lastUpdatedTimeUtc": "2026-02-06T07:10:08.9657404", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:37:13.0441136",
+ "lastUpdatedTimeUtc": "2026-05-20T08:37:14.5715385", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -642,17 +652,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '130'
+ - '131'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:10:29 GMT
+ - Wed, 20 May 2026 08:37:34 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aafabd90-a9ec-4455-8c92-ee844eb8a6b3/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e2cb3428-4a68-4333-ba39-70bf0dd39c42/result
Pragma:
- no-cache
RequestId:
- - c1f37781-77cd-47bb-bf60-1dbbb2b307f8
+ - 66143d75-49dd-4527-9bb7-d826c359e36d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -660,7 +670,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - aafabd90-a9ec-4455-8c92-ee844eb8a6b3
+ - e2cb3428-4a68-4333-ba39-70bf0dd39c42
status:
code: 200
message: OK
@@ -676,14 +686,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aafabd90-a9ec-4455-8c92-ee844eb8a6b3/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e2cb3428-4a68-4333-ba39-70bf0dd39c42/result
response:
body:
- string: '{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}'
+ string: '{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -694,11 +703,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 07:10:30 GMT
+ - Wed, 20 May 2026 08:37:35 GMT
Pragma:
- no-cache
RequestId:
- - f620fe76-a20d-4511-8f1a-ba4c9905e4e1
+ - a968a431-3420-4f91-96ea-a27f645684ad
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -722,16 +731,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -740,15 +752,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:10:31 GMT
+ - Wed, 20 May 2026 08:37:35 GMT
Pragma:
- no-cache
RequestId:
- - b4c3ec6b-4936-4745-9111-fdf16fbf6e22
+ - eef9526a-ac13-4c0e-880d-a2dbbfa2e40f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -774,14 +786,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items
response:
body:
- string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -790,15 +801,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '177'
+ - '166'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:10:32 GMT
+ - Wed, 20 May 2026 08:37:37 GMT
Pragma:
- no-cache
RequestId:
- - 48a48948-06a2-4f02-b47d-ae63b7fe7c51
+ - 271dc871-00b6-4edc-b065-a846ab5ca19a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -824,14 +835,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items
response:
body:
- string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -840,15 +850,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '177'
+ - '166'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:10:33 GMT
+ - Wed, 20 May 2026 08:37:38 GMT
Pragma:
- no-cache
RequestId:
- - 4e0e81ea-2dd1-403d-80d5-c435354448a1
+ - e75326de-9503-4fbf-9ce7-e436248df671
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -873,18 +883,16 @@ interactions:
- keep-alive
Content-Length:
- '77'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/dataPipelines
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/dataPipelines
response:
body:
- string: '{"id": "ad72984e-0fb6-4852-a478-dd3821416ce4", "type": "DataPipeline",
- "displayName": "fabcli000004", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}'
+ string: '{"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -893,17 +901,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '169'
+ - '160'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:10:38 GMT
+ - Wed, 20 May 2026 08:37:43 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - c5e8af77-2b6b-4b36-99d7-d9a7afede0d2
+ - 2674d488-0fb8-4708-9bdb-1479ee491ea2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -929,16 +937,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -947,15 +958,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:10:39 GMT
+ - Wed, 20 May 2026 08:37:44 GMT
Pragma:
- no-cache
RequestId:
- - 2adc9913-036f-413d-bb09-0190d8ee9742
+ - ececcf41-17ae-4d8c-ad49-b867ed922af0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -981,9 +992,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -999,11 +1010,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:10:40 GMT
+ - Wed, 20 May 2026 08:37:45 GMT
Pragma:
- no-cache
RequestId:
- - 42d25e4f-ebb8-4749-bd95-b8a6d2c2ca12
+ - 32d42b6e-312e-4764-b150-f6e465cfb17e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1029,9 +1040,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -1047,11 +1058,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:10:40 GMT
+ - Wed, 20 May 2026 08:37:45 GMT
Pragma:
- no-cache
RequestId:
- - d3879b28-478d-4db1-b7f5-39830502672c
+ - 6f51b591-1700-44c2-a0b1-aa9e53db6358
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1075,17 +1086,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders
response:
body:
- string: '{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": "fabcli000005",
- "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}'
+ string: '{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": "fabcli000005",
+ "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -1094,17 +1105,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '134'
+ - '133'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:10:42 GMT
+ - Wed, 20 May 2026 08:37:46 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders/5ac60325-e9cc-4450-86c3-95d68719a15a
+ - https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders/a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7
Pragma:
- no-cache
RequestId:
- - 9d720e6b-6e7e-424c-b0d5-b1ca1f0e008b
+ - 71070d3c-f8e5-4f71-afc7-4c091225ef87
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1130,16 +1141,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1148,15 +1162,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:10:42 GMT
+ - Wed, 20 May 2026 08:37:47 GMT
Pragma:
- no-cache
RequestId:
- - 937abb67-0669-4d42-8c4f-98c456194dc6
+ - d268da3a-2c50-457c-bc2a-62031662cad0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1182,13 +1196,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1197,15 +1211,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:10:43 GMT
+ - Wed, 20 May 2026 08:37:48 GMT
Pragma:
- no-cache
RequestId:
- - e8abfc91-d163-4e96-b960-29e0d57d0efa
+ - cc248a14-b772-4859-a787-3359319fc611
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1231,15 +1245,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items
response:
body:
- string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1248,15 +1262,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '233'
+ - '221'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:10:43 GMT
+ - Wed, 20 May 2026 08:37:50 GMT
Pragma:
- no-cache
RequestId:
- - eea3bcf5-d983-43c8-adbd-886b360af8b3
+ - 7dc316c8-b45b-437b-a3a8-fa412ae4236f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1282,15 +1296,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items
response:
body:
- string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1299,15 +1313,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '233'
+ - '221'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:10:45 GMT
+ - Wed, 20 May 2026 08:37:51 GMT
Pragma:
- no-cache
RequestId:
- - e803605a-307d-4d9b-8a20-7393fe798508
+ - 19ef4ec5-9437-4970-84f6-041fea08c297
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1322,8 +1336,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000006", "type":
- "SparkJobDefinition", "folderId": "5ac60325-e9cc-4450-86c3-95d68719a15a"}'
+ body: '{"displayName": "fabcli000006", "type": "SparkJobDefinition", "folderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}'
headers:
Accept:
- '*/*'
@@ -1333,18 +1347,17 @@ interactions:
- keep-alive
Content-Length:
- '117'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/sparkJobDefinitions
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/sparkJobDefinitions
response:
body:
- string: '{"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90", "type": "SparkJobDefinition",
- "displayName": "fabcli000006", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": "5ac60325-e9cc-4450-86c3-95d68719a15a"}'
+ string: '{"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -1353,17 +1366,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '205'
+ - '195'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:10:46 GMT
+ - Wed, 20 May 2026 08:37:52 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 12429071-cb24-4d17-b541-f54b011c2a37
+ - 9eac379a-17a5-417e-b793-1af3ca7546e2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1389,16 +1402,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1407,15 +1423,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:10:47 GMT
+ - Wed, 20 May 2026 08:37:52 GMT
Pragma:
- no-cache
RequestId:
- - 71654975-7ae1-4290-9d7c-4b1fd5b66f20
+ - 08d6b885-4611-4c24-a654-b77e9808cec3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1441,13 +1457,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1456,15 +1472,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:10:47 GMT
+ - Wed, 20 May 2026 08:37:53 GMT
Pragma:
- no-cache
RequestId:
- - fcdeed96-5227-4b0b-b5cf-5ff05d455b1c
+ - 61a49350-4ad5-4dd3-96fc-e902d9159c33
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1490,13 +1506,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1505,15 +1521,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:10:48 GMT
+ - Wed, 20 May 2026 08:37:55 GMT
Pragma:
- no-cache
RequestId:
- - c26a4aef-75fb-487a-8477-5f716b222c71
+ - c8840386-5629-4058-939b-ecd406cb2e41
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1539,13 +1555,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1554,15 +1570,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:10:50 GMT
+ - Wed, 20 May 2026 08:37:54 GMT
Pragma:
- no-cache
RequestId:
- - c2a4082a-9f6a-4c6c-9d7b-ed58aab63b6f
+ - cb0b5491-a626-4a50-9604-b1f6065a803d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1577,8 +1593,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a"}'
+ body: '{"displayName": "fabcli000007", "parentFolderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}'
headers:
Accept:
- '*/*'
@@ -1588,17 +1603,16 @@ interactions:
- keep-alive
Content-Length:
- '93'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders
response:
body:
- string: '{"id": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007",
- "parentFolderId": "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}'
+ string: '{"id": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007",
+ "parentFolderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -1611,13 +1625,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:10:50 GMT
+ - Wed, 20 May 2026 08:37:56 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders/8bc050b1-0bfd-472d-8dca-319b9d248a54
+ - https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders/c29d7414-de5d-4d2f-b142-38b5b29843cd
Pragma:
- no-cache
RequestId:
- - 24bfb8c7-95a6-43a0-b3a3-acbd4eb6dfab
+ - dce5907c-5d96-4a35-af71-7fb0ea139e2c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1643,16 +1657,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1661,15 +1678,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:10:51 GMT
+ - Wed, 20 May 2026 08:37:56 GMT
Pragma:
- no-cache
RequestId:
- - 4c599b76-88b2-47cb-8eaa-52c8058e5895
+ - 89435973-03a3-4908-84d7-fca41f6702db
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1695,15 +1712,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1712,15 +1729,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '204'
+ - '202'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:10:52 GMT
+ - Wed, 20 May 2026 08:37:57 GMT
Pragma:
- no-cache
RequestId:
- - 0689f765-4a5c-4a61-8995-762fb4d45bd3
+ - 85266a76-c583-4c75-b596-0162e3ab4624
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1746,15 +1763,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1763,15 +1780,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '204'
+ - '202'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:10:52 GMT
+ - Wed, 20 May 2026 08:37:58 GMT
Pragma:
- no-cache
RequestId:
- - 1408c244-5586-438f-8e49-eaa7c3cd81a9
+ - db442282-5962-4e2a-9a90-18eb9690527a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1797,17 +1814,18 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items
response:
body:
- string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90",
- "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a"}]}'
+ string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1816,15 +1834,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '315'
+ - '303'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:10:54 GMT
+ - Wed, 20 May 2026 08:37:59 GMT
Pragma:
- no-cache
RequestId:
- - f990f3da-2f9c-44b3-8412-d7b2272afa9e
+ - bc6ce8b3-1bbe-4938-aa5c-6a91f2daaa83
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1850,15 +1868,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1867,15 +1885,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '204'
+ - '202'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:10:54 GMT
+ - Wed, 20 May 2026 08:38:00 GMT
Pragma:
- no-cache
RequestId:
- - 01dd6765-7057-457a-a436-bd64c4d085c5
+ - 1dc215c6-19b7-4d71-8ee9-fe42682073f1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1901,17 +1919,18 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items
response:
body:
- string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90",
- "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a"}]}'
+ string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1920,15 +1939,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '315'
+ - '303'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:10:54 GMT
+ - Wed, 20 May 2026 08:38:01 GMT
Pragma:
- no-cache
RequestId:
- - 7e6055ea-74df-46ea-8204-3de0a1cd69b6
+ - f0ae4168-2678-4560-8d77-5ce1cda62a4e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1954,15 +1973,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -1971,15 +1990,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '204'
+ - '202'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:10:55 GMT
+ - Wed, 20 May 2026 08:38:02 GMT
Pragma:
- no-cache
RequestId:
- - cd9ba623-f74b-4a70-b0c2-418f06d7c253
+ - 1696ccb1-ef7c-4e76-a4a1-e6a08e19a240
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -1994,9 +2013,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000008", "type":
- "Notebook", "folderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "definition":
- {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
+ body: '{"displayName": "fabcli000008", "type": "Notebook", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd",
+ "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
"payloadType": "InlineBase64"}]}}'
headers:
Accept:
@@ -2007,13 +2025,12 @@ interactions:
- keep-alive
Content-Length:
- '765'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/notebooks
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/notebooks
response:
body:
string: 'null'
@@ -2029,15 +2046,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:10:57 GMT
+ - Wed, 20 May 2026 08:38:04 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/26f65f72-bf9b-4eec-9e25-ae4965c060ac
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cf8e511d-ac21-4264-bd8e-3066703e2a27
Pragma:
- no-cache
RequestId:
- - fa90a812-9935-415a-9193-7e4057cc2113
+ - 7a3d824d-ee04-485e-b433-400ab1ad5022
Retry-After:
- '20'
Strict-Transport-Security:
@@ -2051,7 +2068,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - 26f65f72-bf9b-4eec-9e25-ae4965c060ac
+ - cf8e511d-ac21-4264-bd8e-3066703e2a27
status:
code: 202
message: Accepted
@@ -2067,13 +2084,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/26f65f72-bf9b-4eec-9e25-ae4965c060ac
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cf8e511d-ac21-4264-bd8e-3066703e2a27
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:10:57.3657142",
- "lastUpdatedTimeUtc": "2026-02-06T07:10:58.4911428", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:38:04.1745087",
+ "lastUpdatedTimeUtc": "2026-05-20T08:38:05.4003198", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -2083,17 +2100,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '130'
+ - '131'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:11:18 GMT
+ - Wed, 20 May 2026 08:38:25 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/26f65f72-bf9b-4eec-9e25-ae4965c060ac/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cf8e511d-ac21-4264-bd8e-3066703e2a27/result
Pragma:
- no-cache
RequestId:
- - 9058dda6-9b2c-4422-abcc-a6a1c39330d7
+ - e3ad16eb-c9bd-4580-84dc-dfeedfa961f7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2101,7 +2118,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - 26f65f72-bf9b-4eec-9e25-ae4965c060ac
+ - cf8e511d-ac21-4264-bd8e-3066703e2a27
status:
code: 200
message: OK
@@ -2117,14 +2134,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/26f65f72-bf9b-4eec-9e25-ae4965c060ac/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cf8e511d-ac21-4264-bd8e-3066703e2a27/result
response:
body:
- string: '{"id": "026af425-a57f-470f-a2b7-96dd24537cb7", "type": "Notebook",
- "displayName": "fabcli000008", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54"}'
+ string: '{"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3", "type": "Notebook",
+ "displayName": "fabcli000008", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2135,11 +2152,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 07:11:20 GMT
+ - Wed, 20 May 2026 08:38:26 GMT
Pragma:
- no-cache
RequestId:
- - 88c32bb0-590c-45a7-a142-9f2caaab73b0
+ - 64983a06-82bf-4233-be82-531e6262e39d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -2163,16 +2180,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2181,15 +2201,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:11:20 GMT
+ - Wed, 20 May 2026 08:38:26 GMT
Pragma:
- no-cache
RequestId:
- - 8556878e-c79e-4fb6-ab22-48e9616d71d3
+ - ca68acda-e9f8-4da2-a3a6-e9398a0754b7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2215,55 +2235,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
- response:
- body:
- string: '{"requestId": "401fb25f-6ec9-444e-9a50-fc63d1dde81a", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 7:11:40 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:11:21 GMT
- RequestId:
- - 401fb25f-6ec9-444e-9a50-fc63d1dde81a
- Retry-After:
- - '19'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2272,15 +2252,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '204'
+ - '202'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:11:42 GMT
+ - Wed, 20 May 2026 08:38:27 GMT
Pragma:
- no-cache
RequestId:
- - a598d902-bc2c-49d0-817e-667c4a2c6c68
+ - fbed6254-740e-4e86-9c8e-3666c62c61a1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2306,15 +2286,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2323,15 +2303,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '204'
+ - '202'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:11:43 GMT
+ - Wed, 20 May 2026 08:38:28 GMT
Pragma:
- no-cache
RequestId:
- - c125fe42-1709-4415-abc4-6dd7c7db6e23
+ - 75319999-a1f2-4c13-9bb3-aa537e271921
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2357,15 +2337,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2374,15 +2354,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '204'
+ - '202'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:11:43 GMT
+ - Wed, 20 May 2026 08:38:29 GMT
Pragma:
- no-cache
RequestId:
- - 6dd01067-6a05-4ce1-8bfb-fbf0cd357c60
+ - ebcbcd65-5afc-4a05-a09a-63493213efa0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2408,15 +2388,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2425,15 +2405,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '204'
+ - '202'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:11:44 GMT
+ - Wed, 20 May 2026 08:38:30 GMT
Pragma:
- no-cache
RequestId:
- - cdab3d89-8afe-4a74-8903-9bfcab1e7333
+ - cab3a65d-0672-4061-bdd0-f47dc0cf69c6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2448,8 +2428,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000009", "parentFolderId":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54"}'
+ body: '{"displayName": "fabcli000009", "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"}'
headers:
Accept:
- '*/*'
@@ -2459,17 +2438,16 @@ interactions:
- keep-alive
Content-Length:
- '93'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders
response:
body:
- string: '{"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}'
+ string: '{"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -2478,17 +2456,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '167'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:11:45 GMT
+ - Wed, 20 May 2026 08:38:30 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders/0f7dddf1-2640-4896-8afb-e5e75e01f71a
+ - https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders/fffd0349-9469-4178-a508-c3bc2a5926cd
Pragma:
- no-cache
RequestId:
- - 07e2e83e-c424-4b02-b6d9-96b4f46ac0a2
+ - 7ae48188-2345-451c-901f-a2ff4b604980
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2514,16 +2492,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2532,15 +2513,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:11:46 GMT
+ - Wed, 20 May 2026 08:38:31 GMT
Pragma:
- no-cache
RequestId:
- - 409eb2cc-2f1b-4e76-adc6-12bcdf3ff03c
+ - 0a123a58-9c80-4339-99e6-2ecbcc9ea173
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2566,17 +2547,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2585,15 +2566,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:11:46 GMT
+ - Wed, 20 May 2026 08:38:32 GMT
Pragma:
- no-cache
RequestId:
- - f30837d4-c93a-42f4-ae9b-d708fb28c60d
+ - 9568d4c0-cdfc-44e7-a5a2-6f8fbbcd94fa
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2619,17 +2600,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2638,15 +2619,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:11:48 GMT
+ - Wed, 20 May 2026 08:38:33 GMT
Pragma:
- no-cache
RequestId:
- - db7536b0-b232-4aff-9e30-a1bcf7d8a768
+ - 66601cc9-adf2-417f-8aca-41b5f195355a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2672,17 +2653,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2691,15 +2672,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:11:48 GMT
+ - Wed, 20 May 2026 08:38:34 GMT
Pragma:
- no-cache
RequestId:
- - 31ac4c0f-d8ca-4250-b113-bebfe43422d2
+ - fc3e3cb5-b9bb-4f7a-a536-504ddfd5a69d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2725,19 +2706,20 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items
response:
body:
- string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90",
- "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7",
- "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54"}]}'
+ string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3",
+ "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId":
+ "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2746,15 +2728,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '375'
+ - '367'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:11:49 GMT
+ - Wed, 20 May 2026 08:38:35 GMT
Pragma:
- no-cache
RequestId:
- - 0a975835-5d92-4fcc-b6fe-73c930983dd0
+ - 9fcd2da7-485e-4d94-aded-bf53d4d706f2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2780,17 +2762,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2799,15 +2781,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:11:49 GMT
+ - Wed, 20 May 2026 08:38:35 GMT
Pragma:
- no-cache
RequestId:
- - 030ab6af-c956-437e-8cb1-e30feffbf8ff
+ - 84770eaa-f16b-4be5-89cf-a862e7ed65f9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2833,17 +2815,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2852,15 +2834,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:11:50 GMT
+ - Wed, 20 May 2026 08:38:36 GMT
Pragma:
- no-cache
RequestId:
- - 45c57b9d-d963-48a3-9abf-255d724742a7
+ - 7f4f6ca8-9a1c-4e4b-b2d1-150b41f9c249
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2886,19 +2868,20 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items
response:
body:
- string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90",
- "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7",
- "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54"}]}'
+ string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3",
+ "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId":
+ "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2907,15 +2890,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '375'
+ - '367'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:11:51 GMT
+ - Wed, 20 May 2026 08:38:37 GMT
Pragma:
- no-cache
RequestId:
- - 1beb70f0-4603-407f-86de-f0eca335df44
+ - 961873c4-0fe9-4b2b-abf5-07d8c12f0597
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2941,17 +2924,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -2960,15 +2943,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:11:53 GMT
+ - Wed, 20 May 2026 08:38:38 GMT
Pragma:
- no-cache
RequestId:
- - dbcae0b9-97a4-42a4-9775-12b0ecba0669
+ - ced344e1-96a9-4f42-ba54-53c883a0a487
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -2994,57 +2977,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
- response:
- body:
- string: '{"requestId": "b3188c81-b922-4786-93af-fb6782895ed7", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 7:12:43 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:11:53 GMT
- RequestId:
- - b3188c81-b922-4786-93af-fb6782895ed7
- Retry-After:
- - '50'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3053,15 +2996,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:12:46 GMT
+ - Wed, 20 May 2026 08:38:39 GMT
Pragma:
- no-cache
RequestId:
- - 7a987023-0d12-442f-86ca-3b7655804b9e
+ - b8fac4fe-e40c-48bf-bcdc-d02579db8754
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3076,8 +3019,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000010", "type":
- "DataPipeline", "folderId": "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}'
+ body: '{"displayName": "fabcli000010", "type": "DataPipeline", "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}'
headers:
Accept:
- '*/*'
@@ -3086,18 +3028,18 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '144'
+ - '111'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/dataPipelines
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/dataPipelines
response:
body:
- string: '{"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc", "type": "DataPipeline",
- "displayName": "fabcli000010", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}'
+ string: '{"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline",
+ "displayName": "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -3106,17 +3048,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '201'
+ - '191'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:12:50 GMT
+ - Wed, 20 May 2026 08:38:43 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - c62ab790-6b61-4b2b-92b9-de98152cd79a
+ - f0c76d39-bfa0-402b-8a34-781c183e4902
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3142,16 +3084,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3160,15 +3105,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:12:51 GMT
+ - Wed, 20 May 2026 08:38:44 GMT
Pragma:
- no-cache
RequestId:
- - 3229b522-df54-43f0-b498-0a62642510a4
+ - 19be8dd2-6784-4283-9508-ba776d5781ce
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3194,16 +3139,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3212,15 +3160,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:12:51 GMT
+ - Wed, 20 May 2026 08:38:45 GMT
Pragma:
- no-cache
RequestId:
- - 472bbaa0-a6b3-47de-931e-e61c759b2dfe
+ - f5aecbb8-e77f-4cca-8cf8-c6798c649c67
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3246,21 +3194,23 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items
response:
body:
- string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90",
- "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7",
- "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54"}, {"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc",
- "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}]}'
+ string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3",
+ "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId":
+ "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"},
+ {"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline", "displayName":
+ "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3269,15 +3219,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '437'
+ - '425'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:12:53 GMT
+ - Wed, 20 May 2026 08:38:46 GMT
Pragma:
- no-cache
RequestId:
- - 972fecd3-75db-4298-a40e-aca89c015e85
+ - 9876abe5-3d88-409d-8045-067092832429
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3303,17 +3253,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3322,15 +3272,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:12:54 GMT
+ - Wed, 20 May 2026 08:38:47 GMT
Pragma:
- no-cache
RequestId:
- - 44b32bd7-a31f-4f2f-8db7-8488e0b15db7
+ - 41e4191c-ef2f-4d0c-9cf5-398cdc6aab92
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3356,17 +3306,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3375,15 +3325,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:12:54 GMT
+ - Wed, 20 May 2026 08:38:47 GMT
Pragma:
- no-cache
RequestId:
- - 7196e514-ac6d-47b7-8bf9-1f01ec51c297
+ - 0ce94a22-9d2e-4364-8299-fa4532961d15
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3409,17 +3359,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3428,15 +3378,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:12:54 GMT
+ - Wed, 20 May 2026 08:38:49 GMT
Pragma:
- no-cache
RequestId:
- - 2cc0d1b7-1772-454e-bc8e-5aa966ead51b
+ - 98c2b5fa-ca37-46e0-8d24-f3b30207eb39
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3462,17 +3412,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3481,15 +3431,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:12:56 GMT
+ - Wed, 20 May 2026 08:38:49 GMT
Pragma:
- no-cache
RequestId:
- - 732d436f-1976-4d4f-82fd-98ff137a3193
+ - 426b121a-ab44-4aac-b141-eb15beb5370f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3515,16 +3465,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -3533,15 +3486,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:12:56 GMT
+ - Wed, 20 May 2026 08:38:50 GMT
Pragma:
- no-cache
RequestId:
- - e9a16bbe-c9a6-41d1-af28-78c0a37c2f04
+ - 8eaf633a-534f-47e8-beb9-ce47a581c863
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3567,9 +3520,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items
response:
body:
string: '{"value": []}'
@@ -3585,11 +3538,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:12:57 GMT
+ - Wed, 20 May 2026 08:38:50 GMT
Pragma:
- no-cache
RequestId:
- - ba4dbbc1-26c6-49c8-b2c2-8c86bfaa931e
+ - a2beb44b-2302-4100-9549-83ea36d021c4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3615,9 +3568,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items
response:
body:
string: '{"value": []}'
@@ -3633,11 +3586,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:12:58 GMT
+ - Wed, 20 May 2026 08:38:51 GMT
Pragma:
- no-cache
RequestId:
- - 5c763291-a54c-4392-9645-5dcf656a6703
+ - b23961ca-0d9a-4607-ad57-227c5388c6b6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3663,9 +3616,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items
response:
body:
string: '{"value": []}'
@@ -3681,11 +3634,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:12:59 GMT
+ - Wed, 20 May 2026 08:38:51 GMT
Pragma:
- no-cache
RequestId:
- - 50c52bb5-4bf2-4a91-bcc2-c121f6bf1ee4
+ - 6ae22799-7f00-4357-a018-876cce6aca5f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3711,14 +3664,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items/e0612997-1710-47a0-8195-286fc037e24c
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items/5a2e7c38-50e8-442d-b973-118e8a666892
response:
body:
- string: '{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}'
+ string: '{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -3727,17 +3679,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '166'
+ - '155'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:13:00 GMT
+ - Wed, 20 May 2026 08:38:52 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 5534f9e0-21bd-466b-b68e-db78b06c854f
+ - 71a6b0a8-3f5c-4fda-8d53-b006d76f10da
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3765,9 +3717,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items/e0612997-1710-47a0-8195-286fc037e24c/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items/5a2e7c38-50e8-442d-b973-118e8a666892/getDefinition
response:
body:
string: 'null'
@@ -3783,13 +3735,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:13:00 GMT
+ - Wed, 20 May 2026 08:38:53 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6d3bbce8-d5e9-4dbc-9034-0a98670477db
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bfcf94e8-74e5-4af7-8ba4-b99bed4e454f
Pragma:
- no-cache
RequestId:
- - 27dafcd3-fb34-48bb-a4c6-3dc22801f927
+ - 66392d5c-8ea4-4fdb-b01f-b0df22449b59
Retry-After:
- '20'
Strict-Transport-Security:
@@ -3803,7 +3755,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - 6d3bbce8-d5e9-4dbc-9034-0a98670477db
+ - bfcf94e8-74e5-4af7-8ba4-b99bed4e454f
status:
code: 202
message: Accepted
@@ -3819,13 +3771,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6d3bbce8-d5e9-4dbc-9034-0a98670477db
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bfcf94e8-74e5-4af7-8ba4-b99bed4e454f
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:13:01.5804993",
- "lastUpdatedTimeUtc": "2026-02-06T07:13:01.8930008", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:38:53.6299812",
+ "lastUpdatedTimeUtc": "2026-05-20T08:38:54.3311087", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -3835,17 +3787,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '129'
+ - '131'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:13:22 GMT
+ - Wed, 20 May 2026 08:39:14 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6d3bbce8-d5e9-4dbc-9034-0a98670477db/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bfcf94e8-74e5-4af7-8ba4-b99bed4e454f/result
Pragma:
- no-cache
RequestId:
- - bb706cb3-9ad9-44bb-afb2-48db3a9ce221
+ - c14743ca-b671-40c2-8fec-8e5c0ef29258
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -3853,7 +3805,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - 6d3bbce8-d5e9-4dbc-9034-0a98670477db
+ - bfcf94e8-74e5-4af7-8ba4-b99bed4e454f
status:
code: 200
message: OK
@@ -3869,14 +3821,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6d3bbce8-d5e9-4dbc-9034-0a98670477db/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bfcf94e8-74e5-4af7-8ba4-b99bed4e454f/result
response:
body:
string: '{"definition": {"parts": [{"path": "notebook-content.py", "payload":
"IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
"payloadType": "InlineBase64"}]}}'
headers:
Access-Control-Expose-Headers:
@@ -3888,11 +3840,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 07:13:23 GMT
+ - Wed, 20 May 2026 08:39:15 GMT
Pragma:
- no-cache
RequestId:
- - f9026c6d-9eca-46d0-9c9a-0bcad5b1ccdd
+ - bc4787a3-0f62-4dd9-9f8d-d4016174544f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -3905,7 +3857,10 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "Notebook", "displayName": "fabcli000003", "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}, "folderId": null}'
+ body: '{"type": "Notebook", "displayName": "fabcli000003", "definition": {"parts":
+ [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
+ "payloadType": "InlineBase64"}]}, "folderId": null}'
headers:
Accept:
- '*/*'
@@ -3914,14 +3869,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1252'
-
+ - '1204'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items
response:
body:
string: 'null'
@@ -3937,15 +3891,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:13:26 GMT
+ - Wed, 20 May 2026 08:39:16 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2c7623bb-0e10-4541-9493-405d752657c3
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/90b46f02-54bd-4e32-b03b-2a6758591740
Pragma:
- no-cache
RequestId:
- - 93c7964d-2dfe-4cc0-ba54-c30224d87d8d
+ - 1b07f6d3-a10a-4d87-bfa9-30833c9a958d
Retry-After:
- '20'
Strict-Transport-Security:
@@ -3959,7 +3913,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - 2c7623bb-0e10-4541-9493-405d752657c3
+ - 90b46f02-54bd-4e32-b03b-2a6758591740
status:
code: 202
message: Accepted
@@ -3975,13 +3929,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2c7623bb-0e10-4541-9493-405d752657c3
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/90b46f02-54bd-4e32-b03b-2a6758591740
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:13:25.371715",
- "lastUpdatedTimeUtc": "2026-02-06T07:13:27.340993", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:39:16.0708146",
+ "lastUpdatedTimeUtc": "2026-05-20T08:39:17.664388", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -3991,17 +3945,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '129'
+ - '130'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:13:48 GMT
+ - Wed, 20 May 2026 08:39:36 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2c7623bb-0e10-4541-9493-405d752657c3/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/90b46f02-54bd-4e32-b03b-2a6758591740/result
Pragma:
- no-cache
RequestId:
- - 1fc0cf06-6e99-4f7b-998c-ffe234244f2e
+ - d4f6fd9d-5802-4605-8066-018a07ca641a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4009,7 +3963,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - 2c7623bb-0e10-4541-9493-405d752657c3
+ - 90b46f02-54bd-4e32-b03b-2a6758591740
status:
code: 200
message: OK
@@ -4025,14 +3979,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2c7623bb-0e10-4541-9493-405d752657c3/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/90b46f02-54bd-4e32-b03b-2a6758591740/result
response:
body:
- string: '{"id": "ef61ccc3-71c4-4ff2-9554-e52e4a549b14", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}'
+ string: '{"id": "38a86bcc-82f4-4f58-9cba-c8aac226aa5d", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4043,11 +3996,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 07:13:48 GMT
+ - Wed, 20 May 2026 08:39:38 GMT
Pragma:
- no-cache
RequestId:
- - a5c59908-c22f-4524-b134-c45323869fd8
+ - 31b2ee36-6e4f-440f-ad60-30e7360b9940
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -4071,16 +4024,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4089,15 +4045,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:13:49 GMT
+ - Wed, 20 May 2026 08:39:38 GMT
Pragma:
- no-cache
RequestId:
- - f5caa236-d6ad-484d-a86d-a637e525a7e7
+ - 8bc2bcd5-94e0-41ab-9b35-367ffcdcbeb1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4123,14 +4079,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items
response:
body:
- string: '{"value": [{"id": "ef61ccc3-71c4-4ff2-9554-e52e4a549b14", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "38a86bcc-82f4-4f58-9cba-c8aac226aa5d", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4139,15 +4094,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '176'
+ - '165'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:13:50 GMT
+ - Wed, 20 May 2026 08:39:39 GMT
Pragma:
- no-cache
RequestId:
- - aac3b714-2ded-4a3e-aa0a-fc4a488b4b91
+ - ee9b1c19-ac93-495e-8ef5-77a9a7f2e337
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4173,14 +4128,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items
response:
body:
- string: '{"value": [{"id": "ef61ccc3-71c4-4ff2-9554-e52e4a549b14", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "38a86bcc-82f4-4f58-9cba-c8aac226aa5d", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4189,15 +4143,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '176'
+ - '165'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:13:51 GMT
+ - Wed, 20 May 2026 08:39:40 GMT
Pragma:
- no-cache
RequestId:
- - 963ba17b-995c-4c20-9a6b-f2606684159a
+ - 0e7e5459-9319-4cf6-bdf2-355a6d97df7b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4223,14 +4177,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items
response:
body:
- string: '{"value": [{"id": "ef61ccc3-71c4-4ff2-9554-e52e4a549b14", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "38a86bcc-82f4-4f58-9cba-c8aac226aa5d", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4239,15 +4192,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '176'
+ - '165'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:13:51 GMT
+ - Wed, 20 May 2026 08:39:42 GMT
Pragma:
- no-cache
RequestId:
- - ad1c751a-1bd4-488e-a3fd-069e7a7d7370
+ - d2af0d98-bb5e-43c0-ab62-7c115e0c449c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4273,14 +4226,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items/ad72984e-0fb6-4852-a478-dd3821416ce4
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items/70d2a102-4825-405b-9a3f-dc5f3944e33b
response:
body:
- string: '{"id": "ad72984e-0fb6-4852-a478-dd3821416ce4", "type": "DataPipeline",
- "displayName": "fabcli000004", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}'
+ string: '{"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -4289,17 +4241,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '169'
+ - '160'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:13:53 GMT
+ - Wed, 20 May 2026 08:39:43 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 512f46c7-c3a5-4799-a185-59088b6b13c2
+ - b67e8ae3-1edc-4c76-843e-854f795b1ce8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4327,14 +4279,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items/ad72984e-0fb6-4852-a478-dd3821416ce4/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items/70d2a102-4825-405b-9a3f-dc5f3944e33b/getDefinition
response:
body:
string: '{"definition": {"parts": [{"path": "pipeline-content.json", "payload":
"ewogICJwcm9wZXJ0aWVzIjogewogICAgImFjdGl2aXRpZXMiOiBbXQogIH0KfQ==", "payloadType":
- "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
+ "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
"payloadType": "InlineBase64"}]}}'
headers:
Access-Control-Expose-Headers:
@@ -4344,15 +4296,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '458'
+ - '441'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:13:54 GMT
+ - Wed, 20 May 2026 08:39:43 GMT
Pragma:
- no-cache
RequestId:
- - 4a77dfa1-fd18-4471-8df3-3f2034897729
+ - 43cffa28-92ab-4410-ba18-b630c8f052a2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4367,7 +4319,10 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "DataPipeline", "displayName": "fabcli000004", "definition": {"parts": [{"path": "pipeline-content.json", "payload": "ewogICJwcm9wZXJ0aWVzIjogewogICAgImFjdGl2aXRpZXMiOiBbXQogIH0KfQ==", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", "payloadType": "InlineBase64"}]}, "folderId": null}'
+ body: '{"type": "DataPipeline", "displayName": "fabcli000004", "definition": {"parts":
+ [{"path": "pipeline-content.json", "payload": "ewogICJwcm9wZXJ0aWVzIjogewogICAgImFjdGl2aXRpZXMiOiBbXQogIH0KfQ==",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
+ "payloadType": "InlineBase64"}]}, "folderId": null}'
headers:
Accept:
- '*/*'
@@ -4376,19 +4331,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '778'
-
+ - '726'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items
response:
body:
- string: '{"id": "6da7abe9-44db-49be-a885-48f74490660f", "type": "DataPipeline",
- "displayName": "fabcli000004", "workspaceId":
- "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}'
+ string: '{"id": "971e55ca-ba5d-47d9-88df-235b11e7e5cc", "type": "DataPipeline",
+ "displayName": "fabcli000004", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -4397,17 +4350,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '169'
+ - '160'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:14:00 GMT
+ - Wed, 20 May 2026 08:39:50 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - ca778f0b-d6b2-40b7-a203-e43e98a175ef
+ - c68153db-19a1-4a21-8492-9fdc1a09e969
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4433,16 +4386,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4451,15 +4407,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:14:00 GMT
+ - Wed, 20 May 2026 08:39:50 GMT
Pragma:
- no-cache
RequestId:
- - c1999e71-1a1a-4412-897e-4b710fa1dfb1
+ - 0b56ab87-07af-463c-8789-7b59bf261942
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4485,9 +4441,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -4503,11 +4459,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:14:01 GMT
+ - Wed, 20 May 2026 08:39:51 GMT
Pragma:
- no-cache
RequestId:
- - 05c3417b-8846-4ec8-9141-0535fda370a2
+ - 3c26abd8-1aea-442e-b65b-4c95b54d9125
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4533,9 +4489,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True
response:
body:
string: '{"value": []}'
@@ -4551,11 +4507,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:14:02 GMT
+ - Wed, 20 May 2026 08:39:52 GMT
Pragma:
- no-cache
RequestId:
- - b2cad905-45b5-435f-a325-0d0f5c28d736
+ - 6064edd3-4024-4ba8-b968-ee748f944091
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4579,17 +4535,17 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '68'
+ - '35'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders
response:
body:
- string: '{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName": "fabcli000005",
- "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}'
+ string: '{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName": "fabcli000005",
+ "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -4598,17 +4554,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '133'
+ - '134'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:14:02 GMT
+ - Wed, 20 May 2026 08:39:53 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders/e45124b0-437b-4c39-80a4-7d35e7cec8fe
+ - https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders/a7a0457b-c329-46d9-9633-d97806acc7d7
Pragma:
- no-cache
RequestId:
- - a000d8b1-96fb-4e63-aa7f-3176df4028df
+ - cd83e3ae-da3c-4d16-80cd-00a84c2c9b44
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4634,21 +4590,23 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items
response:
body:
- string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90",
- "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7",
- "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54"}, {"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc",
- "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}]}'
+ string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3",
+ "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId":
+ "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"},
+ {"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline", "displayName":
+ "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4657,15 +4615,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '437'
+ - '425'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:14:03 GMT
+ - Wed, 20 May 2026 08:39:53 GMT
Pragma:
- no-cache
RequestId:
- - 9b4bd42e-e50b-4bee-8e88-0ddb41576575
+ - 763559cb-bdbd-4334-99cd-d6a58247b028
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4691,17 +4649,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4710,15 +4668,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:14:03 GMT
+ - Wed, 20 May 2026 08:39:54 GMT
Pragma:
- no-cache
RequestId:
- - 8c42f36a-e1f1-409a-ade0-04a74f836aef
+ - f9285a8b-2745-4fc2-bad1-4441825273f3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4744,17 +4702,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4763,15 +4721,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:14:05 GMT
+ - Wed, 20 May 2026 08:39:55 GMT
Pragma:
- no-cache
RequestId:
- - eb2c045d-8b46-4f31-9777-483e47d88cd3
+ - ec1d48f3-acea-44bd-b707-b22ff2cd8eb0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4797,17 +4755,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4816,15 +4774,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:14:06 GMT
+ - Wed, 20 May 2026 08:39:56 GMT
Pragma:
- no-cache
RequestId:
- - 2f5a1f8d-af98-4730-9d88-9cc21e01d02e
+ - 4bdac859-443d-4559-90a9-624750ff9c7a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4850,17 +4808,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4869,15 +4827,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:14:06 GMT
+ - Wed, 20 May 2026 08:39:57 GMT
Pragma:
- no-cache
RequestId:
- - 53ba5203-b404-493d-84d4-549c4cbe7643
+ - 0287b4c4-941b-4cad-9f50-256db0dbe331
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4903,21 +4861,23 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items
response:
body:
- string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90",
- "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7",
- "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54"}, {"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc",
- "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}]}'
+ string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3",
+ "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId":
+ "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"},
+ {"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline", "displayName":
+ "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4926,15 +4886,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '437'
+ - '425'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:14:07 GMT
+ - Wed, 20 May 2026 08:39:58 GMT
Pragma:
- no-cache
RequestId:
- - 2b0276b9-4e3a-42d1-9384-ecd7d2cfb2a8
+ - 3a227886-054a-4fea-a9be-ef0c509c29f1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -4960,17 +4920,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -4979,15 +4939,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:14:07 GMT
+ - Wed, 20 May 2026 08:39:59 GMT
Pragma:
- no-cache
RequestId:
- - 0d2271d6-c257-456b-8737-93869676aaee
+ - 4ce0e78b-7043-4c49-8f6a-afb91773a9a4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5013,17 +4973,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5032,15 +4992,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:14:08 GMT
+ - Wed, 20 May 2026 08:40:01 GMT
Pragma:
- no-cache
RequestId:
- - df3f11fa-f250-4d29-8c2f-4f1fb3e93c73
+ - 368da983-0910-4458-932c-30df6aa33518
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5066,17 +5026,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5085,15 +5045,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:14:09 GMT
+ - Wed, 20 May 2026 08:40:02 GMT
Pragma:
- no-cache
RequestId:
- - 0b658edd-1af5-4bf3-a670-398c01b17ef8
+ - 7b7e3b7e-e082-4723-9186-5b3e270f85f7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5119,17 +5079,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5138,15 +5098,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:14:09 GMT
+ - Wed, 20 May 2026 08:40:02 GMT
Pragma:
- no-cache
RequestId:
- - 66c5b332-fcac-40c3-bcef-0e84b437a066
+ - 08db48c2-6aae-49e8-88b6-10d6cc792f8e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5172,21 +5132,23 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items
response:
body:
- string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90",
- "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7",
- "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54"}, {"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc",
- "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}]}'
+ string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3",
+ "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId":
+ "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"},
+ {"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline", "displayName":
+ "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5195,15 +5157,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '437'
+ - '425'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:14:10 GMT
+ - Wed, 20 May 2026 08:40:03 GMT
Pragma:
- no-cache
RequestId:
- - e8718037-c32f-4ce0-a53d-203f76cce9ed
+ - d61ea639-fe37-491e-aee8-2bdc8d573b9f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5229,57 +5191,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
- response:
- body:
- string: '{"requestId": "ac1096c9-e6e9-436a-a3bb-ccc0e409bb26", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 7:15:02 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:14:11 GMT
- RequestId:
- - ac1096c9-e6e9-436a-a3bb-ccc0e409bb26
- Retry-After:
- - '50'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5288,15 +5210,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:15:04 GMT
+ - Wed, 20 May 2026 08:40:04 GMT
Pragma:
- no-cache
RequestId:
- - 8939a30d-9bbf-458d-92d7-beac659636a5
+ - e03dfeb5-6263-4ec1-b81e-0c2668e0be92
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5322,17 +5244,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5341,15 +5263,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:15:05 GMT
+ - Wed, 20 May 2026 08:40:05 GMT
Pragma:
- no-cache
RequestId:
- - 266baf5b-39ea-4eb7-9b5a-a1b08082cdd5
+ - 7920cf3c-7cdf-4233-8665-6eff781c14b1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5375,17 +5297,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5394,15 +5316,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:15:06 GMT
+ - Wed, 20 May 2026 08:40:06 GMT
Pragma:
- no-cache
RequestId:
- - edabba9e-69b9-4c44-976e-b3139da86850
+ - 64fe32d7-533c-4996-b6f7-7de2627af81d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5428,17 +5350,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5447,15 +5369,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:15:07 GMT
+ - Wed, 20 May 2026 08:40:07 GMT
Pragma:
- no-cache
RequestId:
- - 71e2d9e5-1147-48c6-b95e-053639e78326
+ - ceedb723-1b49-4e7c-8512-1969fa5fd3e4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5481,21 +5403,23 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items
response:
body:
- string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90",
- "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7",
- "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54"}, {"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc",
- "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}]}'
+ string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3",
+ "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId":
+ "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"},
+ {"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline", "displayName":
+ "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5504,15 +5428,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '437'
+ - '425'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:15:07 GMT
+ - Wed, 20 May 2026 08:40:08 GMT
Pragma:
- no-cache
RequestId:
- - b76ab0b2-0e14-46bb-82e1-98869c60bb4b
+ - 13139cdc-963b-4f74-95c2-eb320863be14
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5538,17 +5462,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5557,15 +5481,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:15:08 GMT
+ - Wed, 20 May 2026 08:40:09 GMT
Pragma:
- no-cache
RequestId:
- - a9bcc3f1-6bf4-4826-86e6-ba052d5dd0ef
+ - ed8995d4-8d0e-4dc1-9369-0caed2f24667
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5591,17 +5515,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5610,15 +5534,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:15:09 GMT
+ - Wed, 20 May 2026 08:40:09 GMT
Pragma:
- no-cache
RequestId:
- - dc1978f6-94fb-44ca-9eb6-51cd5e982979
+ - f523371c-a873-41a2-9b12-480cb884fb70
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5644,17 +5568,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5663,15 +5587,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:15:10 GMT
+ - Wed, 20 May 2026 08:40:10 GMT
Pragma:
- no-cache
RequestId:
- - ee432bc5-41c8-4c17-97e2-558e8f1a775e
+ - b80c86a8-0ad4-481e-a626-700b8db66b87
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5697,17 +5621,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5716,15 +5640,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:15:11 GMT
+ - Wed, 20 May 2026 08:40:11 GMT
Pragma:
- no-cache
RequestId:
- - 6b8d1cad-4d1b-4e2b-b287-2a7f0d727492
+ - ab2053ad-bf8f-4466-b436-5be4d6b860ba
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5750,16 +5674,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5768,15 +5695,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:15:12 GMT
+ - Wed, 20 May 2026 08:40:11 GMT
Pragma:
- no-cache
RequestId:
- - e5803ced-f543-413d-a8c7-b4a3a12e911b
+ - 55357747-d50b-4772-9f81-dd1fd4089071
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5802,13 +5729,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName":
- "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName":
+ "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5821,11 +5748,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:15:13 GMT
+ - Wed, 20 May 2026 08:40:13 GMT
Pragma:
- no-cache
RequestId:
- - 9c771b0e-ff12-4442-bded-d1fca1942d7c
+ - b2d83125-721d-4719-8d7e-cc25f7cf8831
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5851,15 +5778,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items
response:
body:
- string: '{"value": [{"id": "ef61ccc3-71c4-4ff2-9554-e52e4a549b14", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "6da7abe9-44db-49be-a885-48f74490660f",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "38a86bcc-82f4-4f58-9cba-c8aac226aa5d", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "971e55ca-ba5d-47d9-88df-235b11e7e5cc", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5868,15 +5795,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '231'
+ - '222'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:15:13 GMT
+ - Wed, 20 May 2026 08:40:13 GMT
Pragma:
- no-cache
RequestId:
- - 43fb4f8b-253b-45cb-8b63-5adc3fc22cd2
+ - 241cc95b-1164-48f0-a913-36f1d7edc423
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5902,15 +5829,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items
response:
body:
- string: '{"value": [{"id": "ef61ccc3-71c4-4ff2-9554-e52e4a549b14", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "6da7abe9-44db-49be-a885-48f74490660f",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "38a86bcc-82f4-4f58-9cba-c8aac226aa5d", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "971e55ca-ba5d-47d9-88df-235b11e7e5cc", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5919,15 +5846,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '231'
+ - '222'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:15:14 GMT
+ - Wed, 20 May 2026 08:40:14 GMT
Pragma:
- no-cache
RequestId:
- - 3c1858a6-3d62-4a6b-bcb0-2ff9504b219b
+ - 2727084c-63dc-45d0-b79b-3556869da98b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -5953,15 +5880,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items
response:
body:
- string: '{"value": [{"id": "ef61ccc3-71c4-4ff2-9554-e52e4a549b14", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "6da7abe9-44db-49be-a885-48f74490660f",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "38a86bcc-82f4-4f58-9cba-c8aac226aa5d", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "971e55ca-ba5d-47d9-88df-235b11e7e5cc", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -5970,15 +5897,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '231'
+ - '222'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:15:15 GMT
+ - Wed, 20 May 2026 08:40:15 GMT
Pragma:
- no-cache
RequestId:
- - e4811843-6e43-4ea0-a4f5-934ca0fc002f
+ - edc68bc2-9d6c-4340-8de0-795f6116a2cb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6004,14 +5931,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items/41915c7d-5855-4a08-98d4-ab113bb4dc90
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items/362ea567-b1e9-4245-8637-235ff3651b79
response:
body:
- string: '{"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90", "type": "SparkJobDefinition",
- "displayName": "fabcli000006", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": "5ac60325-e9cc-4450-86c3-95d68719a15a"}'
+ string: '{"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -6020,17 +5947,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '205'
+ - '195'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:15:16 GMT
+ - Wed, 20 May 2026 08:40:16 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 8ff7a3e7-63ee-4021-ada1-6947e5cec70e
+ - a2147ac9-36ae-43a5-a247-b599fa77a702
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6058,14 +5985,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items/41915c7d-5855-4a08-98d4-ab113bb4dc90/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items/362ea567-b1e9-4245-8637-235ff3651b79/getDefinition
response:
body:
string: '{"definition": {"parts": [{"path": "SparkJobDefinitionV1.json", "payload":
"ew0KICAiZXhlY3V0YWJsZUZpbGUiOiBudWxsLA0KICAiZGVmYXVsdExha2Vob3VzZUFydGlmYWN0SWQiOiBudWxsLA0KICAibWFpbkNsYXNzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMYWtlaG91c2VJZHMiOiBbXSwNCiAgInJldHJ5UG9saWN5IjogbnVsbCwNCiAgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMaWJyYXJ5VXJpcyI6IG51bGwsDQogICJsYW5ndWFnZSI6IG51bGwsDQogICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsDQp9",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA2IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA2IgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
"payloadType": "InlineBase64"}]}}'
headers:
Access-Control-Expose-Headers:
@@ -6075,15 +6002,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '616'
+ - '585'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:15:17 GMT
+ - Wed, 20 May 2026 08:40:18 GMT
Pragma:
- no-cache
RequestId:
- - d5d93524-7b66-4d4f-9102-c4720435b469
+ - e23a0421-c406-4018-b363-0d0c9b69277f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6098,11 +6025,10 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "SparkJobDefinition", "displayName":
- "fabcli000006", "definition": {"parts": [{"path": "SparkJobDefinitionV1.json",
- "payload": "ew0KICAiZXhlY3V0YWJsZUZpbGUiOiBudWxsLA0KICAiZGVmYXVsdExha2Vob3VzZUFydGlmYWN0SWQiOiBudWxsLA0KICAibWFpbkNsYXNzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMYWtlaG91c2VJZHMiOiBbXSwNCiAgInJldHJ5UG9saWN5IjogbnVsbCwNCiAgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMaWJyYXJ5VXJpcyI6IG51bGwsDQogICJsYW5ndWFnZSI6IG51bGwsDQogICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsDQp9",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA2IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
- "payloadType": "InlineBase64"}]}, "folderId": "e45124b0-437b-4c39-80a4-7d35e7cec8fe"}'
+ body: '{"type": "SparkJobDefinition", "displayName": "fabcli000006", "definition":
+ {"parts": [{"path": "SparkJobDefinitionV1.json", "payload": "ew0KICAiZXhlY3V0YWJsZUZpbGUiOiBudWxsLA0KICAiZGVmYXVsdExha2Vob3VzZUFydGlmYWN0SWQiOiBudWxsLA0KICAibWFpbkNsYXNzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMYWtlaG91c2VJZHMiOiBbXSwNCiAgInJldHJ5UG9saWN5IjogbnVsbCwNCiAgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMaWJyYXJ5VXJpcyI6IG51bGwsDQogICJsYW5ndWFnZSI6IG51bGwsDQogICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsDQp9",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA2IgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
+ "payloadType": "InlineBase64"}]}, "folderId": "a7a0457b-c329-46d9-9633-d97806acc7d7"}'
headers:
Accept:
- '*/*'
@@ -6111,19 +6037,18 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1126'
-
+ - '1074'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items
response:
body:
- string: '{"id": "8487c193-5930-4805-a9dc-ddfe0e58f3c8", "type": "SparkJobDefinition",
- "displayName": "fabcli000006", "workspaceId":
- "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId": "e45124b0-437b-4c39-80a4-7d35e7cec8fe"}'
+ string: '{"id": "0e010915-e8ca-4517-917d-c0e09abec2b2", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d",
+ "folderId": "a7a0457b-c329-46d9-9633-d97806acc7d7"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -6132,17 +6057,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '204'
+ - '194'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:15:19 GMT
+ - Wed, 20 May 2026 08:40:20 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - fa39fd4f-7889-4297-8b33-0f1701386653
+ - a4ca5e2e-dd41-4610-b802-d91c148a5ce3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6168,21 +6093,23 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items
response:
body:
- string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90",
- "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7",
- "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54"}, {"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc",
- "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}]}'
+ string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3",
+ "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId":
+ "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"},
+ {"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline", "displayName":
+ "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -6191,15 +6118,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '437'
+ - '425'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:15:20 GMT
+ - Wed, 20 May 2026 08:40:21 GMT
Pragma:
- no-cache
RequestId:
- - b13e4e3a-dc84-4791-9348-4b8513c44541
+ - 0504c30a-2256-476a-91ca-4c164de159d3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6225,17 +6152,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -6244,15 +6171,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:15:20 GMT
+ - Wed, 20 May 2026 08:40:22 GMT
Pragma:
- no-cache
RequestId:
- - 0191aaa2-8490-4dc8-9a11-5315097fe83e
+ - 8966747d-d26a-4ab6-b291-d0ecbc4f1737
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6278,57 +6205,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
- response:
- body:
- string: '{"requestId": "fcbb1ff3-bc10-4d71-a899-278786b2a9da", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 7:16:06 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:15:21 GMT
- RequestId:
- - fcbb1ff3-bc10-4d71-a899-278786b2a9da
- Retry-After:
- - '44'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -6337,15 +6224,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:16:08 GMT
+ - Wed, 20 May 2026 08:40:23 GMT
Pragma:
- no-cache
RequestId:
- - f67bfd79-67d3-496f-a93c-8b46c6db1e0f
+ - 180fd0f8-2f5b-48a2-8d0f-735a3e266d09
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6371,17 +6258,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -6390,15 +6277,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:16:09 GMT
+ - Wed, 20 May 2026 08:40:23 GMT
Pragma:
- no-cache
RequestId:
- - 1bc00105-7e5b-4f32-a110-f5277983d788
+ - 7dab946d-3a7d-416d-9efe-f44469ae961c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6424,17 +6311,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -6443,15 +6330,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:16:10 GMT
+ - Wed, 20 May 2026 08:40:24 GMT
Pragma:
- no-cache
RequestId:
- - 6b589d4c-cd8e-427b-826c-f90da353974f
+ - 4e1a1ca8-955b-439b-abf1-de6fac2bf8e6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6477,21 +6364,23 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items
response:
body:
- string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90",
- "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7",
- "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54"}, {"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc",
- "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}]}'
+ string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3",
+ "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId":
+ "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"},
+ {"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline", "displayName":
+ "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -6500,15 +6389,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '437'
+ - '425'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:16:11 GMT
+ - Wed, 20 May 2026 08:40:24 GMT
Pragma:
- no-cache
RequestId:
- - f609d269-fce4-4074-8ed5-3815c6843320
+ - fdcadca1-afe6-4b2f-ac76-10c6f62fff97
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6534,17 +6423,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -6553,15 +6442,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:16:11 GMT
+ - Wed, 20 May 2026 08:40:26 GMT
Pragma:
- no-cache
RequestId:
- - cda55516-7d02-4d3d-9953-3b2ff899651a
+ - cb5e5fb7-e50f-4de5-9745-507613ac98ab
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6587,17 +6476,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -6606,15 +6495,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:16:12 GMT
+ - Wed, 20 May 2026 08:40:26 GMT
Pragma:
- no-cache
RequestId:
- - 0a7a8307-71b6-44f6-b911-aa8c16a7da97
+ - 0f64303b-414b-407f-9386-054c2e9a5566
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6640,17 +6529,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -6659,15 +6548,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:16:13 GMT
+ - Wed, 20 May 2026 08:40:27 GMT
Pragma:
- no-cache
RequestId:
- - e62e8cdc-c902-487b-8bd9-cded9686897b
+ - 2f50def0-981f-4e17-bc0c-fb84620f0cf9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6693,17 +6582,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -6712,15 +6601,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:16:14 GMT
+ - Wed, 20 May 2026 08:40:28 GMT
Pragma:
- no-cache
RequestId:
- - 4ae705dc-eb1a-4957-9c1e-b8da612c58c8
+ - 3c061b76-5802-4036-a87d-5c837fa7d827
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6746,21 +6635,23 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items
response:
body:
- string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90",
- "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7",
- "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54"}, {"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc",
- "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}]}'
+ string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3",
+ "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId":
+ "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"},
+ {"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline", "displayName":
+ "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -6769,15 +6660,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '437'
+ - '425'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:16:14 GMT
+ - Wed, 20 May 2026 08:40:29 GMT
Pragma:
- no-cache
RequestId:
- - 70e9d627-0ef9-4ff4-bff6-79abe842b10b
+ - 42a25bbe-eef3-4364-91f8-6107fa21e5b7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6803,17 +6694,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -6822,15 +6713,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:16:15 GMT
+ - Wed, 20 May 2026 08:40:30 GMT
Pragma:
- no-cache
RequestId:
- - c5c69a33-e911-488f-bd88-b18d058d4890
+ - 5ea7917b-5507-49bf-a760-1d8ed60cd3a2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6856,17 +6747,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -6875,15 +6766,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:16:17 GMT
+ - Wed, 20 May 2026 08:40:29 GMT
Pragma:
- no-cache
RequestId:
- - 04da7034-15b3-4c38-bfe0-196326742583
+ - f89f982c-3c9b-46d1-a628-15143f98159a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6909,17 +6800,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -6928,15 +6819,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:16:17 GMT
+ - Wed, 20 May 2026 08:40:31 GMT
Pragma:
- no-cache
RequestId:
- - 6f90b31b-6fbd-46e8-991f-bddeb6fccbd7
+ - b342aa1e-cf7e-4983-bf7e-16e5cf1a7fc1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -6962,57 +6853,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
- response:
- body:
- string: '{"requestId": "80af701e-854a-40ce-bfac-9bf98500b078", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 7:17:09 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:16:17 GMT
- RequestId:
- - 80af701e-854a-40ce-bfac-9bf98500b078
- Retry-After:
- - '51'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -7021,15 +6872,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:17:12 GMT
+ - Wed, 20 May 2026 08:40:31 GMT
Pragma:
- no-cache
RequestId:
- - ca096721-fba3-49ba-9460-d29a287d07db
+ - 1c36e727-7c9d-4893-9362-d1eb8b005175
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7055,16 +6906,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -7073,15 +6927,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:17:13 GMT
+ - Wed, 20 May 2026 08:40:31 GMT
Pragma:
- no-cache
RequestId:
- - 79470874-c9dc-47a5-afb2-3146ed6ba8aa
+ - 0dee65c4-abc7-4871-abe7-2710ef97405d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7107,13 +6961,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName":
- "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName":
+ "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -7126,11 +6980,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:17:14 GMT
+ - Wed, 20 May 2026 08:40:32 GMT
Pragma:
- no-cache
RequestId:
- - f140556a-7c1f-4f8b-beef-c6772b484ff2
+ - f9fe4d2c-6055-4636-80d1-b44016e4872f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7156,13 +7010,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName":
- "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName":
+ "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -7175,11 +7029,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:17:14 GMT
+ - Wed, 20 May 2026 08:40:32 GMT
Pragma:
- no-cache
RequestId:
- - 2960525e-b03f-40e9-ad00-2c5fe3fb96c1
+ - d26f5a74-4962-4ff9-9625-2798871a8c7b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7205,13 +7059,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName":
- "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName":
+ "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -7224,11 +7078,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:17:15 GMT
+ - Wed, 20 May 2026 08:40:33 GMT
Pragma:
- no-cache
RequestId:
- - 79bad8bd-26b0-43f1-94a7-af3f20f9ea48
+ - 74a67001-c098-42fe-a990-08e82b53ce85
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7243,8 +7097,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000007", "parentFolderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe"}'
+ body: '{"displayName": "fabcli000007", "parentFolderId": "a7a0457b-c329-46d9-9633-d97806acc7d7"}'
headers:
Accept:
- '*/*'
@@ -7254,17 +7107,16 @@ interactions:
- keep-alive
Content-Length:
- '93'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders
response:
body:
- string: '{"id": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007",
- "parentFolderId": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}'
+ string: '{"id": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007",
+ "parentFolderId": "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -7273,17 +7125,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '168'
+ - '166'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:17:16 GMT
+ - Wed, 20 May 2026 08:40:34 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders/6fd12cfb-7dc9-47c3-b649-5c146f4ce735
+ - https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders/d34c8f2d-be34-44ae-9d9c-3249844c8fd2
Pragma:
- no-cache
RequestId:
- - 1366a75d-19c6-4bad-9e8f-42c7aad0d1dd
+ - 5549790b-e4aa-4136-ad23-a371a12a1d15
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7309,21 +7161,23 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items
response:
body:
- string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90",
- "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7",
- "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54"}, {"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc",
- "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}]}'
+ string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3",
+ "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId":
+ "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"},
+ {"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline", "displayName":
+ "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -7332,15 +7186,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '437'
+ - '425'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:17:17 GMT
+ - Wed, 20 May 2026 08:40:34 GMT
Pragma:
- no-cache
RequestId:
- - 886e020d-6e6a-44ab-bf07-ddd49f9ee4b4
+ - 4053d46d-0ba9-4b95-95a6-1798de2b2e82
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7366,17 +7220,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -7385,15 +7239,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:17:18 GMT
+ - Wed, 20 May 2026 08:40:34 GMT
Pragma:
- no-cache
RequestId:
- - d22fc361-8d05-484c-9406-56586b308b1c
+ - 457000d8-1559-4a56-8102-f521309cd781
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7419,17 +7273,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -7438,15 +7292,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:17:19 GMT
+ - Wed, 20 May 2026 08:40:36 GMT
Pragma:
- no-cache
RequestId:
- - b5a743cb-8ec1-47cd-b4ca-d48354912ae9
+ - 193b79d6-c8f1-4112-a809-59c54e61b324
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7472,17 +7326,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -7491,15 +7345,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:17:20 GMT
+ - Wed, 20 May 2026 08:40:36 GMT
Pragma:
- no-cache
RequestId:
- - 41972131-f429-4040-9120-39e76dff21c0
+ - b8510d0d-de82-4a89-aaf7-8a0139d7ea84
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7525,17 +7379,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -7544,15 +7398,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:17:20 GMT
+ - Wed, 20 May 2026 08:40:36 GMT
Pragma:
- no-cache
RequestId:
- - ea7d5297-64fe-4c0c-993a-c06f2724e346
+ - 405af285-6f9a-4b00-ae90-ee31de1ffaf9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7578,16 +7432,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -7596,15 +7453,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:17:21 GMT
+ - Wed, 20 May 2026 08:40:37 GMT
Pragma:
- no-cache
RequestId:
- - 6dd04343-8198-4afb-bf0c-41b58a02b8ae
+ - 7b40d939-bfbf-4e4f-9738-6644f4bd59cc
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7630,15 +7487,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName":
- "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id":
- "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName":
+ "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id":
+ "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId":
+ "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -7647,15 +7504,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '203'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:17:22 GMT
+ - Wed, 20 May 2026 08:40:37 GMT
Pragma:
- no-cache
RequestId:
- - cf98a8e7-f734-44d4-9be4-4f2b752a04d8
+ - 1b532336-f016-49f2-b743-d3101ac3ca6c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7681,15 +7538,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName":
- "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id":
- "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName":
+ "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id":
+ "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId":
+ "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -7698,15 +7555,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '203'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:17:23 GMT
+ - Wed, 20 May 2026 08:40:38 GMT
Pragma:
- no-cache
RequestId:
- - fdc306da-0471-4ed0-bcdf-36ec1afaca91
+ - b080bfe3-9007-45a0-9d51-6394c0a2d2ad
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7732,17 +7589,18 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items
response:
body:
- string: '{"value": [{"id": "ef61ccc3-71c4-4ff2-9554-e52e4a549b14", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "6da7abe9-44db-49be-a885-48f74490660f",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "8487c193-5930-4805-a9dc-ddfe0e58f3c8",
- "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe"}]}'
+ string: '{"value": [{"id": "38a86bcc-82f4-4f58-9cba-c8aac226aa5d", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "971e55ca-ba5d-47d9-88df-235b11e7e5cc", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "0e010915-e8ca-4517-917d-c0e09abec2b2", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d",
+ "folderId": "a7a0457b-c329-46d9-9633-d97806acc7d7"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -7751,15 +7609,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '312'
+ - '302'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:17:24 GMT
+ - Wed, 20 May 2026 08:40:39 GMT
Pragma:
- no-cache
RequestId:
- - b5bfbadd-0c3c-41c3-a41d-525b4b856d88
+ - 53de3f7c-38bf-42ba-a84f-276f77a2d094
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7785,55 +7643,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
- response:
- body:
- string: '{"requestId": "3a4ded51-e38b-4005-88a0-308f35092217", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 7:18:13 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:17:24 GMT
- RequestId:
- - 3a4ded51-e38b-4005-88a0-308f35092217
- Retry-After:
- - '48'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName":
- "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id":
- "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName":
+ "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id":
+ "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId":
+ "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -7842,15 +7660,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '203'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:18:15 GMT
+ - Wed, 20 May 2026 08:40:40 GMT
Pragma:
- no-cache
RequestId:
- - ce526a68-f406-43d0-ae7b-29470e133ee2
+ - 29cbd6ec-e942-41b5-a221-d5ae81aa5737
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7876,17 +7694,18 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items
response:
body:
- string: '{"value": [{"id": "ef61ccc3-71c4-4ff2-9554-e52e4a549b14", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "6da7abe9-44db-49be-a885-48f74490660f",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "8487c193-5930-4805-a9dc-ddfe0e58f3c8",
- "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe"}]}'
+ string: '{"value": [{"id": "38a86bcc-82f4-4f58-9cba-c8aac226aa5d", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "971e55ca-ba5d-47d9-88df-235b11e7e5cc", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "0e010915-e8ca-4517-917d-c0e09abec2b2", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d",
+ "folderId": "a7a0457b-c329-46d9-9633-d97806acc7d7"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -7895,15 +7714,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '312'
+ - '302'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:18:17 GMT
+ - Wed, 20 May 2026 08:40:41 GMT
Pragma:
- no-cache
RequestId:
- - d3fe4ead-a98d-4dbe-9320-9d687d377a12
+ - eb4ce973-8681-4201-801a-ae718196c181
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7929,15 +7748,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName":
- "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id":
- "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName":
+ "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id":
+ "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId":
+ "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -7946,15 +7765,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '203'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:18:18 GMT
+ - Wed, 20 May 2026 08:40:41 GMT
Pragma:
- no-cache
RequestId:
- - a699cbeb-e05c-4980-b357-4675a463b8ad
+ - 927dfb4d-5496-4421-8c82-4831f049eb38
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -7980,17 +7799,18 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items
response:
body:
- string: '{"value": [{"id": "ef61ccc3-71c4-4ff2-9554-e52e4a549b14", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "6da7abe9-44db-49be-a885-48f74490660f",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "8487c193-5930-4805-a9dc-ddfe0e58f3c8",
- "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe"}]}'
+ string: '{"value": [{"id": "38a86bcc-82f4-4f58-9cba-c8aac226aa5d", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "971e55ca-ba5d-47d9-88df-235b11e7e5cc", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "0e010915-e8ca-4517-917d-c0e09abec2b2", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d",
+ "folderId": "a7a0457b-c329-46d9-9633-d97806acc7d7"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -7999,15 +7819,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '312'
+ - '302'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:18:19 GMT
+ - Wed, 20 May 2026 08:40:43 GMT
Pragma:
- no-cache
RequestId:
- - 0fa72966-2520-4995-8bbd-e473579f45a8
+ - 7a86b489-2b95-4e8d-ab28-5d07876336cf
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -8033,15 +7853,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName":
- "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id":
- "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName":
+ "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id":
+ "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId":
+ "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -8050,15 +7870,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '203'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:18:19 GMT
+ - Wed, 20 May 2026 08:40:43 GMT
Pragma:
- no-cache
RequestId:
- - a0bb2e90-bffc-49b5-9474-62d307bc74d2
+ - e1c52524-3ea9-4287-9d14-3e2e12a99ffa
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -8084,14 +7904,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items/026af425-a57f-470f-a2b7-96dd24537cb7
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items/9d94eef1-2e72-41a1-97a2-417c7c9ed7d3
response:
body:
- string: '{"id": "026af425-a57f-470f-a2b7-96dd24537cb7", "type": "Notebook",
- "displayName": "fabcli000008", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54"}'
+ string: '{"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3", "type": "Notebook",
+ "displayName": "fabcli000008", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -8100,17 +7920,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '195'
+ - '184'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:18:20 GMT
+ - Wed, 20 May 2026 08:40:44 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 14833729-aef7-4072-a6ab-28bdf01babb9
+ - 4ad7832b-bbfb-4b6b-a276-bf8926807052
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -8138,9 +7958,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items/026af425-a57f-470f-a2b7-96dd24537cb7/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items/9d94eef1-2e72-41a1-97a2-417c7c9ed7d3/getDefinition
response:
body:
string: 'null'
@@ -8156,13 +7976,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:18:21 GMT
+ - Wed, 20 May 2026 08:40:45 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d5c606bb-277c-424a-894e-575934f75843
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b3e7388f-0b38-4c02-a4b9-a8fee63daa2d
Pragma:
- no-cache
RequestId:
- - d505d3fe-f103-4f74-8b08-ff8ce145a456
+ - 5f22b30d-2d9d-4c9c-a9c4-131a53fac381
Retry-After:
- '20'
Strict-Transport-Security:
@@ -8176,7 +7996,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - d5c606bb-277c-424a-894e-575934f75843
+ - b3e7388f-0b38-4c02-a4b9-a8fee63daa2d
status:
code: 202
message: Accepted
@@ -8192,13 +8012,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d5c606bb-277c-424a-894e-575934f75843
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b3e7388f-0b38-4c02-a4b9-a8fee63daa2d
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:18:21.9991506",
- "lastUpdatedTimeUtc": "2026-02-06T07:18:22.2647657", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:40:45.5718361",
+ "lastUpdatedTimeUtc": "2026-05-20T08:40:46.3433951", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -8212,13 +8032,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:18:43 GMT
+ - Wed, 20 May 2026 08:41:06 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d5c606bb-277c-424a-894e-575934f75843/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b3e7388f-0b38-4c02-a4b9-a8fee63daa2d/result
Pragma:
- no-cache
RequestId:
- - 27a0a419-96ee-4a53-a0e9-65d7ad7badd3
+ - 5af0f775-aefa-4d46-a9a8-aa2317e312d0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -8226,7 +8046,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - d5c606bb-277c-424a-894e-575934f75843
+ - b3e7388f-0b38-4c02-a4b9-a8fee63daa2d
status:
code: 200
message: OK
@@ -8242,14 +8062,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d5c606bb-277c-424a-894e-575934f75843/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b3e7388f-0b38-4c02-a4b9-a8fee63daa2d/result
response:
body:
string: '{"definition": {"parts": [{"path": "notebook-content.py", "payload":
"IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDgiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDgiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
"payloadType": "InlineBase64"}]}}'
headers:
Access-Control-Expose-Headers:
@@ -8261,11 +8081,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 07:18:44 GMT
+ - Wed, 20 May 2026 08:41:07 GMT
Pragma:
- no-cache
RequestId:
- - 75c057c0-5791-4c80-bb0e-354d8e74c1d6
+ - 0ebcd990-823a-4b1c-ac6e-3cff5229c992
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -8278,10 +8098,10 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "Notebook", "displayName": "fabcli000008",
- "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
- "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDgiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
- "payloadType": "InlineBase64"}]}, "folderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735"}'
+ body: '{"type": "Notebook", "displayName": "fabcli000008", "definition": {"parts":
+ [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDgiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==",
+ "payloadType": "InlineBase64"}]}, "folderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2"}'
headers:
Accept:
- '*/*'
@@ -8290,14 +8110,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1286'
-
+ - '1238'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items
response:
body:
string: 'null'
@@ -8313,15 +8132,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:18:46 GMT
+ - Wed, 20 May 2026 08:41:08 GMT
ETag:
- '""'
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e2e96e80-bdc2-4b0c-b707-63d444cc70ff
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/07ff4409-41bc-4f14-95bc-b26f4b0a233f
Pragma:
- no-cache
RequestId:
- - 35c05517-3238-4571-b989-c643ca1bddbd
+ - 1a61975a-9ccc-4f66-bed2-06331d1f5126
Retry-After:
- '20'
Strict-Transport-Security:
@@ -8335,7 +8154,7 @@ interactions:
request-redirected:
- 'true'
x-ms-operation-id:
- - e2e96e80-bdc2-4b0c-b707-63d444cc70ff
+ - 07ff4409-41bc-4f14-95bc-b26f4b0a233f
status:
code: 202
message: Accepted
@@ -8351,13 +8170,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e2e96e80-bdc2-4b0c-b707-63d444cc70ff
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/07ff4409-41bc-4f14-95bc-b26f4b0a233f
response:
body:
- string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:18:46.0507985",
- "lastUpdatedTimeUtc": "2026-02-06T07:18:47.9576838", "percentComplete": 100,
+ string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:41:08.6444268",
+ "lastUpdatedTimeUtc": "2026-05-20T08:41:09.9545508", "percentComplete": 100,
"error": null}'
headers:
Access-Control-Expose-Headers:
@@ -8367,17 +8186,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '132'
+ - '130'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:19:08 GMT
+ - Wed, 20 May 2026 08:41:29 GMT
Location:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e2e96e80-bdc2-4b0c-b707-63d444cc70ff/result
+ - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/07ff4409-41bc-4f14-95bc-b26f4b0a233f/result
Pragma:
- no-cache
RequestId:
- - f1cddc53-a539-4411-a0d9-67efdb60d7d0
+ - f009ac22-2cc6-4514-9335-b56ed9404f72
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -8385,7 +8204,7 @@ interactions:
X-Frame-Options:
- deny
x-ms-operation-id:
- - e2e96e80-bdc2-4b0c-b707-63d444cc70ff
+ - 07ff4409-41bc-4f14-95bc-b26f4b0a233f
status:
code: 200
message: OK
@@ -8401,14 +8220,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e2e96e80-bdc2-4b0c-b707-63d444cc70ff/result
+ uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/07ff4409-41bc-4f14-95bc-b26f4b0a233f/result
response:
body:
- string: '{"id": "a2a09ffc-826f-4cef-b00d-ccef7f25dea0", "type": "Notebook",
- "displayName": "fabcli000008", "workspaceId":
- "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735"}'
+ string: '{"id": "69eb599d-1afa-4d77-90f2-ee50fc819cbe", "type": "Notebook",
+ "displayName": "fabcli000008", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d",
+ "folderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2"}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -8419,11 +8238,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 06 Feb 2026 07:19:09 GMT
+ - Wed, 20 May 2026 08:41:30 GMT
Pragma:
- no-cache
RequestId:
- - fa69290a-147b-4a32-a29c-d7c33c3ae1e5
+ - 29b27b98-e66a-4bd2-9ee1-4fe7ff2b9e0c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
Transfer-Encoding:
@@ -8447,16 +8266,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -8465,15 +8287,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:19:09 GMT
+ - Wed, 20 May 2026 08:41:31 GMT
Pragma:
- no-cache
RequestId:
- - cfa06766-239e-4f40-8300-44a32594a7ea
+ - a1612875-c6d8-4093-854f-ec45e8b0b881
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -8499,15 +8321,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName":
- "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id":
- "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName":
+ "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id":
+ "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId":
+ "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -8516,15 +8338,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '203'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:19:11 GMT
+ - Wed, 20 May 2026 08:41:32 GMT
Pragma:
- no-cache
RequestId:
- - 6fd73f1a-4e63-437c-bd67-f32ad5c07752
+ - cc0e673a-0c74-4110-8e0c-6026cc05dbca
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -8550,15 +8372,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName":
- "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id":
- "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName":
+ "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id":
+ "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId":
+ "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -8567,15 +8389,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '203'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:19:11 GMT
+ - Wed, 20 May 2026 08:41:32 GMT
Pragma:
- no-cache
RequestId:
- - 7546d813-8384-4fe5-a7a1-7ded7248433b
+ - e2b62893-e580-46a0-ac23-5bee635bb465
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -8601,15 +8423,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName":
- "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id":
- "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName":
+ "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id":
+ "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId":
+ "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -8618,15 +8440,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '203'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:19:13 GMT
+ - Wed, 20 May 2026 08:41:33 GMT
Pragma:
- no-cache
RequestId:
- - b461b619-e137-4399-bf31-b4b0827df388
+ - 5672be68-16a5-43ee-bfcf-eb407677ab81
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -8652,15 +8474,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName":
- "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id":
- "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName":
+ "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id":
+ "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId":
+ "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -8669,15 +8491,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '203'
+ - '199'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:19:13 GMT
+ - Wed, 20 May 2026 08:41:34 GMT
Pragma:
- no-cache
RequestId:
- - 4bd4f7a5-f8de-404e-b2e7-c3a2f37f7703
+ - df918dcc-db5d-4bf6-a2a1-d49391d786d3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -8692,8 +8514,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"displayName": "fabcli000009", "parentFolderId":
- "6fd12cfb-7dc9-47c3-b649-5c146f4ce735"}'
+ body: '{"displayName": "fabcli000009", "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2"}'
headers:
Accept:
- '*/*'
@@ -8703,17 +8524,16 @@ interactions:
- keep-alive
Content-Length:
- '93'
-
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders
response:
body:
- string: '{"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009",
- "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}'
+ string: '{"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009",
+ "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}'
headers:
Access-Control-Expose-Headers:
- RequestId,Location
@@ -8722,17 +8542,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '170'
+ - '166'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:19:14 GMT
+ - Wed, 20 May 2026 08:41:35 GMT
Location:
- - https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders/596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1
+ - https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders/1c15fdc3-ad54-4ed2-87c4-00c40f77fa65
Pragma:
- no-cache
RequestId:
- - 2b34c4c0-6861-48f8-89cb-84fe0524dd3a
+ - 5819cd3f-2b7d-41b9-a28c-3082bfb80b3d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -8758,21 +8578,23 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items
response:
body:
- string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90",
- "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7",
- "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54"}, {"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc",
- "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}]}'
+ string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3",
+ "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId":
+ "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"},
+ {"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline", "displayName":
+ "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -8781,15 +8603,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '437'
+ - '425'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:19:15 GMT
+ - Wed, 20 May 2026 08:41:36 GMT
Pragma:
- no-cache
RequestId:
- - 9ddefa32-277d-4952-8a07-9ec148c7aac3
+ - d4d907a2-a7a5-47fe-9828-e1793756a216
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -8815,17 +8637,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -8834,15 +8656,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:19:15 GMT
+ - Wed, 20 May 2026 08:41:37 GMT
Pragma:
- no-cache
RequestId:
- - 493be54b-7798-4085-b51d-940fc22cf51e
+ - 722b6b2d-588a-47eb-9b64-a45a0e3dced7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -8868,17 +8690,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -8887,15 +8709,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:19:16 GMT
+ - Wed, 20 May 2026 08:41:37 GMT
Pragma:
- no-cache
RequestId:
- - 2cc6b9d0-53df-4756-bba3-e46103c32df5
+ - cf0547a2-0098-4a39-afd7-ca658479e551
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -8921,17 +8743,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -8940,15 +8762,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:19:17 GMT
+ - Wed, 20 May 2026 08:41:38 GMT
Pragma:
- no-cache
RequestId:
- - 39953005-7ad5-452f-a4b0-7c3ea511f417
+ - 8ac55879-e6e6-4288-9066-f444a5edcbc2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -8974,17 +8796,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -8993,15 +8815,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:19:18 GMT
+ - Wed, 20 May 2026 08:41:39 GMT
Pragma:
- no-cache
RequestId:
- - d4f43839-93a8-490a-839c-881c65aa19ff
+ - 5627d743-2e7e-4c4f-b1e5-4a4b0cf65281
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -9027,16 +8849,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -9045,15 +8870,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:19:18 GMT
+ - Wed, 20 May 2026 08:41:40 GMT
Pragma:
- no-cache
RequestId:
- - c958e64e-5135-43ed-b396-45ef2669d10e
+ - 4f5af0c5-8d69-4a8d-ad57-d534a284130c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -9079,17 +8904,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName":
- "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id":
- "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"},
- {"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009",
- "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName":
+ "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id":
+ "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId":
+ "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009",
+ "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -9098,15 +8923,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '240'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:19:20 GMT
+ - Wed, 20 May 2026 08:41:41 GMT
Pragma:
- no-cache
RequestId:
- - 5e1f9d31-410f-4efe-9607-a71c3d666d83
+ - 19aee64b-6da7-4314-9ff5-b10133bdc525
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -9132,17 +8957,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName":
- "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id":
- "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"},
- {"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009",
- "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName":
+ "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id":
+ "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId":
+ "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009",
+ "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -9151,15 +8976,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '240'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:19:20 GMT
+ - Wed, 20 May 2026 08:41:42 GMT
Pragma:
- no-cache
RequestId:
- - ff3723dc-9807-4f3e-85e2-3a9e2986febf
+ - db4d7187-909e-46aa-8747-383e0ebf853f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -9185,17 +9010,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName":
- "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id":
- "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"},
- {"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009",
- "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName":
+ "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id":
+ "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId":
+ "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009",
+ "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -9204,15 +9029,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '240'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:19:21 GMT
+ - Wed, 20 May 2026 08:41:43 GMT
Pragma:
- no-cache
RequestId:
- - 59a6d224-1e03-4c0e-8517-7199ef21509f
+ - 5a267cfb-1bf6-41db-a864-e2f2e34c1146
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -9238,19 +9063,20 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items
response:
body:
- string: '{"value": [{"id": "ef61ccc3-71c4-4ff2-9554-e52e4a549b14", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "6da7abe9-44db-49be-a885-48f74490660f",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "8487c193-5930-4805-a9dc-ddfe0e58f3c8",
- "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe"}, {"id": "a2a09ffc-826f-4cef-b00d-ccef7f25dea0",
- "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId":
- "6fd12cfb-7dc9-47c3-b649-5c146f4ce735"}]}'
+ string: '{"value": [{"id": "38a86bcc-82f4-4f58-9cba-c8aac226aa5d", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "971e55ca-ba5d-47d9-88df-235b11e7e5cc", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "0e010915-e8ca-4517-917d-c0e09abec2b2", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d",
+ "folderId": "a7a0457b-c329-46d9-9633-d97806acc7d7"}, {"id": "69eb599d-1afa-4d77-90f2-ee50fc819cbe",
+ "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId":
+ "2b905c52-4520-4342-a846-90e8641a367d", "folderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -9259,15 +9085,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '376'
+ - '364'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:19:22 GMT
+ - Wed, 20 May 2026 08:41:44 GMT
Pragma:
- no-cache
RequestId:
- - 2b407bf2-ba1c-4345-a7be-d8296d72ec4d
+ - 6e6961d4-080a-4170-9cf4-2d1a342d2522
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -9293,17 +9119,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName":
- "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id":
- "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"},
- {"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009",
- "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName":
+ "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id":
+ "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId":
+ "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009",
+ "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -9312,15 +9138,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '240'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:19:22 GMT
+ - Wed, 20 May 2026 08:41:45 GMT
Pragma:
- no-cache
RequestId:
- - c57c690d-dc3c-4de6-9b1b-16a778644ed9
+ - c8c75a61-e69b-4a3e-bb7f-285eddc55744
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -9346,17 +9172,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName":
- "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id":
- "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"},
- {"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009",
- "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName":
+ "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id":
+ "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId":
+ "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009",
+ "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -9365,15 +9191,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '240'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:19:24 GMT
+ - Wed, 20 May 2026 08:41:46 GMT
Pragma:
- no-cache
RequestId:
- - 88500a08-2ce3-4072-9f62-a61ffe390f09
+ - b27315f5-80a2-4d88-b313-6f3c721be043
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -9399,19 +9225,20 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items
response:
body:
- string: '{"value": [{"id": "ef61ccc3-71c4-4ff2-9554-e52e4a549b14", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "6da7abe9-44db-49be-a885-48f74490660f",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "8487c193-5930-4805-a9dc-ddfe0e58f3c8",
- "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe"}, {"id": "a2a09ffc-826f-4cef-b00d-ccef7f25dea0",
- "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId":
- "6fd12cfb-7dc9-47c3-b649-5c146f4ce735"}]}'
+ string: '{"value": [{"id": "38a86bcc-82f4-4f58-9cba-c8aac226aa5d", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "971e55ca-ba5d-47d9-88df-235b11e7e5cc", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "0e010915-e8ca-4517-917d-c0e09abec2b2", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d",
+ "folderId": "a7a0457b-c329-46d9-9633-d97806acc7d7"}, {"id": "69eb599d-1afa-4d77-90f2-ee50fc819cbe",
+ "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId":
+ "2b905c52-4520-4342-a846-90e8641a367d", "folderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -9420,15 +9247,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '376'
+ - '364'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:19:24 GMT
+ - Wed, 20 May 2026 08:41:46 GMT
Pragma:
- no-cache
RequestId:
- - c903d8bd-7d06-4926-8e67-fa556ab3277a
+ - db9eb7d9-5f92-4cbc-808b-2697e4179821
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -9454,17 +9281,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName":
- "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id":
- "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"},
- {"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009",
- "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName":
+ "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id":
+ "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId":
+ "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009",
+ "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -9473,15 +9300,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '240'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:19:25 GMT
+ - Wed, 20 May 2026 08:41:47 GMT
Pragma:
- no-cache
RequestId:
- - 9af01161-1034-4f46-94b6-e3589f23edec
+ - eed2d3dc-5fe7-4cb5-b2d4-931318ddd916
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -9507,17 +9334,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName":
- "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id":
- "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"},
- {"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009",
- "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName":
+ "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id":
+ "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId":
+ "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009",
+ "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -9526,15 +9353,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '240'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:19:25 GMT
+ - Wed, 20 May 2026 08:41:48 GMT
Pragma:
- no-cache
RequestId:
- - 7df6c1e9-3c44-4780-903c-952892935147
+ - ed72d1e7-c2db-44c8-b9cd-ab18733360e3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -9560,19 +9387,20 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items
response:
body:
- string: '{"value": [{"id": "ef61ccc3-71c4-4ff2-9554-e52e4a549b14", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "6da7abe9-44db-49be-a885-48f74490660f",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "8487c193-5930-4805-a9dc-ddfe0e58f3c8",
- "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe"}, {"id": "a2a09ffc-826f-4cef-b00d-ccef7f25dea0",
- "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId":
- "6fd12cfb-7dc9-47c3-b649-5c146f4ce735"}]}'
+ string: '{"value": [{"id": "38a86bcc-82f4-4f58-9cba-c8aac226aa5d", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "971e55ca-ba5d-47d9-88df-235b11e7e5cc", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "0e010915-e8ca-4517-917d-c0e09abec2b2", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d",
+ "folderId": "a7a0457b-c329-46d9-9633-d97806acc7d7"}, {"id": "69eb599d-1afa-4d77-90f2-ee50fc819cbe",
+ "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId":
+ "2b905c52-4520-4342-a846-90e8641a367d", "folderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -9581,15 +9409,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '376'
+ - '364'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:19:26 GMT
+ - Wed, 20 May 2026 08:41:48 GMT
Pragma:
- no-cache
RequestId:
- - fa6abe54-1364-490a-bb35-2ea5deaf8f4d
+ - 317d0892-85b2-4a64-b79f-2b1eae800dc1
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -9615,57 +9443,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
- response:
- body:
- string: '{"requestId": "2f88e00f-b1be-4653-9c1d-c57c91099a63", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 7:20:17 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:19:27 GMT
- RequestId:
- - 2f88e00f-b1be-4653-9c1d-c57c91099a63
- Retry-After:
- - '50'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName":
- "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id":
- "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"},
- {"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009",
- "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName":
+ "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id":
+ "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId":
+ "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009",
+ "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -9674,15 +9462,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '240'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:20:21 GMT
+ - Wed, 20 May 2026 08:41:50 GMT
Pragma:
- no-cache
RequestId:
- - ae28e982-d497-4ed4-a3fb-260366657ef6
+ - d4b6f860-7644-47d8-9540-1ae889a9381a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -9708,17 +9496,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName":
- "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id":
- "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"},
- {"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009",
- "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName":
+ "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id":
+ "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId":
+ "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009",
+ "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -9727,15 +9515,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '240'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:20:21 GMT
+ - Wed, 20 May 2026 08:41:51 GMT
Pragma:
- no-cache
RequestId:
- - 4b5ae970-5a3f-4c9c-b49f-d00a6bbdaf9b
+ - 057aea9b-6ed2-49f7-afc5-3df6503991e9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -9761,14 +9549,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items/2ff7ab09-22d6-4330-812e-786cc2b98dcc
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items/31ab844f-cd18-44cd-9448-93944edfccf0
response:
body:
- string: '{"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc", "type": "DataPipeline",
- "displayName": "fabcli000010", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}'
+ string: '{"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline",
+ "displayName": "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -9777,17 +9565,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '201'
+ - '191'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:20:22 GMT
+ - Wed, 20 May 2026 08:41:51 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - 482a4456-9e31-455a-ac8a-1078540e40cc
+ - 21fe19f5-b12d-423f-807d-23788dd7bb61
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -9815,14 +9603,14 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items/2ff7ab09-22d6-4330-812e-786cc2b98dcc/getDefinition
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items/31ab844f-cd18-44cd-9448-93944edfccf0/getDefinition
response:
body:
string: '{"definition": {"parts": [{"path": "pipeline-content.json", "payload":
"ewogICJwcm9wZXJ0aWVzIjogewogICAgImFjdGl2aXRpZXMiOiBbXQogIH0KfQ==", "payloadType":
- "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDEwIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
+ "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDEwIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
"payloadType": "InlineBase64"}]}}'
headers:
Access-Control-Expose-Headers:
@@ -9832,15 +9620,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '457'
+ - '440'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:20:23 GMT
+ - Wed, 20 May 2026 08:41:53 GMT
Pragma:
- no-cache
RequestId:
- - adebf404-9825-41e3-9638-8720087b75c6
+ - 66fd9c92-9ff7-4c39-9353-0f58bd77c3ed
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -9855,11 +9643,10 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "DataPipeline", "displayName":
- "fabcli000010", "definition": {"parts": [{"path": "pipeline-content.json", "payload":
- "ewogICJwcm9wZXJ0aWVzIjogewogICAgImFjdGl2aXRpZXMiOiBbXQogIH0KfQ==", "payloadType":
- "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDEwIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9",
- "payloadType": "InlineBase64"}]}, "folderId": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1"}'
+ body: '{"type": "DataPipeline", "displayName": "fabcli000010", "definition": {"parts":
+ [{"path": "pipeline-content.json", "payload": "ewogICJwcm9wZXJ0aWVzIjogewogICAgImFjdGl2aXRpZXMiOiBbXQogIH0KfQ==",
+ "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDEwIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=",
+ "payloadType": "InlineBase64"}]}, "folderId": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65"}'
headers:
Accept:
- '*/*'
@@ -9868,19 +9655,18 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '812'
-
+ - '760'
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: POST
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items
response:
body:
- string: '{"id": "fc2e306d-4424-4295-9eca-19cfd2f979e4", "type": "DataPipeline",
- "displayName": "fabcli000010", "workspaceId":
- "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1"}'
+ string: '{"id": "24d03dfd-5785-4ca9-bdf9-2b9e79a5d7c1", "type": "DataPipeline",
+ "displayName": "fabcli000010", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d",
+ "folderId": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65"}'
headers:
Access-Control-Expose-Headers:
- RequestId,ETag
@@ -9889,17 +9675,17 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '201'
+ - '190'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:20:28 GMT
+ - Wed, 20 May 2026 08:41:56 GMT
ETag:
- '""'
Pragma:
- no-cache
RequestId:
- - f513b4bf-eb68-4a5d-a53f-f22ea2e97f9d
+ - 0b9b616a-5e0e-49e3-9753-d12f23907c66
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -9925,16 +9711,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -9943,15 +9732,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:20:28 GMT
+ - Wed, 20 May 2026 08:41:57 GMT
Pragma:
- no-cache
RequestId:
- - 6a6ee1e7-532a-4429-a1c2-1a1f1bc6748b
+ - b83d05f2-9557-4cb4-90aa-0a3f9995ec01
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -9977,21 +9766,23 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items
response:
body:
- string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90",
- "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7",
- "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54"}, {"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc",
- "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}]}'
+ string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3",
+ "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId":
+ "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"},
+ {"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline", "displayName":
+ "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -10000,15 +9791,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '437'
+ - '425'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:20:30 GMT
+ - Wed, 20 May 2026 08:41:58 GMT
Pragma:
- no-cache
RequestId:
- - 790716e2-06ab-4f36-8b0a-afb2e441da6d
+ - eb9f2871-3550-4ed2-820c-3454aca58ff8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -10034,17 +9825,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -10053,15 +9844,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:20:30 GMT
+ - Wed, 20 May 2026 08:41:59 GMT
Pragma:
- no-cache
RequestId:
- - 8b18dc49-d6af-4d3f-bd21-7a47a539c89e
+ - d8ca2913-5413-4ee6-9361-c494b63880da
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -10087,17 +9878,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -10106,15 +9897,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:20:31 GMT
+ - Wed, 20 May 2026 08:42:00 GMT
Pragma:
- no-cache
RequestId:
- - 1221a17f-f1fc-46ff-bb03-7294ef2077d6
+ - aa557e9e-3ad2-42c6-bb1b-5847adac77b5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -10140,17 +9931,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -10159,15 +9950,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:20:32 GMT
+ - Wed, 20 May 2026 08:42:01 GMT
Pragma:
- no-cache
RequestId:
- - 2cfcead8-24a5-425d-84a0-5151c04a5d53
+ - de0f55a5-35e5-4351-b328-358985079bd0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -10193,17 +9984,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -10212,15 +10003,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:20:32 GMT
+ - Wed, 20 May 2026 08:42:02 GMT
Pragma:
- no-cache
RequestId:
- - 75994635-0530-44c9-bf97-6b6658b7111f
+ - 6b2f334b-8601-4103-8f2e-6469ae5104fc
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -10246,16 +10037,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -10264,15 +10058,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:20:33 GMT
+ - Wed, 20 May 2026 08:42:02 GMT
Pragma:
- no-cache
RequestId:
- - 2d75b99f-c32b-4ba9-8cf5-de9c649745e2
+ - ac39b6f6-eed8-446c-85e4-74e4a011329c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -10298,21 +10092,23 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items
response:
body:
- string: '{"value": [{"id": "ef61ccc3-71c4-4ff2-9554-e52e4a549b14", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "6da7abe9-44db-49be-a885-48f74490660f",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "8487c193-5930-4805-a9dc-ddfe0e58f3c8",
- "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe"}, {"id": "a2a09ffc-826f-4cef-b00d-ccef7f25dea0",
- "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId":
- "6fd12cfb-7dc9-47c3-b649-5c146f4ce735"}, {"id": "fc2e306d-4424-4295-9eca-19cfd2f979e4",
- "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId":
- "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1"}]}'
+ string: '{"value": [{"id": "38a86bcc-82f4-4f58-9cba-c8aac226aa5d", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "971e55ca-ba5d-47d9-88df-235b11e7e5cc", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "0e010915-e8ca-4517-917d-c0e09abec2b2", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d",
+ "folderId": "a7a0457b-c329-46d9-9633-d97806acc7d7"}, {"id": "69eb599d-1afa-4d77-90f2-ee50fc819cbe",
+ "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId":
+ "2b905c52-4520-4342-a846-90e8641a367d", "folderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2"},
+ {"id": "24d03dfd-5785-4ca9-bdf9-2b9e79a5d7c1", "type": "DataPipeline", "displayName":
+ "fabcli000010", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d",
+ "folderId": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -10321,15 +10117,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '436'
+ - '422'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:20:35 GMT
+ - Wed, 20 May 2026 08:42:03 GMT
Pragma:
- no-cache
RequestId:
- - 858ca515-8e81-4928-b5a2-0e496bf1377e
+ - 4fa4b364-fdbb-4f0f-a956-9be64e4ae859
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -10355,17 +10151,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName":
- "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id":
- "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"},
- {"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009",
- "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName":
+ "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id":
+ "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId":
+ "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009",
+ "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -10374,15 +10170,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '240'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:20:35 GMT
+ - Wed, 20 May 2026 08:42:04 GMT
Pragma:
- no-cache
RequestId:
- - 69945fad-dd53-4408-9e6d-611b572a8c4e
+ - 5f213796-adda-446c-8df8-129f1ac35773
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -10408,17 +10204,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName":
- "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id":
- "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"},
- {"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009",
- "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName":
+ "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id":
+ "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId":
+ "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009",
+ "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -10427,15 +10223,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '240'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:20:36 GMT
+ - Wed, 20 May 2026 08:42:05 GMT
Pragma:
- no-cache
RequestId:
- - b926130d-b9ba-41b0-8b25-0706ca85536a
+ - 341729d6-c4e5-4d2e-ad94-a94875a1d510
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -10461,17 +10257,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName":
- "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id":
- "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"},
- {"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009",
- "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName":
+ "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id":
+ "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId":
+ "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009",
+ "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -10480,15 +10276,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '240'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:20:36 GMT
+ - Wed, 20 May 2026 08:42:06 GMT
Pragma:
- no-cache
RequestId:
- - 2aa3f3f7-8eb5-46d2-95b8-3789e2bfe43c
+ - b4681eb7-dbae-4979-97dc-11a1a330199d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -10514,17 +10310,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName":
- "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id":
- "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"},
- {"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009",
- "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName":
+ "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id":
+ "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId":
+ "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009",
+ "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -10533,15 +10329,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '240'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:20:37 GMT
+ - Wed, 20 May 2026 08:42:07 GMT
Pragma:
- no-cache
RequestId:
- - dacd10e6-7750-4998-a5b1-4dabbe613cf1
+ - bc7e8ebf-47a1-4b79-9d75-63044fc8deda
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -10567,16 +10363,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -10585,15 +10384,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:20:38 GMT
+ - Wed, 20 May 2026 08:42:07 GMT
Pragma:
- no-cache
RequestId:
- - 30f8b345-12ca-4389-995a-8ed79424d274
+ - a68d5e97-5a6e-4b23-84ff-297bee49db29
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -10619,57 +10418,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
- response:
- body:
- string: '{"requestId": "2818d245-50f3-4f18-a3f5-3a6d4587654c", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 7:21:22 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:20:39 GMT
- RequestId:
- - 2818d245-50f3-4f18-a3f5-3a6d4587654c
- Retry-After:
- - '42'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -10678,15 +10437,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:21:24 GMT
+ - Wed, 20 May 2026 08:42:09 GMT
Pragma:
- no-cache
RequestId:
- - e36c0f43-e8af-449b-98b1-a6206ca78798
+ - 907f1c16-4108-4fe4-8db3-bd9a6c549df8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -10712,21 +10471,23 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items
response:
body:
- string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90",
- "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7",
- "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54"}, {"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc",
- "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}]}'
+ string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3",
+ "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId":
+ "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"},
+ {"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline", "displayName":
+ "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -10735,15 +10496,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '437'
+ - '425'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:21:25 GMT
+ - Wed, 20 May 2026 08:42:09 GMT
Pragma:
- no-cache
RequestId:
- - a5c11145-527e-49cf-869b-e395c3d51810
+ - ebd8b74a-ca90-4303-bcfa-4f977b99d2b4
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -10769,17 +10530,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -10788,15 +10549,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:21:26 GMT
+ - Wed, 20 May 2026 08:42:10 GMT
Pragma:
- no-cache
RequestId:
- - f57034a0-4134-4f96-84bb-e4e2cb842858
+ - 29e01bb2-7391-493a-b7e2-d2fffaefb287
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -10822,17 +10583,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -10841,15 +10602,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:21:26 GMT
+ - Wed, 20 May 2026 08:42:11 GMT
Pragma:
- no-cache
RequestId:
- - 24fd9a7a-2cba-4335-9336-0c79f753cea7
+ - 40ab3bd2-6c06-46ca-951a-864b3afc3f3b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -10875,17 +10636,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -10894,15 +10655,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:21:27 GMT
+ - Wed, 20 May 2026 08:42:11 GMT
Pragma:
- no-cache
RequestId:
- - 5e942328-27f5-4450-9900-038f4690ea6a
+ - 3f467bdc-e622-4584-94cb-467d9691d45b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -10928,17 +10689,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -10947,15 +10708,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:21:28 GMT
+ - Wed, 20 May 2026 08:42:12 GMT
Pragma:
- no-cache
RequestId:
- - 4bc4a050-32a1-4af5-a39b-8ad746c38e08
+ - e69ea904-4f65-4500-8eea-499dc055e61e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -10981,16 +10742,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -10999,15 +10763,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:21:28 GMT
+ - Wed, 20 May 2026 08:42:13 GMT
Pragma:
- no-cache
RequestId:
- - 1dc7fc29-5281-447e-8b29-12dc9eb2238f
+ - 4a24ce2c-e5ab-492b-ab46-0e0c4f3459fa
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -11033,17 +10797,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -11052,15 +10816,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:21:29 GMT
+ - Wed, 20 May 2026 08:42:13 GMT
Pragma:
- no-cache
RequestId:
- - 6221b0fa-6ed0-4e65-9ca7-3d341634b3dd
+ - 1ca13069-a508-4be8-9829-ca73e960b7ad
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -11086,17 +10850,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -11105,15 +10869,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:21:31 GMT
+ - Wed, 20 May 2026 08:42:14 GMT
Pragma:
- no-cache
RequestId:
- - 993f6f30-1199-4d00-9c74-6b109160946c
+ - 9c90578b-f230-4b10-aca4-2e450e3759a7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -11139,21 +10903,23 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items
response:
body:
- string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90",
- "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7",
- "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54"}, {"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc",
- "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}]}'
+ string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3",
+ "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId":
+ "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"},
+ {"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline", "displayName":
+ "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -11162,15 +10928,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '437'
+ - '425'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:21:32 GMT
+ - Wed, 20 May 2026 08:42:14 GMT
Pragma:
- no-cache
RequestId:
- - bc350e43-fac9-4997-90e6-300200c921d7
+ - 19618130-0486-4e68-8a1b-a0f39fc457fb
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -11196,17 +10962,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -11215,15 +10981,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:21:31 GMT
+ - Wed, 20 May 2026 08:42:15 GMT
Pragma:
- no-cache
RequestId:
- - 1f9a2d2a-94e7-407d-9bf1-4e607e143039
+ - e289757d-a367-4f37-9e59-4be568514b1e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -11249,17 +11015,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -11268,15 +11034,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:21:33 GMT
+ - Wed, 20 May 2026 08:42:16 GMT
Pragma:
- no-cache
RequestId:
- - 84be72f5-9e5f-462d-9233-5091ee93a4a6
+ - f4cce5f3-ce1a-4ce1-b7d3-7e7a106240d3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -11302,17 +11068,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -11321,15 +11087,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:21:33 GMT
+ - Wed, 20 May 2026 08:42:17 GMT
Pragma:
- no-cache
RequestId:
- - 912bc665-c373-4bae-a9c3-4df34de5d995
+ - 6817f28a-2a8c-4fa3-b376-66accfcf55d2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -11355,57 +11121,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
- response:
- body:
- string: '{"requestId": "686c7408-7768-412d-80aa-c0f6f9d5b6c1", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 7:22:25 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:21:34 GMT
- RequestId:
- - 686c7408-7768-412d-80aa-c0f6f9d5b6c1
- Retry-After:
- - '50'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -11414,15 +11140,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:22:28 GMT
+ - Wed, 20 May 2026 08:42:17 GMT
Pragma:
- no-cache
RequestId:
- - 05a0e304-36e8-4f1d-adc9-6b49742bb718
+ - 731b8cde-ea5a-40e6-9dcc-090562f078d9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -11448,16 +11174,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -11466,15 +11195,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:22:28 GMT
+ - Wed, 20 May 2026 08:42:18 GMT
Pragma:
- no-cache
RequestId:
- - 72adae07-166e-47a0-ab14-d0a06c7b4baf
+ - 40b566c2-c583-4a89-a83f-7a36dc6acb6f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -11500,17 +11229,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -11519,15 +11248,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:22:29 GMT
+ - Wed, 20 May 2026 08:42:18 GMT
Pragma:
- no-cache
RequestId:
- - 4d345e69-daba-4ffd-a163-a1eb457ca6e0
+ - 7e22925e-4bf5-4cc4-9809-ef54ca86cefe
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -11553,17 +11282,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -11572,15 +11301,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:22:30 GMT
+ - Wed, 20 May 2026 08:42:19 GMT
Pragma:
- no-cache
RequestId:
- - b69f1549-441e-48a2-939e-24e0fa6c8ee4
+ - a70cfd49-d09c-406c-b227-2758427816e9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -11606,17 +11335,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -11625,15 +11354,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:22:31 GMT
+ - Wed, 20 May 2026 08:42:19 GMT
Pragma:
- no-cache
RequestId:
- - 95214a30-d735-404c-85ac-e02578795bda
+ - a9d90acb-acdd-4907-a19b-a8925d4cd58b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -11659,21 +11388,23 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items
response:
body:
- string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90",
- "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7",
- "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54"}, {"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc",
- "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}]}'
+ string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3",
+ "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId":
+ "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"},
+ {"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline", "displayName":
+ "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -11682,15 +11413,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '437'
+ - '425'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:22:32 GMT
+ - Wed, 20 May 2026 08:42:21 GMT
Pragma:
- no-cache
RequestId:
- - 6dee60d8-9dc6-4c9d-866f-decfb1d252eb
+ - 657ce57c-d424-411d-87cd-a456229eab76
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -11716,17 +11447,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -11735,15 +11466,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:22:33 GMT
+ - Wed, 20 May 2026 08:42:22 GMT
Pragma:
- no-cache
RequestId:
- - 1cc2c328-f476-4d54-b4d6-b6d4fe4672b6
+ - bfc81c18-b2cd-4ac6-b970-471ea8311716
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -11769,17 +11500,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -11788,15 +11519,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:22:34 GMT
+ - Wed, 20 May 2026 08:42:22 GMT
Pragma:
- no-cache
RequestId:
- - c19ad541-0bd3-4cf5-9190-59fd41cff0c2
+ - 464d8fea-ca89-402c-a182-685939b5cd4e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -11822,17 +11553,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -11841,15 +11572,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:22:35 GMT
+ - Wed, 20 May 2026 08:42:22 GMT
Pragma:
- no-cache
RequestId:
- - 3b0e7416-fb48-4209-b18d-c7c97035cebc
+ - 55e2e601-85ed-41a4-8606-bba02464881e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -11875,17 +11606,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -11894,15 +11625,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:22:35 GMT
+ - Wed, 20 May 2026 08:42:24 GMT
Pragma:
- no-cache
RequestId:
- - 741a9450-8898-43a7-8d8c-2ef337e6f7b9
+ - 637f2202-8c84-4ecd-9086-5550a8725b55
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -11928,16 +11659,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -11946,15 +11680,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:22:36 GMT
+ - Wed, 20 May 2026 08:42:24 GMT
Pragma:
- no-cache
RequestId:
- - b3b343d7-486c-482d-82f7-17a16c5bcfcc
+ - 6712a511-e2ea-48db-bdc6-0a9914ffbb31
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -11980,17 +11714,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -11999,15 +11733,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:22:36 GMT
+ - Wed, 20 May 2026 08:42:25 GMT
Pragma:
- no-cache
RequestId:
- - 755eb885-e40d-493f-92d6-e717168e5b17
+ - fd93532f-0f41-424f-b19b-752475cab62b
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -12033,17 +11767,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -12052,15 +11786,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:22:37 GMT
+ - Wed, 20 May 2026 08:42:25 GMT
Pragma:
- no-cache
RequestId:
- - 9f957177-a3b5-44a2-b901-cb8d74bda89e
+ - 0ed43209-4617-47b9-a2d8-1e63798ddf5f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -12086,57 +11820,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"requestId": "3c849e62-35ad-419d-b128-f126227b2a8b", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 7:23:29 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:22:38 GMT
- RequestId:
- - 3c849e62-35ad-419d-b128-f126227b2a8b
- Retry-After:
- - '50'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
- response:
- body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -12145,15 +11839,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:23:31 GMT
+ - Wed, 20 May 2026 08:42:26 GMT
Pragma:
- no-cache
RequestId:
- - f6527957-4985-4f27-aafd-9ef6b2caa407
+ - f4d46d1f-200f-4e4a-a7c5-e8ff8f3c47a5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -12179,21 +11873,23 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items
response:
body:
- string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90",
- "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7",
- "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54"}, {"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc",
- "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}]}'
+ string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3",
+ "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId":
+ "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"},
+ {"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline", "displayName":
+ "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -12202,15 +11898,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '437'
+ - '425'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:23:32 GMT
+ - Wed, 20 May 2026 08:42:28 GMT
Pragma:
- no-cache
RequestId:
- - b5752b0c-7eb6-4622-b446-66734d489894
+ - 69d754fb-dce6-4978-b6e8-216d8f3cd237
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -12236,17 +11932,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -12255,15 +11951,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:23:33 GMT
+ - Wed, 20 May 2026 08:42:28 GMT
Pragma:
- no-cache
RequestId:
- - 3f17ed4f-7639-4da6-91a0-f529e8bb85b3
+ - da0491d0-299c-4021-be0f-fc2604e9e65e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -12289,17 +11985,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -12308,15 +12004,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:23:34 GMT
+ - Wed, 20 May 2026 08:42:29 GMT
Pragma:
- no-cache
RequestId:
- - 78256d0e-ab3b-49ff-a2ac-55c5d0ca332c
+ - 0a5fd3a6-e40c-47a0-9977-9298b4e2f43d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -12342,17 +12038,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -12361,15 +12057,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:23:34 GMT
+ - Wed, 20 May 2026 08:42:30 GMT
Pragma:
- no-cache
RequestId:
- - 27f2a99a-d548-4cbb-9c99-a340b78d082a
+ - 05da93b4-00fe-4184-86e5-f442a24bc95c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -12397,9 +12093,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items/2ff7ab09-22d6-4330-812e-786cc2b98dcc
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items/31ab844f-cd18-44cd-9448-93944edfccf0
response:
body:
string: ''
@@ -12415,11 +12111,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:23:35 GMT
+ - Wed, 20 May 2026 08:42:31 GMT
Pragma:
- no-cache
RequestId:
- - 4681ea4d-74ea-4f58-80fb-0cd36c235d42
+ - 143f26b3-e5c0-49cc-9a4a-ea97b6a30776
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -12445,16 +12141,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -12463,15 +12162,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:23:36 GMT
+ - Wed, 20 May 2026 08:42:32 GMT
Pragma:
- no-cache
RequestId:
- - e067a779-ac5a-4221-bddb-dfb7a856b225
+ - d0410552-1ee6-4961-8c02-f5f7c54735db
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -12497,17 +12196,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -12516,15 +12215,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:23:37 GMT
+ - Wed, 20 May 2026 08:42:33 GMT
Pragma:
- no-cache
RequestId:
- - c5dd6c1d-c8a0-4f36-beb7-e62949fabc37
+ - dce8ab73-cf39-4143-aaac-6e4c7469319a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -12550,17 +12249,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -12569,15 +12268,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:23:38 GMT
+ - Wed, 20 May 2026 08:42:33 GMT
Pragma:
- no-cache
RequestId:
- - d419cef1-ac54-413d-979b-04795d12d568
+ - fe4894df-9c94-47a0-b6db-44ed263b560c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -12603,19 +12302,20 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items
response:
body:
- string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90",
- "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7",
- "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54"}]}'
+ string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3",
+ "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId":
+ "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -12624,15 +12324,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '375'
+ - '367'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:23:39 GMT
+ - Wed, 20 May 2026 08:42:33 GMT
Pragma:
- no-cache
RequestId:
- - 5ab28735-f6fc-4f80-9d9b-594494f34616
+ - 9512310d-cd4e-49d2-8eab-c3837c8c49b3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -12658,17 +12358,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -12677,15 +12377,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:23:40 GMT
+ - Wed, 20 May 2026 08:42:34 GMT
Pragma:
- no-cache
RequestId:
- - f02777b0-0a16-4ad0-96dd-c72331216b00
+ - 17efbf91-f493-4030-a19a-1a4b2cf76186
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -12711,17 +12411,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -12730,15 +12430,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:23:40 GMT
+ - Wed, 20 May 2026 08:42:35 GMT
Pragma:
- no-cache
RequestId:
- - 17ab1099-ebb2-490f-bcfc-e4199d1c0cc5
+ - 97b75129-48af-48ad-83a7-6efcf7d42e5a
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -12766,9 +12466,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items/026af425-a57f-470f-a2b7-96dd24537cb7
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items/9d94eef1-2e72-41a1-97a2-417c7c9ed7d3
response:
body:
string: ''
@@ -12784,11 +12484,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:23:41 GMT
+ - Wed, 20 May 2026 08:42:35 GMT
Pragma:
- no-cache
RequestId:
- - 586b6857-84eb-4733-822b-57b7066afe10
+ - 34713326-cf60-4159-996a-14d93b3302b3
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -12814,16 +12514,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -12832,15 +12535,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:23:42 GMT
+ - Wed, 20 May 2026 08:42:37 GMT
Pragma:
- no-cache
RequestId:
- - 36ef5d65-9cb0-4373-ba40-3488f0757b65
+ - 2defdae7-c07e-4527-9226-e795881ed92f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -12866,17 +12569,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -12885,15 +12588,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:23:42 GMT
+ - Wed, 20 May 2026 08:42:38 GMT
Pragma:
- no-cache
RequestId:
- - 271ce54c-1070-4627-a6e1-aff4e79f5b99
+ - b02f998f-6010-450a-9ba4-472920b9f084
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -12919,17 +12622,18 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items
response:
body:
- string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90",
- "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a"}]}'
+ string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc",
+ "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -12938,15 +12642,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '315'
+ - '303'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:23:43 GMT
+ - Wed, 20 May 2026 08:42:38 GMT
Pragma:
- no-cache
RequestId:
- - 63fdef2e-445d-4439-b698-26c932ad63f6
+ - 16fc56a9-c8c5-42e4-8e25-b63bcf27b6e9
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -12972,17 +12676,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -12991,15 +12695,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:23:44 GMT
+ - Wed, 20 May 2026 08:42:39 GMT
Pragma:
- no-cache
RequestId:
- - f2b551d5-aa78-47be-8e4e-edea901f2f83
+ - 873bc608-f8f9-4617-a8ee-36c5d0cecd1c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -13027,9 +12731,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items/41915c7d-5855-4a08-98d4-ab113bb4dc90
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items/362ea567-b1e9-4245-8637-235ff3651b79
response:
body:
string: ''
@@ -13045,11 +12749,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:23:45 GMT
+ - Wed, 20 May 2026 08:42:40 GMT
Pragma:
- no-cache
RequestId:
- - a93cb2f9-8229-45a2-99a4-98381fa3cf42
+ - 73f633d6-f611-4810-bea1-e6b70a6b0f8d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -13075,16 +12779,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -13093,15 +12800,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:23:45 GMT
+ - Wed, 20 May 2026 08:42:40 GMT
Pragma:
- no-cache
RequestId:
- - 7d6d6df9-5925-4500-98d2-9424eabf53e3
+ - 3fb7ab00-0099-4c49-bada-72556003c6bd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -13127,15 +12834,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items
response:
body:
- string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -13144,15 +12851,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '233'
+ - '221'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:23:46 GMT
+ - Wed, 20 May 2026 08:42:41 GMT
Pragma:
- no-cache
RequestId:
- - 9911b738-3580-4853-b6e5-d660d52a493a
+ - cbfd7864-1cb9-4c4e-8168-f560a969b631
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -13180,9 +12887,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items/ad72984e-0fb6-4852-a478-dd3821416ce4
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items/70d2a102-4825-405b-9a3f-dc5f3944e33b
response:
body:
string: ''
@@ -13198,11 +12905,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:23:46 GMT
+ - Wed, 20 May 2026 08:42:41 GMT
Pragma:
- no-cache
RequestId:
- - 8cc2a3a7-d8f5-49c8-8692-a848a24c81c8
+ - 05a9da61-7b80-46dd-bcbe-f14e5bd43de2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -13228,16 +12935,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -13246,15 +12956,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:23:47 GMT
+ - Wed, 20 May 2026 08:42:41 GMT
Pragma:
- no-cache
RequestId:
- - aa1e47a4-f644-4fb0-b381-6e6ca9f621db
+ - d5661b23-c88a-4703-9882-77ee5bbebaa2
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -13280,14 +12990,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items
response:
body:
- string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -13296,15 +13005,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '177'
+ - '166'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:23:48 GMT
+ - Wed, 20 May 2026 08:42:42 GMT
Pragma:
- no-cache
RequestId:
- - 84084fad-07b0-4abd-95d4-e80a053f1885
+ - 9b00981e-c29d-479d-8077-f720e9830e82
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -13332,9 +13041,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items/e0612997-1710-47a0-8195-286fc037e24c
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items/5a2e7c38-50e8-442d-b973-118e8a666892
response:
body:
string: ''
@@ -13350,11 +13059,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:23:49 GMT
+ - Wed, 20 May 2026 08:42:43 GMT
Pragma:
- no-cache
RequestId:
- - 428f57ef-58d1-4916-a8b4-0748534908e3
+ - f605bbd7-5fe0-4cca-bee7-8818a55d5812
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -13380,16 +13089,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -13398,15 +13110,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:23:49 GMT
+ - Wed, 20 May 2026 08:42:43 GMT
Pragma:
- no-cache
RequestId:
- - c461d942-42f3-4633-b487-0e12fc91b981
+ - 6d01ea06-71f7-4f1f-ba70-cf163dd71f0d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -13432,57 +13144,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"requestId": "802efe81-02e3-4da2-9748-5cb51df95184", "errorCode":
- "RequestBlocked", "message": "Request is blocked by the upstream service until:
- 2/6/2026 7:24:33 AM (UTC)", "isRetriable": true}'
- headers:
- Content-Length:
- - '188'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:23:49 GMT
- RequestId:
- - 802efe81-02e3-4da2-9748-5cb51df95184
- Retry-After:
- - '43'
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- x-ms-public-api-error-code:
- - RequestBlocked
- status:
- code: 429
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
- response:
- body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -13491,15 +13163,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:24:36 GMT
+ - Wed, 20 May 2026 08:42:44 GMT
Pragma:
- no-cache
RequestId:
- - 64d10740-3e85-4812-9ef8-541c05b40ef5
+ - ac83a3b1-27a3-488c-9162-be772ed18c61
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -13525,17 +13197,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -13544,15 +13216,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:24:36 GMT
+ - Wed, 20 May 2026 08:42:44 GMT
Pragma:
- no-cache
RequestId:
- - fc167a31-878c-4b36-8afb-52c0837546af
+ - e0fa920d-29a4-45cb-ba30-269c22f72c87
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -13578,17 +13250,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"},
- {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009",
- "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"},
+ {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009",
+ "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -13597,15 +13269,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:24:37 GMT
+ - Wed, 20 May 2026 08:42:45 GMT
Pragma:
- no-cache
RequestId:
- - e4fe4715-b394-4c16-b56c-5a3e42d95e46
+ - 33177b6c-8509-4299-90d8-97a0bbf9210e
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -13633,9 +13305,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders/0f7dddf1-2640-4896-8afb-e5e75e01f71a
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders/fffd0349-9469-4178-a508-c3bc2a5926cd
response:
body:
string: ''
@@ -13651,11 +13323,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:24:38 GMT
+ - Wed, 20 May 2026 08:42:46 GMT
Pragma:
- no-cache
RequestId:
- - c514f590-68a4-4330-8d9e-d6aab9a6130b
+ - aa7dcedd-6539-452d-b251-51a3c4f9fff5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -13681,16 +13353,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -13699,15 +13374,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:24:39 GMT
+ - Wed, 20 May 2026 08:42:47 GMT
Pragma:
- no-cache
RequestId:
- - dc83f2c9-6e0e-4bdd-bbd7-af6031911040
+ - 012ffd4f-142b-44f1-8cfe-0d162f0680ea
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -13733,15 +13408,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -13750,15 +13425,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '204'
+ - '202'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:24:40 GMT
+ - Wed, 20 May 2026 08:42:46 GMT
Pragma:
- no-cache
RequestId:
- - 16b30e18-0dbd-4b69-b7a1-afd662ae5a1c
+ - dae708ed-b329-4eba-943b-4ac4ae9e7053
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -13784,15 +13459,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id":
- "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId":
- "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id":
+ "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId":
+ "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -13801,15 +13476,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '204'
+ - '202'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:24:40 GMT
+ - Wed, 20 May 2026 08:42:48 GMT
Pragma:
- no-cache
RequestId:
- - 08510f1f-7fe7-420b-87c3-d7508ca6936e
+ - c3f0573e-689b-426f-99f1-51ac89e5f90f
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -13837,9 +13512,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders/8bc050b1-0bfd-472d-8dca-319b9d248a54
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders/c29d7414-de5d-4d2f-b142-38b5b29843cd
response:
body:
string: ''
@@ -13855,11 +13530,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:24:41 GMT
+ - Wed, 20 May 2026 08:42:48 GMT
Pragma:
- no-cache
RequestId:
- - 982daa65-4027-4aae-a89c-89cc08167491
+ - 6c8ef203-61c2-46f3-a8b9-8b6b36624f0d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -13885,16 +13560,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -13903,15 +13581,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:24:43 GMT
+ - Wed, 20 May 2026 08:42:49 GMT
Pragma:
- no-cache
RequestId:
- - 95e89ebd-545f-43b3-a57c-5330ba187779
+ - 4b12eb84-51cf-49ed-82a3-a74556478b83
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -13937,13 +13615,13 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName":
- "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}'
+ string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName":
+ "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -13952,15 +13630,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '144'
+ - '143'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:24:43 GMT
+ - Wed, 20 May 2026 08:42:49 GMT
Pragma:
- no-cache
RequestId:
- - a6877471-ccd9-4744-a1e7-50939ef24ff5
+ - ef7b5f6f-55bf-44fb-8fa3-6401164339d5
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -13988,9 +13666,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders/5ac60325-e9cc-4450-86c3-95d68719a15a
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders/a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7
response:
body:
string: ''
@@ -14006,11 +13684,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:24:44 GMT
+ - Wed, 20 May 2026 08:42:50 GMT
Pragma:
- no-cache
RequestId:
- - 9f4ee4a5-9799-4467-8033-cc1cc6479ad2
+ - 49ba596d-9d02-4cd5-8657-e3248a1c05dd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -14036,16 +13714,19 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -14054,15 +13735,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2882'
+ - '2698'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:24:44 GMT
+ - Wed, 20 May 2026 08:42:50 GMT
Pragma:
- no-cache
RequestId:
- - 150c5053-0dbc-4de7-865c-12cd3d2db36a
+ - d267eae4-ff43-4987-8a73-f61bed00c7f7
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -14088,9 +13769,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items
response:
body:
string: '{"value": []}'
@@ -14106,11 +13787,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:24:45 GMT
+ - Wed, 20 May 2026 08:42:51 GMT
Pragma:
- no-cache
RequestId:
- - 50c2abfa-0f80-4398-8c4f-404f6f84fbce
+ - c95b648e-f3e9-4847-af28-acda57eea8f8
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -14138,9 +13819,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc
response:
body:
string: ''
@@ -14156,11 +13837,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:24:47 GMT
+ - Wed, 20 May 2026 08:42:52 GMT
Pragma:
- no-cache
RequestId:
- - 19d0bb76-b852-46e2-b02a-3e54e5ab6172
+ - c42e7cbf-51a8-4df5-9830-97095af2cfac
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -14186,15 +13867,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
- {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"},
+ {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002",
+ "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -14203,15 +13886,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2843'
+ - '2660'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:24:47 GMT
+ - Wed, 20 May 2026 08:42:52 GMT
Pragma:
- no-cache
RequestId:
- - 05550cf2-9bd6-45fe-a89c-22ea2699a796
+ - 962ffcc5-75c6-45fd-bd68-505f1e97cedf
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -14237,21 +13920,23 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items
response:
body:
- string: '{"value": [{"id": "ef61ccc3-71c4-4ff2-9554-e52e4a549b14", "type": "Notebook",
- "displayName": "fabcli000003", "workspaceId":
- "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "6da7abe9-44db-49be-a885-48f74490660f",
- "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "8487c193-5930-4805-a9dc-ddfe0e58f3c8",
- "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe"}, {"id": "a2a09ffc-826f-4cef-b00d-ccef7f25dea0",
- "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId":
- "6fd12cfb-7dc9-47c3-b649-5c146f4ce735"}, {"id": "fc2e306d-4424-4295-9eca-19cfd2f979e4",
- "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId":
- "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1"}]}'
+ string: '{"value": [{"id": "38a86bcc-82f4-4f58-9cba-c8aac226aa5d", "type": "Notebook",
+ "displayName": "fabcli000003", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "971e55ca-ba5d-47d9-88df-235b11e7e5cc", "type": "DataPipeline", "displayName":
+ "fabcli000004", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "0e010915-e8ca-4517-917d-c0e09abec2b2", "type": "SparkJobDefinition",
+ "displayName": "fabcli000006", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d",
+ "folderId": "a7a0457b-c329-46d9-9633-d97806acc7d7"}, {"id": "69eb599d-1afa-4d77-90f2-ee50fc819cbe",
+ "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId":
+ "2b905c52-4520-4342-a846-90e8641a367d", "folderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2"},
+ {"id": "24d03dfd-5785-4ca9-bdf9-2b9e79a5d7c1", "type": "DataPipeline", "displayName":
+ "fabcli000010", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d",
+ "folderId": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -14260,15 +13945,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '436'
+ - '422'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:24:48 GMT
+ - Wed, 20 May 2026 08:42:53 GMT
Pragma:
- no-cache
RequestId:
- - fa0e0f2b-5766-4414-9746-aacc2e0d54a5
+ - d67c8ed0-c410-4686-b6fd-996a9c11cdd6
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -14294,17 +13979,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName":
- "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id":
- "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"},
- {"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009",
- "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName":
+ "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id":
+ "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId":
+ "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009",
+ "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -14313,15 +13998,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '240'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:24:49 GMT
+ - Wed, 20 May 2026 08:42:53 GMT
Pragma:
- no-cache
RequestId:
- - 6e36bed5-d25e-4a06-b28c-408bb4f67912
+ - 1cf10fdd-2f32-437f-909a-1d94129bccdd
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -14347,17 +14032,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName":
- "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id":
- "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"},
- {"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009",
- "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName":
+ "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id":
+ "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId":
+ "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009",
+ "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -14366,15 +14051,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '240'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:24:50 GMT
+ - Wed, 20 May 2026 08:42:54 GMT
Pragma:
- no-cache
RequestId:
- - 793adff6-581a-417a-bf36-45de14f7d01c
+ - d7fd7b16-3063-406e-8c0a-c0f975b9c479
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -14400,17 +14085,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True
response:
body:
- string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName":
- "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id":
- "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId":
- "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"},
- {"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009",
- "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}'
+ string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName":
+ "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id":
+ "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId":
+ "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"},
+ {"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009",
+ "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -14419,15 +14104,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '243'
+ - '240'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:24:50 GMT
+ - Wed, 20 May 2026 08:42:54 GMT
Pragma:
- no-cache
RequestId:
- - 4181ee03-8419-42af-87f4-6d2e929c54a4
+ - aa70db7e-35ca-44dd-9a5f-35d585d3b798
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -14455,9 +14140,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: DELETE
- uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40
+ uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d
response:
body:
string: ''
@@ -14473,11 +14158,11 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Fri, 06 Feb 2026 07:24:52 GMT
+ - Wed, 20 May 2026 08:42:55 GMT
Pragma:
- no-cache
RequestId:
- - 45b1c4d4-219a-4e3f-8dc6-09415c21b7e0
+ - 0453a382-a4da-47d7-ae52-07317d642f45
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_workspace_type_mismatch_failure.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_workspace_type_mismatch_failure.yaml
index 3026193a4..69a736f50 100644
--- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_workspace_type_mismatch_failure.yaml
+++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_workspace_type_mismatch_failure.yaml
@@ -11,14 +11,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -27,15 +28,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:40:06 GMT
+ - Wed, 20 May 2026 08:56:58 GMT
Pragma:
- no-cache
RequestId:
- - a2c9a80e-0f71-41bb-9926-453d2f45482b
+ - b5c38f58-d47d-40cf-b97a-8c8357dca21d
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -61,14 +62,15 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
uri: https://api.fabric.microsoft.com/v1/workspaces
response:
body:
string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName":
- "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897",
- "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
+ "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1",
+ "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "",
+ "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}'
headers:
Access-Control-Expose-Headers:
- RequestId
@@ -77,15 +79,15 @@ interactions:
Content-Encoding:
- gzip
Content-Length:
- - '2805'
+ - '2621'
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:40:07 GMT
+ - Wed, 20 May 2026 08:56:59 GMT
Pragma:
- no-cache
RequestId:
- - 201ae3fe-3368-4cbd-a060-9ae34d38dbb4
+ - fbe7bf88-e832-4ec8-809e-919748889cc0
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
@@ -111,9 +113,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - ms-fabric-cli-test/1.3.1
+ - ms-fabric-cli-test/1.6.1
method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items
+ uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items
response:
body:
string: '{"value": []}'
@@ -129,59 +131,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Fri, 06 Feb 2026 07:40:08 GMT
+ - Wed, 20 May 2026 08:57:00 GMT
Pragma:
- no-cache
RequestId:
- - a6061482-99e5-427c-8710-9f58dff8f6fc
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - deny
- home-cluster-uri:
- - https://wabi-us-central-b-primary-redirect.analysis.windows.net/
- request-redirected:
- - 'true'
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json
- User-Agent:
- - ms-fabric-cli-test/1.3.1
- method: GET
- uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/folders?recursive=True
- response:
- body:
- string: '{"value": []}'
- headers:
- Access-Control-Expose-Headers:
- - RequestId
- Cache-Control:
- - no-store, must-revalidate, no-cache
- Content-Encoding:
- - gzip
- Content-Length:
- - '32'
- Content-Type:
- - application/json; charset=utf-8
- Date:
- - Fri, 06 Feb 2026 07:40:08 GMT
- Pragma:
- - no-cache
- RequestId:
- - d13ae0c9-acae-4bc1-8257-91db72de5b3e
+ - 04ecbb5e-4645-4fc6-87d2-d609a652dc29
Strict-Transport-Security:
- max-age=31536000; includeSubDomains
X-Content-Type-Options:
diff --git a/tests/test_utils/test_fab_custom_exception.py b/tests/test_utils/test_fab_custom_exception.py
index d321717b4..6f79d8fb4 100644
--- a/tests/test_utils/test_fab_custom_exception.py
+++ b/tests/test_utils/test_fab_custom_exception.py
@@ -1,7 +1,15 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
-from fabric_cli.core.fab_exceptions import FabricCLIError
+import json
+
+from fabric_cli.core.fab_exceptions import (
+ DEFAULT_ERROR_CODE,
+ AzureAPIError,
+ FabricAPIError,
+ FabricCLIError,
+ OnelakeAPIError,
+)
def test_custom_error_message():
@@ -17,3 +25,104 @@ def test_custom_error_message_without_period():
def test_custom_error_formatted_message_with_status_code():
error = FabricCLIError("An error occurred.", status_code=404)
assert error.formatted_message() == "[404] An error occurred"
+
+
+def test_fabric_api_error_valid_json_with_request_id():
+ payload = json.dumps(
+ {
+ "errorCode": "ItemNotFound",
+ "message": "The requested item was not found.",
+ "requestId": "abc-123",
+ "moreDetails": [],
+ }
+ )
+ error = FabricAPIError(payload)
+
+ assert error.status_code == "ItemNotFound"
+ assert error.message == "The requested item was not found"
+ assert error.request_id == "abc-123"
+ assert error.more_details == []
+
+
+def test_fabric_api_error_valid_json_without_request_id():
+ payload = json.dumps(
+ {
+ "errorCode": "Unauthorized",
+ "message": "Access denied.",
+ }
+ )
+ error = FabricAPIError(payload)
+
+ assert error.status_code == "Unauthorized"
+ assert error.request_id is None
+ # formatted_message should not append a request-id line
+ assert "Request Id" not in error.formatted_message(verbose=True)
+
+
+def test_fabric_api_error_non_json_body_falls_back_to_raw_text():
+ raw = "Internal Server Error"
+ error = FabricAPIError(raw)
+
+ assert error.message == raw.rstrip(".")
+ assert error.status_code is None
+ assert error.request_id is None
+ assert error.more_details == []
+
+
+def test_fabric_api_error_non_dict_json_falls_back_to_raw_text():
+ for raw in ('"just a string"', "[1, 2, 3]", "42", "true"):
+ error = FabricAPIError(raw)
+ assert error.message == raw.rstrip(".")
+ assert error.status_code is None
+ assert error.request_id is None
+ assert error.more_details == []
+
+
+def test_fabric_api_error_formatted_message_non_json_no_request_id_line():
+ error = FabricAPIError("Gateway Timeout")
+ formatted = error.formatted_message(verbose=True)
+ assert "Request Id" not in formatted
+ assert "Gateway Timeout" in formatted
+
+
+def test_fabric_api_error_none_input_falls_back_to_default_message():
+ error = FabricAPIError(None)
+ assert error.message == FabricCLIError(None).message
+ assert error.status_code is None
+ assert error.request_id is None
+ assert error.more_details == []
+
+
+def test_fabric_cli_error_status_code_omitted_uses_default():
+ error = FabricCLIError("boom")
+ assert error.status_code == DEFAULT_ERROR_CODE
+
+
+def test_fabric_cli_error_status_code_omitted_no_args_uses_default():
+ error = FabricCLIError()
+ assert error.status_code == DEFAULT_ERROR_CODE
+
+
+def test_fabric_cli_error_status_code_explicit_none_is_preserved():
+ error = FabricCLIError("boom", status_code=None)
+ assert error.status_code is None
+ # And formatted output must omit the bracketed code prefix.
+ assert error.formatted_message() == "boom"
+ assert str(error) == "boom"
+
+
+def test_fabric_api_error_explicit_none_status_code_preserved_on_fallback():
+ # Non-JSON body triggers the fallback path that forwards error_code=None.
+ error = FabricAPIError("Internal Server Error")
+ assert error.status_code is None
+
+
+def test_onelake_api_error_explicit_none_status_code_preserved_on_fallback():
+ # Missing "error" object -> code stays None and must be preserved.
+ error = OnelakeAPIError("not json at all")
+ assert error.status_code is None
+
+
+def test_azure_api_error_explicit_none_status_code_preserved_on_fallback():
+ error = AzureAPIError("not json at all")
+ assert error.status_code is None