action motaword_get_user_groups { label: "View your user groups" description: "View the user groups that your user account belongs to. This is typically configured by your account administator's dashboard." provider: motaword method: GET path: "/user-groups" encoding: json 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" } } } } } user_groups: { type: "array" items: { type: "object" properties: { corporate_id: { type: "integer" format: "int64" } id: { type: "integer" format: "int64" } name: { type: "string" } permissions: { type: "array" items: { type: "string" } } } } } } } }