action motaword_get_available_corporate_permissions { label: "View available permissions" description: "View a list of available permissions for your corporate account. They are used when assigning permissions to your corporate users." provider: motaword method: GET path: "/corporate/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" } } } } }