Last active
June 7, 2016 08:18
-
-
Save groyoh/4c535ed6cc5aa3e61288e741b5c1ea6e to your computer and use it in GitHub Desktop.
Action example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "links": { | |
| "self":{ | |
| "href": "http://www.example.org/v1/posts/1/comments?page[number]=2&page[size]=10", | |
| "meta": { | |
| "method": "GET" | |
| } | |
| }, | |
| "previous":{ | |
| "href": "http://www.example.org/v1/posts/1/comments?page[number]=1&page[size]=10", | |
| "meta": { | |
| "method": "GET" | |
| } | |
| }, | |
| "next":{ | |
| "href": "http://www.example.org/v1/posts/1/comments?page[number]=2&page[size]=10", | |
| "meta": { | |
| "method": "GET" | |
| } | |
| }, | |
| "create":{ | |
| "href": "http://www.example.org/v1/posts/1/comments", | |
| "meta": { | |
| "method": "POST" | |
| } | |
| } | |
| }, | |
| "data":[{ | |
| "id": "ae0369e3-490a-4281-bfa2-1609f75805b5", | |
| "type": "comment", | |
| "links": { | |
| "related": { | |
| "href": "http://www.example.org/v1/posts/1/comments/ae0369e3-490a-4281-bfa2-1609f75805b5", | |
| "meta": { | |
| "method": "GET" | |
| } | |
| }, | |
| "update": { | |
| "href": "http://www.example.org/v1/posts/1/comments/ae0369e3-490a-4281-bfa2-1609f75805b5", | |
| "meta": { | |
| "method": "PUT" | |
| } | |
| }, | |
| "delete": { | |
| "href": "http://www.example.org/v1/posts/1/comments/ae0369e3-490a-4281-bfa2-1609f75805b5", | |
| "meta": { | |
| "method": "DELETE" | |
| } | |
| } | |
| } | |
| }, | |
| { | |
| "id": "1d90eeaa-f7d1-406e-91df-1c3c7f3a5676", | |
| "type": "comment", | |
| "links": { | |
| "related": { | |
| "href": "http://www.example.org/v1/posts/1/comments/1d90eeaa-f7d1-406e-91df-1c3c7f3a5676", | |
| "meta": { | |
| "method": "GET" | |
| } | |
| } | |
| } | |
| }] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment