Skip to content

Instantly share code, notes, and snippets.

@joelcox
Created February 23, 2015 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joelcox/88e2241ac991cf8121e3 to your computer and use it in GitHub Desktop.
Save joelcox/88e2241ac991cf8121e3 to your computer and use it in GitHub Desktop.
Resource options request
GET http://localhost:5000/orders/4
{
"status": "shipped"
}
OPTIONS http://localhost:5000/orders/4
{
"PUT": {
"description": "Modify the status of a shipped order",
"parameters": {
"status": {
"type": ["confirmed", "returned"],
"description": "Shipping status",
"required": true
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment