action gamesparks_update_segment_query_filters_config_using_put { label: "updateSegmentQueryFiltersConfig" provider: gamesparks method: PUT path: "/restv2/game/{apiKey}/admin/segmentQueryFilters/config" encoding: json input: { type: "object" properties: { apiKey: { type: "string" } customFilters: { type: "array" items: { type: "object" properties: { key: { type: "string" } name: { type: "string" } options: { type: "array" items: { type: "object" } } type: { type: "string" } } } } hiddenFilters: { type: "array" items: { type: "string" } } } required: ["apiKey"] additionalProperties: false } output: { type: "object" additionalProperties: true } }