DynamoDB API
Update
Update an entry in your DynamoDB table
PUT
/
dynamodb
/
{YOUR_DB_NAME}
/
update
Path
Body
curl --request PUT \
--url https://vdrdfvu2b3.execute-api.us-east-2.amazonaws.com/v3/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
requiredThe name of the DynamoDB you want to interact with.
Body
id
string
requiredThe ID of the entry you want to change
name
string
requiredWhat you want to change the entry to
Response
statusCode
number
Based off of standard HTTP request guidelines
body
object
Information regarding your update request
curl --request PUT \
--url https://vdrdfvu2b3.execute-api.us-east-2.amazonaws.com/v3/dynamodb/{YOUR_DB_NAME}/update \
--header 'Content-Type: application/json' \
--data '{
"id": "<string>",
"name": "<string>"
}'
{
"statusCode": 200,
"body" {
"message": "Item updated"
}
}