# Load computers into the specified remote office Loads the remote office computers. ## Endpoints **POST** `/dcapi/som/remote-offices/{remote_office_id}/computers/load` ## Request URL `https://{server-hostname}:8383/dcapi/som/remote-offices/{remote_office_id}/computers/load` ## Scope `SOM.CREATE` ## Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers - **Accept** `string` — Mandatory `application/roComputersLoadStatus.v1+json` ### Path Parameters - **remote_office_id** `string` — Mandatory Unique identifier for the remote office. Get the remote office ID from the `resource_id` field in the response of [Get Remote Offices](https://www.manageengine.com/products/desktop-central/help/api/onpremise/remote-offices-getremoteoffices.html). ## Sample Request ```curl curl --request POST \ --url https://appdomain/dcapi/som/remote-offices/{remote_office_id}/computers/load \ --header 'Accept: application/roComputersLoadStatus.v1+json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP code 202 #### Response Body — application/json `JSON Object` - **uniqueServiceID** `long` Unique service ID to track the async load process. - **isComputersAddInProgress** `boolean` `true` if the computer loading process has been initiated. ## Possible Response Codes - **202** — HTTP code ## Sample Response: HTTP 202 Computer loading process initiated successfully. ```json { "uniqueServiceID": 1749820553760, "isComputersAddInProgress": true } ``` ## Rate Limits ![](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.