action motaword_get_document_translations_for_language { label: "View strings and translations of a document for target language" description: "View the strings and their translations in the given target language for the specified source document. The list of translations is live if your project is not completed yet. 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: "/projects/{projectId}/documents/{documentId}/translations/{language}" encoding: json input: { type: "object" properties: { documentId: { type: "integer" format: "int64" } language: { type: "string" } projectId: { type: "integer" format: "int64" } } required: ["documentId", "language", "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" } } } } }