25 lines
390 B
YAML
25 lines
390 B
YAML
info:
|
|
name: Update Movie
|
|
type: http
|
|
seq: 4
|
|
|
|
http:
|
|
method: PUT
|
|
url: "{{URL}}{{VERSION}}/movies/{{MOVIE_ID}}"
|
|
body:
|
|
type: json
|
|
data: |-
|
|
{
|
|
"title": "Sinners",
|
|
"runtime": "120 mins",
|
|
"year": 2025,
|
|
"genres": ["action", "horror"]
|
|
}
|
|
auth: inherit
|
|
|
|
settings:
|
|
encodeUrl: true
|
|
timeout: 0
|
|
followRedirects: true
|
|
maxRedirects: 5
|