action motaword_get_style_guides { label: "View style guides" description: "View a list of style guides in your project." provider: motaword method: GET path: "/projects/{projectId}/styleguides" encoding: json input: { type: "object" properties: { projectId: { type: "integer" format: "int64" } "with[]": { type: "array" items: { type: "string" enum: ["preview"] } } } required: ["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" } } } } } styleguides: { type: "array" items: { type: "object" properties: { id: { type: "integer" format: "int64" } links: { type: "object" } name: { type: "string" } uploaded_at: { type: "integer" format: "int64" description: "Unix epoch time" } } } } } } }