Skip to content

Instantly share code, notes, and snippets.

@ariesmcrae
Last active May 27, 2017 05:46
Show Gist options
  • Save ariesmcrae/eea2d8f4d97c84c6c570232cec001e90 to your computer and use it in GitHub Desktop.
Save ariesmcrae/eea2d8f4d97c84c6c570232cec001e90 to your computer and use it in GitHub Desktop.
curl api.mycompany.com/v1/employees
// curl api.mycompany.com/v1/employees
[
{
"employeeId":"1",
"firstName":"Tim",
"surname":"Smith",
"links":[
{
"rel":"self",
"href":"http://api.mycompany.com/v1/employees/1"
}
]
},
{
"employeeId":"2",
"firstName":"Mark",
"surname":"Johnson",
"links":[
{
"rel":"self",
"href":"http://api.mycompany.com/v1/employees/2"
}
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment