Labs features can be altered thry API call?

We are upgrading to 7.20.60 and its look like the following feature will be turned on by default and that’s causing not to see fields from left pane when try to explore the view. I want try to turn this feature off by API call, is this possible?

Setting/Labs/

Upgraded Explore Field Picker  On/Off

Thanks

RK

0 1 88
1 REPLY 1

 Hi @rkancha,

It does not appear we have a method to update lab features right now, but we do offer a method to update legacy features with update_legacy_feature. There is an existing request for this functionality with our product team. I added this use-case to that thread, but please feel free to submit this directly to our product team via our pendo feedback app
 

for i in sdk.all_legacy_features():
id = i.id
sdk.update_legacy_feature(legacy_feature_id=id,body=
models40.WriteLegacyFeature(enabled_locally=True))
print(i.name + "is now enabled")

Please let me know if you have any questions.

Have a great day!

Thanks,

Eric