|
1234567891011121314151617181920212223 |
- meta {
- name: Modify Post (Merge)
- type: http
- seq: 5
- }
-
- patch {
- url: http://localhost:6969/api/posts/9ba60691-0cd3-4e8a-9f44-e92b19fcacbc
- body: json
- auth: none
- }
-
- headers {
- Content-Type: application/merge-patch+json
- }
-
- body:json {
- {
- "title": "Modified Post",
- "content": "I changed the content via merge."
- }
-
- }
|