action motaword_get_comments { label: "View all project comments" description: "View a list of activity comments in the project." provider: motaword method: GET path: "/projects/{projectId}/comments" encoding: json input: { type: "object" properties: { page: { type: "integer" format: "int64" } per_page: { type: "integer" format: "int64" } projectId: { type: "integer" format: "int64" } } required: ["projectId"] additionalProperties: false } output: { type: "object" properties: { activities: { type: "array" items: { type: "object" required: ["comment"] properties: { comment: { type: "string" description: "Comment text." } commented_at: { type: "integer" format: "int64" description: "Unix epoch time" } id: { type: "integer" format: "int64" } links: { type: "object" } } } } meta: { type: "object" properties: { paging: { type: "object" properties: { count: { type: "integer" format: "int64" } links: { type: "object" } page: { type: "integer" format: "int64" } per_page: { type: "integer" format: "int64" } total_count: { type: "integer" format: "int64" } } } } } } } }