18 lines
307 B
YAML
18 lines
307 B
YAML
name: add movie
|
|
method: POST
|
|
url: http://localhost:8000/movies
|
|
body:
|
|
content: |-
|
|
{
|
|
"title": "point break",
|
|
"year": 1991,
|
|
"genre": [
|
|
"action"
|
|
],
|
|
"director_id": "string"
|
|
}
|
|
content_type: application/json
|
|
headers:
|
|
- name: content-type
|
|
value: application/json
|