Read & Query
Read All
Read data from your DynamoDB table
GET
/
dynamodb
/
{YOUR_DB_NAME}
/
read
Path
Body
curl --request GET \
--url https://vdrdfvu2b3.execute-api.us-east-2.amazonaws.com/v3/dynamodb/{YOUR_DB_NAME}/read \
--header 'Content-Type: application/json' \
--data '{
"": "<string>"
}'
{
"statusCode": 200,
"body": [
{
"id": "id1",
"name": "name1"
},
{
"id": "id2",
"name": "name2"
}
]
}
Path
YOUR_DB_NAME
string
requiredThe name of the DynamoDB you want to interact with.
Body
Response
statusCode
number
Based off of standard HTTP request guidelines
body
object
All the elements that are inside the dynamodb table
curl --request GET \
--url https://vdrdfvu2b3.execute-api.us-east-2.amazonaws.com/v3/dynamodb/{YOUR_DB_NAME}/read \
--header 'Content-Type: application/json' \
--data '{
"": "<string>"
}'
{
"statusCode": 200,
"body": [
{
"id": "id1",
"name": "name1"
},
{
"id": "id2",
"name": "name2"
}
]
}