# Examples
# <HTTP method> <endpoint>
GET https://mysite.com/api/customers
GET https://mysite.com/api/customers/1
# or
GET https://mysite.com/api/customers/details/1
PUT https://mysite.com/api/customers/1
# or
PUT https://mysite.com/api/customers/update/1
DELETE https://mysite.com/api/cutomers/1
# or
DELETE https://mysite.com/api/customers/delete/1
POST https://mysite.com/api/customers
# Examples: curl (with authentication)
curl -X GET https://api.ciscospark.com/v1/teams -H "Authorization:Bearer YjE2...e10f"
curl -H "Authorization:token OAUTH-TOKEN" https://api.github.com
curl https://api.github.com/?access_token=OAUTH_TOKEN
curl 'https://api.github.com/users/whatever?client_id=xxxx&client_secret=yyyy'