Developer Function: Server Script: items.Delete
## Overview
Delete the specified record.
## Syntax
```
Delete(recordId)
```
## Parameters
|Parameter|Type|Required|Description|
|:----------|:----------|:---:|:---------------------------|
|recordId|object|Yes|Specify the ID of the target record|
## Return Value
If the record is deleted, true is returned; if not, false is returned.
## Usage Example
In the following example, the record with record ID 123 will be deleted.
##### JavaScript
```
items.Delete(123);
```
## Notes
This is a method used in "[Server Script](/en/manual/table-management-server-script)". It cannot be used in "[Script](/en/manual/table-management-script)".
## Related Information
・[Manage Table: Server Script](/manual/table-management-server-script)
・[Execution Timing for Each Object](/manual/server-script-conditions)
・[Items Object](/manual/server-script-items)