action motaword_get_strings { label: "View account strings (translation memory)" description: "Get a list of all strings and their translations under your account, from all projects. This is your MotaWord translation memory. If you have the related permission, this endpoint will also return strings from your company account." provider: motaword method: GET path: "/strings" encoding: json input: { type: "object" properties: { page: { type: "integer" format: "int64" } source_language: { type: "string" } } 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" } } } } } strings: { type: "array" items: { type: "object" properties: { content: { type: "string" } language: { type: "string" } last_changed: { type: "string" format: "date-time" description: "the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z" } translations: { type: "array" items: { type: "object" properties: { content: { type: "string" } last_changed: { type: "string" format: "date-time" description: "the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z" } resource: { type: "string" } resource_id: { type: "string" } state: { type: "string" enum: ["Translated", "Approved"] } target_language: { type: "string" } } } } } } } } } }