action getpostman_all_workspaces { label: "All workspaces" description: "The `/workspaces` endpoint returns a list of all [workspaces](https://www.getpostman.com/docs/v6/postman/workspaces/intro_to_workspaces) that is accessible by you. The list includes your own workspaces and the workspaces that you have access to.\n\nThe response contains an array of collection information containing the `name`, `id`, and `type` of each workspace.\n\n> Requires API Key as `X-Api-Key` request header or `apikey` URL query parameter." provider: getpostman method: GET path: "/workspaces" encoding: json output: { type: "object" properties: { workspaces: { type: "array" items: { type: "object" properties: { id: { type: "string" } name: { type: "string" } type: { type: "string" } } } } } } }