Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 599 Bytes

README.md

File metadata and controls

26 lines (22 loc) · 599 Bytes

Serverless Accessioning Examples

Uses serverless AWS to provide accession numbers using a combination of API Gateway, Lambda and DynamoDB.

No servers, highly scalable, highly available.

Cost less than $0.50 per million calls.

Get Sequenced Accession

curl -X GET \
  https://nycxgji7w3.execute-api.us-east-1.amazonaws.com/dev/accession \

Get UUID:

curl -X GET \
  https://nycxgji7w3.execute-api.us-east-1.amazonaws.com/dev/uuid

Get Sha1 (POST):

curl -X POST \
  https://nycxgji7w3.execute-api.us-east-1.amazonaws.com/dev/sha1 \
  -d '{
    "hello": "world"
}'