> 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 malware scan service

PATCH https://api.modulards.com/api/public/v1/malware-scan-services/{site_preset_malware_scan}
Content-Type: application/json

Change how ONE website is scanned; send only what changes. `status` switches its scanning on or off. `preset` (integer) moves it to another Malware Scanner global configuration (id from "List malware scan presets") and keeps its status - to assign many websites to one configuration at once, always switching them on, use "Assign websites to a malware scan configuration" instead. `filesystem` and `content.included` choose what is scanned: `content.included` requires `filesystem` to be sent in the same request, but `filesystem` alone is valid. Changing `filesystem` always resets the exclusions to the new mode's default; it also resets the scanned areas to the new mode's default, unless `content.included` is sent in the same request. `content.excluded` and the schedule are NOT edited here: exclusions stay a dashboard-only setting and the schedule cascades from the configuration.

Switching `status` to `enabled` on a website not yet registered with the scanning provider answers **409**.

Requires a full-access token (read-only tokens answer 403). An unknown `preset` id answers 422.

Reference: https://api.docs.modulards.com/modular-ds-public-api/malware-scan-services/update-malware-scan-service

## 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

- `site_preset_malware_scan` (string, required)

### Body (application/json)

This endpoint expects an object.

- `status` (string, optional)

## Response

### 200

200 - Malware scan service updated

- `data` (object, optional)
  - `attributes` (object, optional)
    - `content` (object, optional)
      - `excluded` (object, optional)
        - `content` (any, optional, nullable)
        - `core` (any, optional, nullable)
        - `database` (any, optional, nullable)
        - `fonts` (any, optional, nullable)
        - `mu_plugins` (any, optional, nullable)
        - `plugins` (any, optional, nullable)
        - `themes` (any, optional, nullable)
        - `uploads` (any, optional, nullable)
      - `included` (list of string, optional)
    - `created_at` (string, optional)
    - `filesystem` (string, optional)
    - `last_request` (string, optional)
    - `limits` (object, optional)
      - `cleans_limit` (double, optional)
      - `cleans_used` (double, optional)
      - `db_cleans_limit` (double, optional)
      - `db_cleans_used` (double, optional)
      - `db_resets_at` (string, optional)
      - `db_scans_limit` (double, optional)
      - `db_scans_used` (double, optional)
      - `resets_at` (string, optional)
      - `scans_limit` (double, optional)
      - `scans_used` (double, optional)
    - `next_request` (string, optional)
    - `schedule` (object, optional)
      - `day_month` (double, optional)
      - `day_week` (any, optional, nullable)
      - `frequency` (string, optional)
      - `start_hour` (string, optional)
      - `timezone` (string, optional)
    - `status` (string, optional)
    - `tier` (string, optional)
    - `updated_at` (string, optional)
  - `id` (string, optional)
  - `links` (object, optional)
    - `self` (string, optional)
  - `relationships` (object, optional)
    - `preset` (object, optional)
      - `data` (object, optional)
        - `id` (string, optional)
        - `type` (string, optional)
  - `type` (string, optional)
- `jsonapi` (object, optional)
  - `version` (string, optional)

## Errors

### 409 Conflict Error

409 - Website not registered with the scanning provider

- `errors` (list of object, optional)
  - `detail` (string, optional)
  - `status` (string, optional)
  - `title` (string, optional)
- `jsonapi` (object, optional)
  - `version` (string, optional)

## Examples

### 200 - Malware scan service updated

**Request**

```json
undefined
```

**Response**

```json
{
  "data": {
    "attributes": {
      "content": {
        "excluded": {
          "content": null,
          "core": null,
          "database": null,
          "fonts": null,
          "mu_plugins": null,
          "plugins": null,
          "themes": null,
          "uploads": null
        },
        "included": [
          "core",
          "database"
        ]
      },
      "created_at": "2026-07-01T09:00:00.000000Z",
      "filesystem": "default",
      "last_request": "2026-09-01T03:00:00.000000Z",
      "limits": {
        "cleans_limit": 0,
        "cleans_used": 0,
        "db_cleans_limit": 0,
        "db_cleans_used": 0,
        "db_resets_at": "2026-10-01T00:00:00.000000Z",
        "db_scans_limit": 30,
        "db_scans_used": 1,
        "resets_at": "2026-10-01T00:00:00.000000Z",
        "scans_limit": 30,
        "scans_used": 1
      },
      "next_request": "2026-10-01T03:14:00.000000Z",
      "schedule": {
        "day_month": 1,
        "day_week": null,
        "frequency": "monthly",
        "start_hour": "03:00",
        "timezone": "Europe/Madrid"
      },
      "status": "enabled",
      "tier": "basic",
      "updated_at": "2026-09-18T10:30:00.000000Z"
    },
    "id": "845",
    "links": {
      "self": "https://api.modulards.com/api/public/v1/malware-scan-services/845"
    },
    "relationships": {
      "preset": {
        "data": {
          "id": "7",
          "type": "preset-malware-scans"
        }
      }
    },
    "type": "site-preset-malware-scans"
  },
  "jsonapi": {
    "version": "1.1"
  }
}
```

