Skip to content

Instantly share code, notes, and snippets.

@hjr3
Created November 5, 2012 05:16
Show Gist options
  • Save hjr3/4015480 to your computer and use it in GitHub Desktop.
Save hjr3/4015480 to your computer and use it in GitHub Desktop.
Add credits to a members account.
GET /members/1234/credits HTTP/1.1
Host: www.example.com
Content-Type: application/json
HTTP/1.1 200 OK
Content-Type: application/json
{
credits: 10
}
==================================
POST /members/1234/credits HTTP/1.1
Host: www.example.com
Content-Type: application/json
{
amount: 5
}
HTTP/1.1 200 OK
Content-Type: application/json
{
credits: 15
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment