|
12345678910111213141516171819202122232425 |
- meta {
- name: Modify Post (Delta)
- type: http
- seq: 5
- }
-
- patch {
- url: http://localhost:6969/api/posts/9ba60691-0cd3-4e8a-9f44-e92b19fcacbc
- body: json
- auth: none
- }
-
- headers {
- Content-Type: application/json-patch+json
- }
-
- body:json {
- [
- {
- "op": "replace",
- "path": "content",
- "value": "I changed the value via delta."
- }
- ]
- }
|