**SDK Code**

```python 200 - Malware scan service updated
import requests

url = "https://api.modulards.com/api/public/v1/malware-scan-services/site_preset_malware_scan"

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

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

print(response.json())
```

```javascript 200 - Malware scan service updated
const url = 'https://api.modulards.com/api/public/v1/malware-scan-services/site_preset_malware_scan';
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 - Malware scan service updated
package main

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

func main() {

	url := "https://api.modulards.com/api/public/v1/malware-scan-services/site_preset_malware_scan"

	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 - Malware scan service updated
require 'uri'
require 'net/http'

url = URI("https://api.modulards.com/api/public/v1/malware-scan-services/site_preset_malware_scan")

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 - Malware scan service updated
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.patch("https://api.modulards.com/api/public/v1/malware-scan-services/site_preset_malware_scan")
  .header("Authorization", "Bearer <token>")
  .asString();
```

```php 200 - Malware scan service updated
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

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

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

```csharp 200 - Malware scan service updated
using RestSharp;

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

```swift 200 - Malware scan service updated
import Foundation

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

let request = NSMutableURLRequest(url: NSURL(string: "https://api.modulards.com/api/public/v1/malware-scan-services/site_preset_malware_scan")! 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 malware scan service

**Request**

```json
{
  "status": "enabled"
}
```

**Response**

```json
{
  "data": {
    "attributes": {
      "content": {
        "excluded": {
          "content": null,
          "core": null,
          "database": null,
          "fonts": null,
          "mu_plugins": null,
          "plugins": null,
          "themes": null,
          "uploads": null
        },
        "included": [
          "core",
          "database"
        ]
      },
      "created_at": "2026-07-01T09:00:00.000000Z",
      "filesystem": "default",
      "last_request": "2026-09-01T03:00:00.000000Z",
      "limits": {
        "cleans_limit": 0,
        "cleans_used": 0,
        "db_cleans_limit": 0,
        "db_cleans_used": 0,
        "db_resets_at": "2026-10-01T00:00:00.000000Z",
        "db_scans_limit": 30,
        "db_scans_used": 1,
        "resets_at": "2026-10-01T00:00:00.000000Z",
        "scans_limit": 30,
        "scans_used": 1
      },
      "next_request": "2026-10-01T03:14:00.000000Z",
      "schedule": {
        "day_month": 1,
        "day_week": null,
        "frequency": "monthly",
        "start_hour": "03:00",
        "timezone": "Europe/Madrid"
      },
      "status": "enabled",
      "tier": "basic",
      "updated_at": "2026-09-18T10:30:00.000000Z"
    },
    "id": "845",
    "links": {
      "self": "https://api.modulards.com/api/public/v1/malware-scan-services/845"
    },
    "relationships": {
      "preset": {
        "data": {
          "id": "7",
          "type": "preset-malware-scans"
        }
      }
    },
    "type": "site-preset-malware-scans"
  },
  "jsonapi": {
    "version": "1.1"
  }
}
```

**SDK Code**

```python Update malware scan service
import requests

url = "https://api.modulards.com/api/public/v1/malware-scan-services/site_preset_malware_scan"

payload = { "status": "enabled" }
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript Update malware scan service
const url = 'https://api.modulards.com/api/public/v1/malware-scan-services/site_preset_malware_scan';
const options = {
  method: 'PATCH',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"status":"enabled"}'
};

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

```go Update malware scan service
package main

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

func main() {

	url := "https://api.modulards.com/api/public/v1/malware-scan-services/site_preset_malware_scan"

	payload := strings.NewReader("{\n  \"status\": \"enabled\"\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 malware scan service
require 'uri'
require 'net/http'

url = URI("https://api.modulards.com/api/public/v1/malware-scan-services/site_preset_malware_scan")

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  \"status\": \"enabled\"\n}"

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

```java Update malware scan service
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.patch("https://api.modulards.com/api/public/v1/malware-scan-services/site_preset_malware_scan")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"status\": \"enabled\"\n}")
  .asString();
```

```php Update malware scan service
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('PATCH', 'https://api.modulards.com/api/public/v1/malware-scan-services/site_preset_malware_scan', [
  'body' => '{
  "status": "enabled"
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

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

```csharp Update malware scan service
using RestSharp;

var client = new RestClient("https://api.modulards.com/api/public/v1/malware-scan-services/site_preset_malware_scan");
var request = new RestRequest(Method.PATCH);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"status\": \"enabled\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift Update malware scan service
import Foundation

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

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

let request = NSMutableURLRequest(url: NSURL(string: "https://api.modulards.com/api/public/v1/malware-scan-services/site_preset_malware_scan")! 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()
```