> 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/address/_delete.md).

# \_delete

Deletes an Address record.

### Parameters

#### id

The ID of the Address record to be deleted.

### Example

```
FM_api('Address_delete',[
    'id'=>'30181'
  ]
);
```

### Results

#### On Success

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

#### On Failure

If the "id" parameter does not match the ID of an existing Address record.

```
{"error":"address record not found"}
```

If the "id" parameter is not set or has a value less than 1:

```
{"error":"missing or invalid parameter: id"}
```
