Returns a paginated list of published resources for a specific resource type

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 deployment resources list

Request URL

https://{serverurl}/intelligence/api/deployments/resources/{resourceTypeId}/publishedResources

Scope

DesktopCentralCloud.DEX.READCopied!

Header

Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52

Request Parameters

- Request Headers

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

- Path Parameters

resourceTypeIdstringMandatory

- Query Parameters

offsetintegerOptional

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

limitintegerOptional

Maximum number of results per page (default: 30)

searchstringOptional

Optional search filter applied to resource names

Sample Request

Curl
Java
Python
Deluge
PowerShell
Copied!
curl --request GET \
  --url https://appdomains/intelligence/api/deployments/resources/{resourceTypeId}/publishedResources \
  --header 'Accept: application/publishedResources.v1+json' \
  --header 'Authorization: Zoho-oauthtoken  d92d4xxxxxxxxxxxxx15f52'

Response Parameters

- HTTP code 202

Response Body - application/json
JSON Array
Hide Sub-Attributes
JSON Object
Show Sub-Attributes
labelstring

Display name of the published resource

valuelong

Resource version identifier. Use as versionID when creating a deployment via Create Deployment

resourceTypeIDinteger

Resource type identifier. Fetch from Get Deployment Resources

statusinteger

Publish status of the resource

Possible Response Codes

202HTTP code

Sample Response: HTTP 202

Copied!
  [
    {
      "resourceTypeID": 1,
      "label": "Onboarding Workflow",
      "value": 1001,
      "status": 1
    },
    {
      "resourceTypeID": 1,
      "label": "Patch Deployment Workflow",
      "value": 1002,
      "status": 1
    }
  ]
                
Show full

Duration: 1 minute | Threshold: 30 | 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.