action orbit_get_workspace_slug_organizations { label: "List organizations in a workspace" provider: orbit method: GET path: "/{workspace_slug}/organizations" encoding: json input: { type: "object" properties: { direction: { type: "string" enum: ["ASC", "DESC"] } items: { type: "string" enum: ["10", "50", "100"] } page: { type: "string" } query: { type: "string" } sort: { type: "string" enum: ["name", "website", "members_count", "employees_count"] } workspace_slug: { type: "string" } } required: ["workspace_slug"] additionalProperties: false } output: { type: "object" additionalProperties: true } }