Skip to content

Instantly share code, notes, and snippets.

@kevprice83
Created May 11, 2016 10:39
Show Gist options
  • Save kevprice83/f9b2cc960cc01de76b11899c59a34e4e to your computer and use it in GitHub Desktop.
Save kevprice83/f9b2cc960cc01de76b11899c59a34e4e to your computer and use it in GitHub Desktop.
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