action sinao_app_settings_update { label: "Update app config" description: "General settings of an app. Can be modified in app" provider: sinao method: POST path: "/apps/{appId}/settings" encoding: json input: { type: "object" properties: { key: { type: "string" } settings: { type: "object" } value: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { code: { type: "integer" } message: { type: "string" } type: { type: "string" } } } }