> ## Documentation Index
> Fetch the complete documentation index at: https://webhub.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete

> Delete an entry from your DynamoDB table

### Path

<ParamField path="YOUR_DB_NAME" type="string" required>
  The name of the DynamoDB you want to interact with.
</ParamField>

### Body

<ParamField body="id" type="string" required>
  ID of the element you want to remove from the table
</ParamField>

### Response

<ResponseField name="statusCode" type="number">
  Based off of standard HTTP request guidelines
</ResponseField>

<ResponseField name="body" type="object">
  Information regarding your delete request
</ResponseField>

<ResponseExample>
  ```json Success Response theme={null}
  {
    "statusCode": 200,
    "body" {
      
      "message": "Item deleted"

    }
  }
  ```

  ```json Error Response theme={null}
  {
    "statusCode": 400,
    "body" {
      err: {
      "message": "The provided key element does not match the schema",
      "code": "ValidationException",
      "time": "2023-08-18T20:20:02.857Z",
      "requestId": "K0I8M4RP3CAH2S9MM1PVGLG2GRVV4KQNSO5AEMVJF66Q9ASUAAJG",
      "statusCode": 400,
      "retryable": false,
      "retryDelay": 37.399809106962046
  },
      compelete: false
    }
  }
  ```
</ResponseExample>
