action motaword_get_continuous_project_strings { label: "View strings and translations in continuous project" description: "View the strings and their translations in your continuous translation project, for all target languages. If you need the translated version of your source document/file, then you need to use package and download endpoints." provider: motaword method: GET path: "/continuous_projects/{projectId}/strings" encoding: json input: { type: "object" properties: { projectId: { type: "integer" format: "int64" } } required: ["projectId"] additionalProperties: false } output: { type: "object" 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: "array" items: { type: "object" } } } } }