Person Routes

GET
/person/:id

gets a single person based on their id   

Parameters
Name Type Default Description
id integer N/A the id of the person to get uniquely identifies the person
Headers
Name Description
X-Custom-Header This header is always required for the person route It always alters the route
Response Examples

200 OK

{
id: 1,
name: 'John Smith',
age: 22
}