PUT
/
dynamodb
/
{YOUR_DB_NAME}
/
update
Update
curl --request PUT \
  --url https://7gzkqkjgcg.execute-api.us-east-2.amazonaws.com/stage/dynamodb/{YOUR_DB_NAME}/update \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "<string>",
  "name": "<string>"
}'
{
  "statusCode": 200,
  "body" {
    "message": "Item updated"

  }
}

Path

YOUR_DB_NAME
string
required
The name of the DynamoDB you want to interact with.

Body

id
string
required
The ID of the entry you want to change
name
string
required
What you want to change the entry to

Response

statusCode
number
Based off of standard HTTP request guidelines
body
object
Information regarding your update request
{
  "statusCode": 200,
  "body" {
    "message": "Item updated"

  }
}