# Retrieve Patches Yet to Apply in Self Service Portal Retrieves the list of patches yet to be applied via the Self Service Portal. ## Endpoints `GET` `/dcapi/patch/reports/SSPPatchview` ## Request URL https://[{serverurl}](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)/dcapi/patch/reports/SSPPatchview ## Scope `DesktopCentralCloud.PatchMgmt.READ` ## Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Query Parameters | Parameter | Type | Required | Description | |---|---|---|---| | 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 | | domain | string | Optional | Domain name filter | | branchOffice | string | Optional | Branch office name filter | | operatingSystem | string | Optional | Operating system ID filter (comma-separated) | | ESUActivationStatus | string | Optional | na: Not Applicable, active: Activated, notActive: Not Activated (comma-separated) | ## Sample Request ```curl curl --request GET \ --url https://appdomains/dcapi/patch/reports/SSPPatchview \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP Code 200 Response Body — `application/json` | Attribute | Type | Description | |---|---|---| | Links | JSON Object | Pagination links for next and previous pages | | messageResponse | JSON Array | Array of SSP patch view 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 | ### HTTP Code 500 Response Body — `application/json` | Attribute | Type | Description | |---|---|---| | error_code | string | Error code: INTERNAL_ERROR for server-side failures | | error_description | string | Localized error description: dc.rest.api_internal_error | ## Possible Response Codes | Code | Type | |---|---| | 200 | HTTP code | | 500 | HTTP code | ## Sample Response: HTTP 200 SSP Patch View data ```json { "metadata": { "limit": 25, "page": 1 }, "totalRecords": 2, "messageResponse": [ { "BulletinId": "MS22-JAN14", "Platform": "Windows", "PatchDescription": "KB5009719, 2022-01 Security and Quality Rollup for .NET Framework 4.5.2 for Windows 7 for x64 (KB5008860) (ESU)", "PatchId": "32830", "PublishedSystems": 1 }, { "BulletinId": "MS24-DEC3", "Platform": "Windows", "PatchDescription": "2024-12 Cumulative Update for Windows 11 Version 23H2 for x64-based Systems (KB5048685) (CVE-2024-49138)", "PatchId": "40280", "PublishedSystems": 1 } ], "totalPages": 1, "Links": { "next": null, "prev": null }, "status": "success" } ``` ## Sample Response: HTTP 500 Server-side error ```json { "error_description": "dc.rest.api_internal_error", "error_code": "INTERNAL_ERROR" } ``` ## Rate Limit **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.