|
12345678910111213141516171819202122 |
- meta {
- name: Patch Resource
- type: http
- seq: 7
- }
-
- patch {
- url: http://localhost:3000/api/users/1
- body: json
- auth: none
- }
-
- headers {
- Content-Type: application/json
- }
-
- body:json {
- {
- "bio": "This is my updated bio!"
- }
-
- }
|