action sinao_app_policies_update { label: "Update police for an user" description: "Update police for an user on an app" provider: sinao method: POST path: "/apps/{appId}/access/{userId}" encoding: json input: { type: "object" properties: { policy_profile_id: { type: "integer" } userId: { type: "string" } } required: ["policy_profile_id", "userId"] additionalProperties: false } output: { 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" } } } }