It looks like you are declaring an int led in the first part. But then in the looped code, you use a variable called pump to read the analog input.
Then further down you use uri += String(led);
Since led hasn't been assigned a value, adding it to the uri string will have unexpected results.
Try this:
change int led to int pump
change uri += String(led); to uri += String(pump);