action motaword_get_activities { label: "Monitor project activities" description: "Get a list of real-time activities in the project, such as translation suggestion and translation approval." provider: motaword method: GET path: "/projects/{projectId}/activities" 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" properties: { activity_at: { type: "integer" format: "int64" description: "Unix epoch time" } id: { type: "integer" format: "int64" } links: { type: "object" } source_text: { type: "string" description: "Source text" } target_text: { type: "string" description: "Target text of the activity, which is actually the translation of the source text." } translator: { type: "integer" format: "int64" description: "Unique identifier of the translator/proofreader of this activity." } type: { type: "string" description: "Currently there are two available activity types; 'translated', 'proofread'." enum: ["translated", "proofread"] } } } } 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" } } } } } } } }