- Clone Repo
npm i
- Set the account number in
lib/main.ts
cdk deploy
- Get the API key and URL from the API GW
- Postman:
POST
x-api-key: <your-key> // header
body:
{
"value1": "test",
"value2": 10
}
^ Make a couple entries
GET
x-api-key: <your-key> // header
With no UUID provided, you should get all results back
GET
x-api-key: <your-key> // header
uuid: <a uuid from above> // param
You should get 1 result back
- ???
- Profit