action motaword_get_activity_comments { label: "View activity comments" description: "View a list of comments added to this activity." provider: motaword method: GET path: "/projects/{projectId}/activities/{activityId}/comments" encoding: json input: { type: "object" properties: { activityId: { type: "integer" format: "int64" } projectId: { type: "integer" format: "int64" } } required: ["activityId", "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" } } } } } } } }