action motaword_get_continuous_project_documents { label: "View continuous documents" description: "View the documents under this continuous project" provider: motaword method: GET path: "/continuous_projects/{projectId}/documents" encoding: json input: { type: "object" properties: { filterByLanguage: { type: "string" } projectId: { type: "integer" format: "int64" } } required: ["projectId"] additionalProperties: false } output: { type: "object" properties: { documents: { type: "array" items: { type: "object" properties: { billed_word_count: { type: "integer" format: "int64" } id: { type: "string" } links: { type: "object" } name: { type: "string" } post_edit_enabled: { type: "boolean" } project_id: { type: "string" } source_language: { type: "string" } target_languages: { type: "array" items: { type: "string" } } word_count: { type: "integer" format: "int64" } } } } 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" } } } } } } } }