GET /entities/{id}
Returns a specified entity format.
- id — [integer] The id of the specified entity format.
A JSON Object filled with an entity following the entity format.
All errors return an HTTP error response with a JSON Object as keys message
about the error, request.method
the method of the received request, request.path
the path used to send the request, request.input
an array containing the parameters sent.
- 404 Not Found — An Entity with the specified ID does not exist.
GET /entities/12
{
"id": 12,
"name": "osoc17",
"url": "entities_osoc17",
"image": "http://2017.summerofcode.be/images/squarelogo-LI.png",
"created_at": "2017-07-16 16:04:10",
"updated_at": "2017-07-19 20:21:34"
}
GET /entities/abc
{
"message": "The requested object is not valid",
"request": {
"method": "GET",
"path": "api/v1/entities/abc",
"parameters": [ ]
},
"data": [ ]
}