action motaword_get_available_corporate_permissions_by_id { label: "Get a list of available permissions for this corporate account. They are used when assigning permissions to corporate users." description: "Get a list of available permissions for this corporate account. They are used when assigning permissions to corporate users." provider: motaword method: GET path: "/corporates/{corporateId}/permissions" encoding: json input: { type: "object" properties: { corporateId: { type: "integer" format: "int64" } } required: ["corporateId"] 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" } } } } } permissions: { type: "array" items: { type: "string" } } } } }