Skip to content

Instantly share code, notes, and snippets.

@slavafomin
Last active August 29, 2015 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save slavafomin/ab30c6cf488c53495faf to your computer and use it in GitHub Desktop.
Save slavafomin/ab30c6cf488c53495faf to your computer and use it in GitHub Desktop.
JSON server response example
{
"success": true,
"data": [
{
"id": 1,
"title": "Foo"
},
{
"id": 2,
"title": "Bar"
}
],
"meta": {
"pagination": {
"count": 2,
"offset": 0,
"total": 17
}
}
}
{
"success": true,
"data": {
"id": 1,
"title": "Foo"
}
}
{
"success": false,
"exception": {
"code": 404,
"message": "Item is not found."
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment