cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
420
Views
2
Helpful
2
Replies

How to get organization settings via RESTful API?

hyw793
Level 1
Level 1

I want to retrieve organization settings via Webex RESTful API with an admin access token.
For example, I want to know whether the organization allows to use simultaneous interpretation feature in ongoing meetings or not.
The setting can be checked and changed in the Control Hub page, But I want to do this programmatically.

I tried GET /v1/organizations/{orgId} API, but the API gave me very few information such as id, displayName and created of the organization like this:

 

{
    "id": "Y2lzY29zcGFyazovL3VzL09SR0FOSVpBVElPTi81YmU1Y2M3Mi1hN2QyLTQ5NTItYWZlNi1iN2IwMjU3MTY5NzE",
    "displayName": "foobar",
    "created": "2024-01-01T00:00:00.000Z"
}
(This is just an example and irrelevant to actual data by the way.)
 
How can I get a detailed list of organization settings?
1 Accepted Solution

dtibbe
VIP
VIP

The REST API does not expose all settings available in control hub. Some other site related settings can be accessed via https://developer.webex.com/docs/api/v1/site/get-meeting-common-settings-configuration.

You may also raise a feature request via https://ciscocollabcustomer.ideas.aha.io/ to enhance the fields accessible via the API

View solution in original post

2 Replies 2

sandiban
Cisco Employee
Cisco Employee

Hi @hyw793,
Thanks for your patience so far!
So, I believe you were requesting this particular REST API - https://developer.webex.com/docs/api/v1/organizations/get-organization-details

If so, then you won't receive more details than that actually and the Response parameter already documented in the above provided API details page in Webex developer portal. It won't show any further details than the documented Response parameters.
But unfortunately the parameters you're looking, those are still not available through REST API. Those still needs to be checked from Organization Control Hub settings.

Hope this helps.
In case of any further queries, please let us know.

Regards!
Sandip

dtibbe
VIP
VIP

The REST API does not expose all settings available in control hub. Some other site related settings can be accessed via https://developer.webex.com/docs/api/v1/site/get-meeting-common-settings-configuration.

You may also raise a feature request via https://ciscocollabcustomer.ideas.aha.io/ to enhance the fields accessible via the API