action motaword_get_project_strings_for_language { label: "View strings and translations for target language" description: "View the strings and their translations in your translation project for the specified target language. 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}/strings/{language}" encoding: json input: { type: "object" properties: { language: { type: "string" } projectId: { type: "integer" format: "int64" } } required: ["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" } } } } }