Skip to content
This repository has been archived by the owner on Nov 16, 2019. It is now read-only.
Martín Carrera edited this page Jun 1, 2016 · 2 revisions

HTTP Methods

  • GET: Get one or more resources.
  • POST: Create resource.
  • PUT: Update resource.
  • DELETE: Remove resource.

HTTP Success Status Codes

  • 200: Resource founded (GET).
  • 201: Resource created (POST).
  • 200: Resource updated (PUT).
  • 204: Resource removed (DELETE).

HTTP Error Status Codes

  • 401: User unauthenticated.
  • 403: User unauthorized.
  • 404: Resource not found.
  • 500: Internal server error.
Clone this wiki locally