# Returns a paginated list of published resources for a specific resource type Used to get deployment resources list ## Endpoint `GET /intelligence/api/deployments/resources/{resourceTypeId}/publishedResources` ## Request URL `https://[{serverurl}](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)/intelligence/api/deployments/resources/{resourceTypeId}/publishedResources` ## Scope `DesktopCentralCloud.DEX.READ` ## Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers - **Accept** `string` — **Mandatory** - `application/publishedResources.v1+json` ### Path Parameters - **resourceTypeId** `string` — **Mandatory** ### Query Parameters - **offset** `integer` — Optional - Page offset for pagination (1-based, default: 1) - **limit** `integer` — Optional - Maximum number of results per page (default: 30) - **search** `string` — Optional - Optional search filter applied to resource names ## Sample Request ```curl 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` - `JSON Object` ## Possible Response Codes - **202** `HTTP code` ## Sample Response: HTTP 202 ```json [ { "resourceTypeID": 1, "label": "Onboarding Workflow", "value": 1001, "status": 1 }, { "resourceTypeID": 1, "label": "Patch Deployment Workflow", "value": 1002, "status": 1 } ] ``` ## Rate Limit ![Help icon](https://www.zohowebstatic.com/sites/zweb/images/people/ico-help.png) **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.