API Settings Export and Import with all the settings

This is for developer-specific feature requests. For other requests please contact our customer support team.

Is your feature request related to a problem? Please describe.
We are creating groups per school for our teachers so that each school can have certain features enabled/disabled. I wrote a script to create the group(s) and copy the settings of our ‘template’ group. Currently, it only copies if something is enabled or disabled.

Describe the solution you’d like
On the GET and PATCH settings method for any endpoint, the value of whether a field is locked or not should be included so that it can be easily copied to another object. The same thing for the meeting authentication options. This would make ‘cloning’ a setting from one object to another extremely helpful and the turnaround would be in seconds.

ex:

{
  "schedule_meeting": {
    "host_video":  {
      "value":  "enabled",
      "locked": true
     },
    "participant_video": {
      "value": "disabled",
      "locked": true
    },
    "audio_type":  {
      "value": "both"
    },
    "authentication": [
      {
        "name": "Option 1",
        "default": true
      },
      {
        "name": "Option 2",
        "default": false
      }
    ]
  }
}

Describe alternatives you’ve considered
No alternative but doing it manually. Currently doing it for 13 group settings

Additional context

1 Like