You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| GET | /{type} | The server creates a fetch request and calls method "findResources" of the request handler. |
23
23
| GET | /{type}/{id} | The server creates a fetch request and calls method "findResource" of the request handler. |
24
-
| GET | /{type}/{id}/relationship/{relationshipName} | The server creates a fetch request and calls method "findRelationship" of the request handler. |
24
+
| GET | /{type}/{id}/relationships/{relationshipName} | The server creates a fetch request and calls method "findRelationship" of the request handler. |
25
25
| GET | /{type}/{id}/{relationshipName} | The server creates a fetch request and calls method "findRelationship" of the request handler. |
26
26
| POST | /{type} | The server creates a save request and calls method "saveResource" of the request handler. |
27
27
| PATCH | /{type}/{id} | The server creates a save request and calls method "saveResource" of the request handler. |
28
28
| DELETE | /{type}/{id} | The server creates a simple JSON API request and calls method "deleteResource" of the request handler. |
29
-
| POST | /{type}/{id}/relationship/{relationshipName} | The server creates a relationship modification request and calls method "modifyResource" of the request handler. |
30
-
| PATCH | /{type}/{id}/relationship/{relationshipName} | The server creates a relationship modification request and calls method "modifyResource" of the request handler. |
31
-
| DELETE | /{type}/{id}/relationship/{relationshipName} | The server creates a relationship modification request and calls method "modifyResource" of the request handler. |
29
+
| POST | /{type}/{id}/relationships/{relationshipName} | The server creates a relationship modification request and calls method "modifyResource" of the request handler. |
30
+
| PATCH | /{type}/{id}/relationships/{relationshipName} | The server creates a relationship modification request and calls method "modifyResource" of the request handler. |
31
+
| DELETE | /{type}/{id}/relationships/{relationshipName} | The server creates a relationship modification request and calls method "modifyResource" of the request handler. |
0 commit comments