action getpostman_single_workspace { label: "Single workspace" description: "Access the contents of a workspace that is accessible to you using its id (`id`). Includes the collections, environments, mocks and monitors of that workspace.\n\n> Requires API Key as `X-Api-Key` request header or `apikey` URL query parameter." provider: getpostman method: GET path: "/workspaces/{workspace_id}" encoding: json output: { type: "object" properties: { workspace: { type: "object" properties: { collections: { type: "array" items: { type: "object" properties: { id: { type: "string" } name: { type: "string" } uid: { type: "string" } } } } description: { type: "string" } environments: { type: "array" items: { type: "object" properties: { id: { type: "string" } name: { type: "string" } uid: { type: "string" } } } } id: { type: "string" } name: { type: "string" } type: { type: "string" } } } } } }