Developer Function: API: Table Operation: Delete Record
## Overview
You can delete records using the API.
## Preparation
Please [Create an API Key](/manual/api-key) before performing API operations.
## Request
Please send json data in the following format.
|Setting item|Value|
|:--|:--|
|HTTP Method|POST|
|Content-Type |application/json|
|Character Code|UTF-8|
|URL|http://{server name}/api/items/{record ID}/delete (*1)|
(*1) Please edit the {server name} and {record ID} parts suit your environment as appropriate.
For pleasanter.net, the format is as follows:
https\://pleasanter.net/fs/api/items/{record ID}/delete
##### JSON
```
{
     "ApiVersion": 1.1,
     "ApiKey": "Asfas63dsf1A0faA567A..."
}
```
## Response
The json data in the following format is returned:
##### JSON
```
{
    "Id": 12345,
    "StatusCode": 200,
    "LimitPerDate": 10000,
    "LimitRemaining": 9995,
    "Message": "\" {record title name} \" deleted."
}
```
## Confirmation Items in Case of Error
[・Precautions when using the API and things to check if an error occurs](/manual/faq-api)
[・FAQ: What to check if modified configuration files or API requests (JSON format) are not recognized correctly](/manual/faq-json-format)
## Specification Changes
***API specifications have been partially changed since October 2019.**
- Classification, Numerical Value, Date, Description, and Check Items have been changed from being directly entered in the JSON to being entered within "~Hash".
***API specifications have been partially changed since November 2018.**
- The URL format has been changed from '/pleasanter/api_items/xxxx' to '/pleasanter/api/items/xxxx'.
- The Content-Type specification has been changed from 'application/x-www-form-urlencoded' to 'application/json'.
                    