Dear all,
i'm trying to delete a specific image by using DeleteInputs API call.
client.DeleteInputs(sID).ExecuteAsync().Start();
where sID is the input ID.
with C#, it doesn't work.
with Python, it works fine with the this call : app.inputs.delete(sID)
in addition, when i try to delete all inputs from c# by calling : client.DeleteAllInputs().ExecuteAsync().Start() <- works fine.
could you please tell me what am i doing wrong to delete a specific ID from C# ?
thank you!
l,b