action orbit_get_workspace_slug_organizations_organization_id_activities { label: "List member activities in an organization" provider: orbit method: GET path: "/{workspace_slug}/organizations/{organization_id}/activities" encoding: json input: { type: "object" properties: { activity_type: { type: "string" enum: ["content", "custom", "discord", "discourse", "github", "slack", "twitter"] } direction: { type: "string" enum: ["ASC", "DESC"] } items: { type: "string" enum: ["10", "50", "100"] } organization_id: { type: "string" } page: { type: "string" } sort: { type: "string" enum: ["occurred_at", "member"] } workspace_slug: { type: "string" } } required: ["organization_id", "workspace_slug"] additionalProperties: false } output: { type: "object" additionalProperties: true } }