What is "site type" and "site name" in computergroups/{site type}/{site name}

Hi guys,

I am trying to get a list of computer groups using Bigfix REST API computergroups/{site type}/{site name}

I feel a bit confused here, what is site type and site name for a computer groups?

I tried https://comsole.example.com:52311/api/computergroups/Automatic/<site name>

The site name is the value under “Site” column

The response i got is
Requested resource does not exist.

Does anyone know what i should put in the url as site type and site name

Thanks,
Yang

Please look at this page in the REST API reference to see if it make sense:
https://developer.bigfix.com/rest-api/restapi_request_new.html

The notation /site type or /site type/site name is used to specify the type and the URL-encoded name of the site where that resource resides. It can be:

Omitted if the resource does not relate to a site but is specific to your environment. This applies, for example, to operators, roles, computers, and so on.
Set to master if you logged in as a non-master operator and the category is defined on the master actionsite.
Set to /operator/operator_name if the category is defined in the operator site of a specific non-master operator (NMO).
Set to /external/site name if the category is defined on an external site. For example, /api/tasks/external/BES Support identifies the category of tasks available on the BES Support site.
Set to /custom/site name if the category is defined on a custom site of your BigFix environment.

I am able to get response now. For my case, the url is custom/

Thank you.