action motaword_get_permissions { label: "View your permissions" description: "View a list of permissions that your user account is authorized for, configured either by default, or by your account administator." provider: motaword method: GET path: "/permissions" 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" } } } } } permissions: { type: "array" items: { type: "string" } } } } }