GET endpoint using AWS DynamoDB
GET
GET requests are used to read either a single or a collection resource.
-
GET requests for individual resources will usually generate a 404 if the resource does not exist;
-
GET requests for collection resources may return either 200 (if the collection is empty) or 404 (if the collection is missing);
-
GET requests must NOT have a request body payload;
Note: GET requests on collection resources should provide sufficient filter and pagination mechanisms;
Here is an example PR to show how to build an GET endpoint using DynamoDB
We have created a video that gives developers a good understanding of how we build API Endpoints using DynamoDB from beginning to end, following best practices.
Video Tutorial:
Note: To go back a forth between the videos please use the playlist button available