> For the complete documentation index, see [llms.txt](https://docs.fieldmotion.com/fieldmotion-api-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.fieldmotion.com/fieldmotion-api-docs/customers/_delete.md).

# \_delete

Delete multiple selected Customers.

### Parameters

#### ids

An array of the ids of the Customers to be deleted

### Example

```
=FM_api(
    'Customers_delete',[
        'ids' => '[653150,653151]'
    ]
);
```

### Results

#### On Success

```
{"ok":1}
```

#### On Failure

If there is no "ids" parameter:

```
{"error":"missing parameter: ids"}
```

If the "ids" value is not in an array format:

```
{"error":"invalid parameter: ids"}
```
