action motaword_get_translation_cache { label: "View cached strings translations in continuous project" description: "MotaWord caches your account intensively (and in a smart way) in real-time translation environments. This endpoint will return the currently cached strings and translations in your continuous translation project." provider: motaword method: GET path: "/continuous_projects/{projectId}/strings/cached" encoding: json input: { type: "object" properties: { flatten: { type: "boolean" } projectId: { type: "integer" format: "int64" } } required: ["projectId"] additionalProperties: false } output: { type: "object" description: "Continuous project cache for translations per target language." properties: { 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" } } } } } translations: { type: "object" } } } }