> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://api.docs.modulards.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://api.docs.modulards.com/_mcp/server.

# Update client sites

PATCH https://api.modulards.com/api/public/v1/clients/{client_id}/sites
Content-Type: application/json

Adds and/or removes websites on the Client. **Both directions are idempotent** - the same contract as a website's tags - so a retried call converges on the same state. Answers **200** with the updated Client.

**Body** (JSON):
- `add_sites` (integer array, required without `remove_sites`) - website ids to attach.
- `remove_sites` (integer array, required without `add_sites`) - website ids to detach.

A website id listed in both directions is rejected (422). `add_sites.*`/`remove_sites.*` validate existence only (`Rule::exists` is unscoped by ownership) - a website of another organization is silently ignored rather than rejected. Removing a website also removes the Client from that website's scheduled report recipient selections.

Requires a full-access token and the Client's `updateSites` permission: a collaborator without it, or who did not create the Client, is denied as 404.

Reference: https://api.docs.modulards.com/modular-ds-public-api/clients/update-client-sites

## Authentication

- `Authorization` header (bearer token, required) — Personal access token created in the Modular DS dashboard; read-only tokens can only call GET endpoints.

## Request

### Path parameters

- `client_id` (string, required)

### Body (application/json)

This endpoint expects an object.

- `add_sites` (list of double, optional)

## Response

### 200

200 - Client with updated sites

- `data` (ApiPublicV1ClientsClientIdSitesPatchResponsesContentApplicationJsonSchemaData, optional)
- `jsonapi` (ApiPublicV1ClientsClientIdSitesPatchResponsesContentApplicationJsonSchemaJsonapi, optional)

## Errors

### 422 Unprocessable Entity Error

422 Unprocessable Entity - Site in both directions

- `errors` (list of ApiPublicV1ClientsClientIdSitesPatchResponsesContentApplicationJsonSchemaErrorsItems, optional)
- `jsonapi` (ApiPublicV1ClientsClientIdSitesPatchResponsesContentApplicationJsonSchemaJsonapi, optional)

## Types

### ApiPublicV1ClientsClientIdSitesPatchResponsesContentApplicationJsonSchemaData

- `attributes` (ApiPublicV1ClientsClientIdSitesPatchResponsesContentApplicationJsonSchemaDataAttributes, optional)
- `id` (string, optional)
- `links` (ApiPublicV1ClientsClientIdSitesPatchResponsesContentApplicationJsonSchemaDataLinks, optional)
- `type` (string, optional)

### ApiPublicV1ClientsClientIdSitesPatchResponsesContentApplicationJsonSchemaJsonapi

- `version` (string, optional)

### ApiPublicV1ClientsClientIdSitesPatchResponsesContentApplicationJsonSchemaErrorsItems

- `detail` (string, optional)
- `source` (ApiPublicV1ClientsClientIdSitesPatchResponsesContentApplicationJsonSchemaErrorsItemsSource, optional)
- `status` (string, optional)
- `title` (string, optional)

### ApiPublicV1ClientsClientIdSitesPatchResponsesContentApplicationJsonSchemaDataAttributes

- `company` (string, optional)
- `created_at` (string, optional)
- `last_name` (string, optional)
- `name` (string, optional)
- `updated_at` (string, optional)

### ApiPublicV1ClientsClientIdSitesPatchResponsesContentApplicationJsonSchemaDataLinks

- `self` (string, optional)

### ApiPublicV1ClientsClientIdSitesPatchResponsesContentApplicationJsonSchemaErrorsItemsSource

- `pointer` (string, optional)

## Examples

### 200 - Client with updated sites

**Request**

```json
undefined
```

**Response**

```json
{
  "data": {
    "attributes": {
      "company": "Acme",
      "created_at": "2026-08-10T09:00:00.000000Z",
      "last_name": "Walker",
      "name": "Alice",
      "updated_at": "2026-09-24T09:30:00.000000Z"
    },
    "id": "101",
    "links": {
      "self": "https://api.modulards.com/api/public/v1/clients/101"
    },
    "type": "clients"
  },
  "jsonapi": {
    "version": "1.1"
  }
}
```

**SDK Code**

