|
1234567891011121314151617181920212223242526 |
- meta {
- name: Create Resource
- type: http
- seq: 5
- }
-
- post {
- url: http://localhost:3000/api/users
- body: json
- auth: none
- }
-
- headers {
- Content-Type: application/json
- }
-
- body:json {
- {
- "firstName": "John",
- "middleName": "Smith",
- "lastName": "Doe",
- "birthday": "1986-04-20",
- "bio": "This is my profile!"
- }
-
- }
|