# Retrieve Systems Not Mapped to Any APD Task Retrieves systems that are not mapped to any Automated Patch Deployment (APD) task. ## Endpoints **GET** `/dcapi/patch/reports/apdNotMappedSystems` ## Request ### Request URL `https://{server-hostname}:8383/dcapi/patch/reports/apdNotMappedSystems` ### Scope `PatchMgmt.READ` ### Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ### Sample Request ```curl curl --request GET \ --url https://appdomain/dcapi/patch/reports/apdNotMappedSystems \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP Code 200 Response Body — `application/json` **JSON object** - **data** (`array`): Array of report-specific data records - **total** (`string`): Total number of records - **page** (`string`): Current page number - **pageLimit** (`string`): Records per page ### Sample Response: HTTP 200 APD not-mapped systems ```json { "total": 25, "pageLimit": 25, "data": [ { "MACAddress": "00:1A:2B:3C:4D:5E", "computerName": "WS-GUEST-005", "domainName": "GUEST", "ipAddress": "192.168.1.105", "operatingSystem": "Windows 10 Pro" } ], "page": 1 } ``` ### 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: HTTP 500 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 ![](https://www.zohowebstatic.com/sites/zweb/images/people/ico-help.png) **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.