action sinao_app_policies_profiles_list { label: "Get profiles" description: "Get all profiles" provider: sinao method: GET path: "/apps/{appId}/access/profiles" encoding: json output: { type: "array" items: { type: "object" properties: { description: { type: "string" } homepage: { type: "string" format: "uri" } name: { type: "string" } restricted: { type: "boolean" } rights: { type: "array" description: "Routes list" items: { type: "string" } } visible: { type: "integer" } } } } }