```python 200 - Client with updated sites
import requests

url = "https://api.modulards.com/api/public/v1/clients/client_id/sites"

headers = {"Authorization": "Bearer <token>"}

response = requests.patch(url, headers=headers)

print(response.json())
```

```javascript 200 - Client with updated sites
const url = 'https://api.modulards.com/api/public/v1/clients/client_id/sites';
const options = {method: 'PATCH', headers: {Authorization: 'Bearer <token>'}};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go 200 - Client with updated sites
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://api.modulards.com/api/public/v1/clients/client_id/sites"

	req, _ := http.NewRequest("PATCH", url, nil)

	req.Header.Add("Authorization", "Bearer <token>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby 200 - Client with updated sites
require 'uri'
require 'net/http'

url = URI("https://api.modulards.com/api/public/v1/clients/client_id/sites")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
```

```java 200 - Client with updated sites
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.patch("https://api.modulards.com/api/public/v1/clients/client_id/sites")
  .header("Authorization", "Bearer <token>")
  .asString();
```

```php 200 - Client with updated sites
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('PATCH', 'https://api.modulards.com/api/public/v1/clients/client_id/sites', [
  'headers' => [
    'Authorization' => 'Bearer <token>',
  ],
]);

echo $response->getBody();
```

```csharp 200 - Client with updated sites
using RestSharp;

var client = new RestClient("https://api.modulards.com/api/public/v1/clients/client_id/sites");
var request = new RestRequest(Method.PATCH);
request.AddHeader("Authorization", "Bearer <token>");
IRestResponse response = client.Execute(request);
```

```swift 200 - Client with updated sites
import Foundation

let headers = ["Authorization": "Bearer <token>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://api.modulards.com/api/public/v1/clients/client_id/sites")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "PATCH"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```

### Update client sites

**Request**

```json
{
  "add_sites": [
    12,
    13
  ]
}
```

**Response**

```json
{
  "data": {
    "attributes": {
      "company": "Acme",
      "created_at": "2026-08-10T09:00:00.000000Z",
      "last_name": "Walker",
      "name": "Alice",
      "updated_at": "2026-09-24T09:30:00.000000Z"
    },
    "id": "101",
    "links": {
      "self": "https://api.modulards.com/api/public/v1/clients/101"
    },
    "type": "clients"
  },
  "jsonapi": {
    "version": "1.1"
  }
}
```

**SDK Code**

```python Update client sites
import requests

url = "https://api.modulards.com/api/public/v1/clients/client_id/sites"

payload = { "add_sites": [12, 13] }
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

response = requests.patch(url, json=payload, headers=headers)

print(response.json())
```

```javascript Update client sites
const url = 'https://api.modulards.com/api/public/v1/clients/client_id/sites';
const options = {
  method: 'PATCH',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"add_sites":[12,13]}'
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go Update client sites
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "https://api.modulards.com/api/public/v1/clients/client_id/sites"

	payload := strings.NewReader("{\n  \"add_sites\": [\n    12,\n    13\n  ]\n}")

	req, _ := http.NewRequest("PATCH", url, payload)

	req.Header.Add("Authorization", "Bearer <token>")
	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby Update client sites
require 'uri'
require 'net/http'

url = URI("https://api.modulards.com/api/public/v1/clients/client_id/sites")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n  \"add_sites\": [\n    12,\n    13\n  ]\n}"

response = http.request(request)
puts response.read_body
```

```java Update client sites
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.patch("https://api.modulards.com/api/public/v1/clients/client_id/sites")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"add_sites\": [\n    12,\n    13\n  ]\n}")
  .asString();
```

```php Update client sites
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('PATCH', 'https://api.modulards.com/api/public/v1/clients/client_id/sites', [
  'body' => '{
  "add_sites": [
    12,
    13
  ]
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

echo $response->getBody();
```

```csharp Update client sites
using RestSharp;

var client = new RestClient("https://api.modulards.com/api/public/v1/clients/client_id/sites");
var request = new RestRequest(Method.PATCH);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"add_sites\": [\n    12,\n    13\n  ]\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift Update client sites
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = ["add_sites": [12, 13]] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

let request = NSMutableURLRequest(url: NSURL(string: "https://api.modulards.com/api/public/v1/clients/client_id/sites")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "PATCH"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```