> ## 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.

# Create

> Add data to your DynamoDB

### 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>
  The partition key for this element
</ParamField>

<ParamField body="name" type="string" required>
  What the id will map to
</ParamField>

### Response

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

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

<ResponseExample>
  ```json Success Response theme={null}
  {
    "statusCode": 200,
    "body" {
    "msg": "Item added to table",
    "complete": true
  }
  }
  ```

  ```json Error Response theme={null}
  {
    "statusCode": 400,
    "body" {
      err:  "error": {
          "message": "One or more parameter values were invalid: Missing the key id in the item",
          "code": "ValidationException",
          "time": "2023-08-18T19:37:15.678Z",
          "requestId": "PM8CAFJ8DP3C27ROARPRBCUPEJVV4KQNSO5AEMVJF66Q9ASUAAJG",
          "statusCode": 400,
          "retryable": false,
          "retryDelay": 45.853296901029964
      },,
      compelete: false
    }
  }
  ```
</ResponseExample>
