sudo docker run -d -p 8000:8000 amazon/dynamodb-local
Further information about running DynamoDB can be found here.
For populating data in Customer:
- Use Rest API to populate data by using request body below on this Endpoint
{ "enterpriseId": "99991", "customerName": "Test Customer Name - 2", "description": "Description = 1" }
- Other way is to run
PopulateQueryCustomerList
These are the endpoints to get data:
- Get all the customers
- Get all customer for Enterprise
- Get page of customer for Enterprise### Populate the Customer Data
For populating data in SupportMessage:
- Use Rest API to populate data by using request body below on this Endpoint
{ "department": "payments", "urgency": 10, "message": "Test 2" }
- Other way is to run
PopulateQueryMessages
These are the endpoints to get data: