action motaword_get_blog_posts { label: "Get blog posts - ordered by created desc by default" provider: motaword method: GET path: "/blogs" encoding: json input: { type: "object" properties: { fallback: { type: "boolean" } locale: { type: "string" } page: { type: "integer" format: "int64" } per_page: { type: "integer" format: "int64" } } additionalProperties: false } output: { type: "object" properties: { articles: { type: "array" items: { type: "object" properties: { announcement_type: { type: "string" enum: ["article", "case", "famous-translators", "sales"] } author: { type: "string" } content: { type: "string" description: "Article content" } 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" } excerpt: { type: "string" description: "Article excerpt" } id: { type: "integer" format: "int64" } language: { type: "string" description: "language code" } links: { type: "object" } slug: { type: "string" } title: { type: "string" } topic: { type: "string" } } } } 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" } } } } } } } }