action motaword_get_activity { label: "View an activity" description: "View the details of an activity in the project." provider: motaword method: GET path: "/projects/{projectId}/activities/{activityId}" 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: { 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"] } } } }