action getpostman_create_workspace { label: "Create Workspace" description: "This endpoint allows you to create a workspace and populate it with entities like `collections`, `environments`, `mocks` and `monitors` using their `uid`.\n\nOn successful creation of the workspace, the response returns the workspcae `name` and `id`.\n\n> Requires API Key as `X-Api-Key` request header or `apikey` URL query parameter." provider: getpostman method: POST path: "/workspaces" encoding: json input: { 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" } } } } mocks: { type: "array" items: { type: "object" properties: { id: { type: "string" } } } } monitors: { type: "array" items: { type: "object" properties: { id: { type: "string" } } } } name: { type: "string" } type: { type: "string" } } } } } output: { type: "object" properties: { workspace: { type: "object" properties: { id: { type: "string" } name: { type: "string" } } } } } }