-
Updating a Web Stream's URL with the updateMask
Hey there!
So, here’s what I’m wrestling with. I’m trying to switch up a stream URL using this API[1].
Google UI hinted that I can change up the defaultUri in the request body.[2]
But it seems this only works with the proper updateMask[3].Playing by the book here, I attempted to use the webStreamData.defaultUri updateMask.
Yet, I’m getting back a 400 error from the API.{ "error": { "code": 400, "message": "One or more values in the field 'update_mask.paths_list' was invalid, but all values must be valid: web_stream_data.default_uri", "status": "INVALID_ARGUMENT" } }
I also gave web_stream_data.default_uri a whirl but ended up with the same error.
Any ideas to help me suss out the right updateMask?
Catch you later,
Patricia[2]Request body
{ "webStreamData": { "defaultUri": "" } }
Log in to reply.