This repository was archived by the owner on Jun 16, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Servicio REST with JSON
marilu597 edited this page Jul 3, 2012
·
5 revisions
Crear un Préstamo
POST dominio.com/1/loan (Requires Auth)
Parámetros:
- borrower: "Fulano"
- item: "Libro de DaVinci con figurita de Garfield"
- loan_date (optional) : 2012-03-25
- due_date (optional) : 2012-05-01
Response 201 (Created)
- id:99
- borrower: "Fulano"
- item: "Libro de DaVinci con figurita de Garfield"
- loan_date : 2012-03-25
- due_date : 2012-05-01
- creation_date: 2012-03-25 04:30:00 TMZ+O (ISO 8601 UTC)
- returned_status: null
- returned_date: null
- last_update: 2012-03-25 04:30:00 TMZ+O (ISO 8601 UTC)
GET /1/loans/:loan_id (Requires Auth)
Response 200(Ok)
- id:99
- borrower: "Fulano"
- item: "Libro de DaVinci con figurita de Garfield"
- loan_date : 2012-03-25
- due_date : 2012-05-01
- creation_date: 2012-03-25 04:30:00 TMZ+O
- returned_status: null
- returned_date: null
- last_update: 2012-03-25 04:30:00 TMZ+O
PUT /1/loans/:loan_id (Requires Auth)
Parámetros:
- borrower (optional): "Fulano"
- item (optional): "Libro de DaVinci con figurita de Garfield"
- loan_date (optional) : 2012-03-25
- due_date (optional) : 2012-05-01
- returned_status (optional) : "cool"
- returned_date (optional): 2012-05-01
Response 200(Ok)
- id:99
- borrower: "Fulano"
- item: "Libro de DaVinci con figurita de Garfield"
- loan_date : 2012-03-25
- due_date : 2012-05-01
- creation_date: 2012-03-25 04:30:00 TMZ+O
- returned_status: "cool"
- returned_date: 2012-05-01
- last_update: 2012-03-25 04:30:00 TMZ+O (ISO 8601 UTC)
DELETE /1/loans/:loanid (Requires Auth)
Response 200(Ok)
- id:99
- borrower: "Fulano"
- item: "Libro de DaVinci con figurita de Garfield"
- loan_date : 2012-03-25
- due_date : 2012-05-01
- creation_date: 2012-03-25 04:30:00 TMZ+O
- returned_status: "cool"
- returned_date: 2012-05-01
- last_update: 2012-03-25 04:30:00 TMZ+O (ISO 8601 UTC)