# Retrieve Deployment Tasks Published to Self Service Portal Retrieves the list of patch deployment tasks published to the Self Service Portal. ## Endpoint `GET /dcapi/patch/reports/SSPDeploymentList` ## Request ### Request URL https://[{serverurl}](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)/dcapi/patch/reports/SSPDeploymentList ### Scope `DesktopCentralCloud.PatchMgmt.READ` ### Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Query Parameters - **pageLimit** `integer` *(Optional)*: Number of records per page (default 25) - **page** `integer` *(Optional)*: Page number to retrieve (1-based) - **searchColumn** `string` *(Optional)*: Column name to search within - **searchValue** `string` *(Optional)*: Value to search for in the specified column - **taskType** `string` *(Optional)*: 0: All Tasks, 1: Manual Deployment, 2: APD (comma-separated) ### Sample Request ```curl curl --request GET \ --url https://appdomains/dcapi/patch/reports/SSPDeploymentList \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP Code 200 Response Body: `application/json` `JSON Object` - **Links** `JSON Object`: Pagination links for next and previous pages - **messageResponse** `JSON Array`: Array of SSP deployment task entries - **metadata** `JSON Object`: Pagination metadata - **status** `string`: Operation result: success - **totalPages** `string`: Total number of pages available - **totalRecords** `string`: Total number of records matching the query #### Sample Response SSP deployment list ```json { "metadata": { "limit": 25, "page": 1 }, "totalRecords": 4, "messageResponse": [ { "YetToPublish": "9", "TaskName": "MyConfiguration3", "TotalTargets": "9", "PublishedSystems": "0" }, { "YetToPublish": "3", "TaskName": "MyTask1", "TotalTargets": "3", "PublishedSystems": "0" } ], "totalPages": 1, "Links": { "next": null, "prev": null }, "status": "success" } ``` ### HTTP Code 500 Response Body: `application/json` `JSON Object` - **error_code** `string`: Error code: INTERNAL_ERROR for server-side failures - **error_description** `string`: Localized error description: dc.rest.api_internal_error #### Sample Response Server-side error ```json { "error_description": "dc.rest.api_internal_error", "error_code": "INTERNAL_ERROR" } ``` ## Possible Response Codes - **200** `HTTP code` - **500** `HTTP code` ## Rate Limits **Duration:** 1 minute | **Threshold:** 50 | **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.