meta { name: Create Media Rating, type: http, seq: 1 } post { url: "/api/media-items/{{ _.mediaItemId }}/rating" headers: { Authorization: "Bearer {{ _.token }}", Content-Type: "application/json" } body: { rating: {{ _.rating }} } } tests: { test_create_rating_success: { status: 201, headers: { "content-type": "application/json" } } }