Example #1
0
 public HttpResponseMessage GetIFValues(string country, string env, string pipeline)
 {
     try
     {
         var values = Icc.GetPipelineValues(country, env, pipeline);
         return(this.Request.CreateResponse(HttpStatusCode.Created, values));
     }
     catch (Exception ex)
     {
         return(this.Request.CreateResponse(HttpStatusCode.BadRequest, ex));
     }
 }