Returns a paginated list of custom groups available for deployment

Open in ChatGPT Open in ChatGPT to ask questions about this page
Open in Claude Open in Claude to ask questions about this page
Copy as MarkdownCopy this page as markdown to use with AI assistants
View as Markdown Open this page as markdown in a new tab

Used to get the custom group for deployment

Request URL

https://{serverurl}/intelligence/api/targets/deploymentTargets

Scope

DesktopCentralCloud.DEX.READCopied!

Header

Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52

Request Parameters

- Request Headers

AcceptstringMandatory
application/deploymentTargets.v1+jsonapplication/deploymentTargets.v1+jsonCopied!

- Query Parameters

offsetlongOptional

Page offset for pagination (0-based, default: 0)

limitlongOptional

Maximum number of results per page (default: 50)

searchstringOptional

Optional search filter applied to custom group names

Sample Request

Curl
Java
Python
Deluge
PowerShell
Copied!
curl --request GET \
  --url https://appdomains/intelligence/api/targets/deploymentTargets \
  --header 'Accept: application/deploymentTargets.v1+json' \
  --header 'Authorization: Zoho-oauthtoken  d92d4xxxxxxxxxxxxx15f52'

Response Parameters

- HTTP code 200

Response Body - application/json
JSON Object
Hide Sub-Attributes
targetValuesJSON Object

Available deployment target groups

Show Sub-Attributes
customGroupListJSON Array

List of custom groups available for deployment

Show Sub-Attributes
JSON Object
Show Sub-Attributes
labelstring

Display name of the custom group

valuelong

Custom group identifier

groupCategoryinteger

Custom group category: 1=Remote Office, 2=Custom Group

Possible Response Codes

200HTTP code

Sample Response: HTTP 200

Copied!
  {
    "targetValues": {
      "customGroupList": [
        {
          "groupCategory": 2,
          "label": "All Windows Devices",
          "value": 10
        },
        {
          "groupCategory": 2,
          "label": "Production Servers",
          "value": 15
        },
        {
          "groupCategory": 1,
          "label": "Remote Office - US East",
          "value": 20
        }
      ]
    }
  }
                
Show full

Duration: 1 minute | Threshold: 120 | Lock period: 5 minutes

Duration - Time window for the threshold.
Threshold - Number of API calls allowed within the specified duration.
Lock Period - Wait time before consecutive API requests.