action motaword_get_continuous_project_file_strings { label: "View strings their translations in a continuous document" description: "View the strings from a document 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}/documents/{documentId}/strings" encoding: json input: { type: "object" properties: { documentId: { type: "integer" format: "int64" } projectId: { type: "integer" format: "int64" } } required: ["documentId", "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" } } } } }