action motaword_get_continuous_projects { label: "View continuous projects" description: "View a list of continuous projects under your account. Continuous projects are those that are constantly updated, such as a CI/CD project, software project, website translation and such." provider: motaword method: GET path: "/continuous_projects" encoding: json input: { type: "object" properties: { type: { type: "string" enum: ["active"] } } 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" } } } } } projects: { type: "array" items: { type: "object" properties: { analytics_enabled: { type: "boolean" description: "Should we collect analytics data from Active for this continuous project?" } auto_start_postedit: { type: "boolean" description: "Immediately start post-editing project for translation requests that are applied MT." } created_at: { 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" } id: { type: "integer" format: "int64" } is_enabled: { type: "boolean" } last_activity_at: { 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" } links: { type: "object" } mt_enabled: { type: "boolean" description: "Immediately apply MT on translation requests if they are missing from TM." } mt_engine: { type: "string" description: "One of \"MOTAWORD\", \"GOOGLE\", \"AMAZON\", \"MS\". Default is \"MOTAWORD\"." } name: { type: "string" } postedit_enabled: { type: "boolean" description: "Get an instant quote for translation requests that are applied MT." } source_language: { type: "string" } status: { type: "string" description: "One of \"a => ACTIVE\", \"i => INACTIVE\", \"d => DELETED\", \"c => SCHEDULED CANCELLATION\", \"p => SCHEDULED CHANGE\"" } subscription: { type: "object" properties: { downgrade: { type: "array" description: "Stripe downgradable plan" items: { type: "string" } } payment_method: { type: "integer" description: "Stripe subscription plan payment card internal id" } period_end: { type: "string" format: "date-time" description: "Stripe plan period end" } plan_id: { type: "string" description: "Stripe subscription plan id" } plan_name: { type: "string" description: "Stripe subscription plan name" } price: { type: "string" description: "Stripe plan price" } products: { type: "array" items: { type: "object" } } schedule_name: { type: "string" description: "Stripe Scheduled plan period end" } schedule_start: { type: "string" format: "date-time" description: "Stripe Scheduled start date" } subscription_id: { type: "string" description: "Stripe subscription id for this project" } upgrade: { type: "array" description: "Stripe upgradable plan" items: { type: "string" } } withTrial: { format: "boolean" description: "Stripe plan trial" type: "object" } } } target_languages: { type: "array" items: { type: "string" } } type: { type: "string" description: "Continuous project type. We currently have only 2 types, NULL and \"active\"." } word_count: { type: "integer" format: "int64" } } } } } } }