Advertisement
Guest User

Untitled

a guest
Apr 10th, 2020
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.61 KB | None | 0 0
  1. HTTP/1.1 200 OK
  2. Content-Type: application/vnd.api+json
  3.  
  4. {
  5.   "data": [{
  6.     "type": "articles",
  7.     "id": "1",
  8.     "attributes": {
  9.       "title": "JSON:API paints my bikeshed!",
  10.       "body": "The shortest article. Ever.",
  11.       "created": "2015-05-22T14:56:29.000Z",
  12.       "updated": "2015-05-22T14:56:28.000Z"
  13.     },
  14.     "relationships": {
  15.       "author": {
  16.         "data": {"id": "42", "type": "people"}
  17.       }
  18.     }
  19.   }],
  20.   "included": [
  21.     {
  22.       "type": "people",
  23.       "id": "42",
  24.       "attributes": {
  25.         "name": "John",
  26.         "age": 80,
  27.         "gender": "male"
  28.       }
  29.     }
  30.   ]
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement