Skip to content

Commit

Permalink
Merge pull request #5794 from tjsturos/fix-ra-data-json-server-create…
Browse files Browse the repository at this point in the history
…-method-docs

Fix Create method API call URL example
  • Loading branch information
fzaninotto authored Jan 18, 2021
2 parents 3cf8e16 + 0c025a7 commit f7d978d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ra-data-json-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ This Data Provider fits REST APIs powered by [JSON Server](https://github.com/ty
| `getOne` | `GET http://my.api.url/posts/123` |
| `getMany` | `GET http://my.api.url/posts?id=123&id=456&id=789` |
| `getManyReference` | `GET http://my.api.url/posts?author_id=345` |
| `create` | `POST http://my.api.url/posts/123` |
| `create` | `POST http://my.api.url/posts` |
| `update` | `PUT http://my.api.url/posts/123` |
| `updateMany` | `PUT http://my.api.url/posts/123`, `PUT http://my.api.url/posts/456`, `PUT http://my.api.url/posts/789` |
| `delete` | `DELETE http://my.api.url/posts/123` |
Expand Down

0 comments on commit f7d978d

Please sign in to comment.