DynamoDB API
Create
Add data to your DynamoDB
POST
/
dynamodb
/
{YOUR_DB_NAME}
/
create
Path
Body
curl --request POST \
--url https://vdrdfvu2b3.execute-api.us-east-2.amazonaws.com/v3/dynamodb/{YOUR_DB_NAME}/create \
--header 'Content-Type: application/json' \
--data '{
"id": "<string>",
"name": "<string>"
}'
{
"statusCode": 200,
"body" {
"msg": "Item added to table",
"complete": true
}
}
Path
YOUR_DB_NAME
string
requiredThe name of the DynamoDB you want to interact with.
Body
id
string
requiredThe partition key for this element
name
string
requiredWhat the id will map to
Response
statusCode
number
Based off of standard HTTP request guidelines
body
object
Information regarding your create request
curl --request POST \
--url https://vdrdfvu2b3.execute-api.us-east-2.amazonaws.com/v3/dynamodb/{YOUR_DB_NAME}/create \
--header 'Content-Type: application/json' \
--data '{
"id": "<string>",
"name": "<string>"
}'
{
"statusCode": 200,
"body" {
"msg": "Item added to table",
"complete": true
}
}