Skip to content
Graham42 edited this page Jan 14, 2014 · 1 revision

On bare endpoints (/{type}):

  • GET: Returns a list of all objects of this type
  • POST: Creates a new object of the endpoints type
  • DELETE: Deletes all objects of this type
  • PUT: Bulk update

On individual endpoints (/{type}/{uid}):

  • GET: Returns the object of this type with this unique identifier
  • DELETE: Delete the object
  • PUT: Replace the object or field specified in the data

Other HTTP methods will return a 405 error (MethodNotAllowed)

Clone this wiki locally