action getpostman_delete_workspace { label: "Delete Workspace" description: "This endpoint allows you to delete an existing workspace.\n\nOn successful deletion of the workspace, the response returns the `id`.\n\n> Requires API Key as `X-Api-Key` request header or `apikey` URL query parameter." provider: getpostman method: DELETE path: "/workspaces/{workspace_id}" encoding: json output: { type: "object" properties: { workspace: { type: "object" properties: { id: { type: "string" } } } } } }