Skip to content

Instantly share code, notes, and snippets.

@kenngyc
Created June 26, 2018 11:21
Show Gist options
  • Save kenngyc/c676a9bfeb43a1f4a1320f644a1378f0 to your computer and use it in GitHub Desktop.
Save kenngyc/c676a9bfeb43a1f4a1320f644a1378f0 to your computer and use it in GitHub Desktop.
Example JSON-API Spec response
{
"data": [
{
"type": "customers",
"id": "1",
"attributes": {
"first_name": "Fancie",
"last_name": "Yglesia",
"email": "[email protected]",
"gender": "Female",
"ip_address": "115.156.83.78",
"account_no": "3559891215235202",
"balance": "256.34",
"country_code": "BR"
},
"relationships": {},
"links": {
"self": "/v2/customers/1"
}
},
{
"type": "customers",
"id": "2",
"attributes": {
"first_name": "Blancha",
"last_name": "Kroon",
"email": "[email protected]",
"gender": "Female",
"ip_address": "255.144.72.251",
"account_no": "3530646602541099",
"balance": "571.91",
"country_code": "CN"
},
"relationships": {},
"links": {
"self": "/v2/customers/2"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment