Skip to content

Instantly share code, notes, and snippets.

@ilhamarrouf
Last active October 3, 2018 03:40
Show Gist options
  • Save ilhamarrouf/355ef68edacd7f8cbb2dd9315645af73 to your computer and use it in GitHub Desktop.
Save ilhamarrouf/355ef68edacd7f8cbb2dd9315645af73 to your computer and use it in GitHub Desktop.
RestAPI
{
"data": [
{
"id": 1,
"name": "Ilham Arrouf",
"username": "ilhamarrouf",
"email": "[email protected]"
},
{
"id": 2,
"name": "Abdul Jaelani",
"username": "abduljaelani",
"email": "[email protected]"
}
],
"meta": {
"current_page": 1,
"from": 1,
"last_page": 3,
"path": "https://example.com/api/users",
"per_page": "15",
"to": 15,
"total": 44
}
}
{
"message": "The given data was invalid",
"errors": {
"email": [
"The email must be a valid email address."
],
"password": [
"The password field is required"
]
}
}
{
"data": {
"id": 2,
"name": "Abdul Jaelani",
"username": "abduljaelani",
"email": "[email protected]"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment