action wowza_delete_player_url { label: "Delete a player URL" description: "This operation deletes a player URL. " provider: wowza method: DELETE path: "/players/{player_id}/urls/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } player_id: { type: "string" } } required: ["id", "player_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }