action files_get_settings_changes { label: "List Settings Changes" description: "List Settings Changes" provider: files method: GET path: "/settings_changes" encoding: json input: { type: "object" properties: { cursor: { type: "string" } filter: { type: "object" } filter_gt: { type: "object" } filter_gteq: { type: "object" } filter_like: { type: "object" } filter_lt: { type: "object" } filter_lteq: { type: "object" } per_page: { type: "integer" format: "int32" } sort_by: { type: "object" } } additionalProperties: false } output: { type: "array" items: { type: "object" description: "List Settings Changes" properties: { changes: { type: "array" description: "Markdown-formatted change messages." items: { type: "string" } } created_at: { type: "string" format: "date-time" description: "The time this change was made" } user_id: { type: "integer" format: "int32" description: "The user id responsible for this change" } user_is_files_support: { type: "boolean" description: "true if this change was performed by Files.com support." } username: { type: "string" description: "The username of the user responsible for this change" } } } } }