Created
May 11, 2016 10:39
-
-
Save kevprice83/f9b2cc960cc01de76b11899c59a34e4e to your computer and use it in GitHub Desktop.
This file contains hidden or 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 GET "http:example.com/api/pets?tags=TAGS&limit=LIMIT" -H "user_key: {user_key}" | |
curl -X POST "http:example.com/api/pets" -H "user_key: {user_key}" -d "{ "name": "NAME", "tag": "TAG", "id": ID }" | |
curl -X GET "http:example.com/api/pets/{id}" -H "user_key: {user_key}" | |
curl -X DELETE "http:example.com/api/pets/{id}" -H "user_key: {user_key}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment