DynamoDB API
Delete
Delete an entry from your DynamoDB table
DELETE
/
dynamodb
/
{YOUR_DB_NAME}
/
delete
Path
Body
curl --request DELETE \
--url https://vdrdfvu2b3.execute-api.us-east-2.amazonaws.com/v3/dynamodb/{YOUR_DB_NAME}/delete \
--header 'Content-Type: application/json' \
--data '{
"id": "<string>"
}'
{
"statusCode": 200,
"body" {
"message": "Item deleted"
}
}
Path
YOUR_DB_NAME
string
requiredThe name of the DynamoDB you want to interact with.
Body
id
string
requiredID of the element you want to remove from the table
Response
statusCode
number
Based off of standard HTTP request guidelines
body
object
Information regarding your delete request
curl --request DELETE \
--url https://vdrdfvu2b3.execute-api.us-east-2.amazonaws.com/v3/dynamodb/{YOUR_DB_NAME}/delete \
--header 'Content-Type: application/json' \
--data '{
"id": "<string>"
}'
{
"statusCode": 200,
"body" {
"message": "Item deleted"
}
}