action motaword_get_sales_activities { label: "Get sales activities for a project" provider: motaword method: GET path: "/projects/{id}/sales/activities" encoding: json input: { type: "object" properties: { excludeOwner: { type: "string" } id: { type: "integer" format: "int64" } type: { type: "string" enum: ["EMAIL", "NOTE", "INCOMING_EMAIL", "TASK"] } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { activities: { type: "array" items: { type: "object" properties: { body: { type: "string" } created_at: { type: "integer" format: "int64" description: "timestamp" } created_by: { type: "string" } type: { type: "string" } } } } } } }