Last active
August 12, 2020 20:05
-
-
Save imclint21/531586c95c4b2ecb227ed12002690bde to your computer and use it in GitHub Desktop.
Play with Lucid
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -X PUT -d "Hey" https://lucid-kv.herokuapp.com/api/kv/hello_world | |
# {"message":"The specified key was successfully created."} | |
curl https://lucid-kv.herokuapp.com/api/kv/hello_world | |
# Hey | |
curl -X DELETE https://lucid-kv.herokuapp.com/api/kv/hello_world | |
# {"message":"The specified key and it's data was successfully deleted"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment