cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

GetCategorySpecificsRequest : HTTP 301 ERROR

Hi,

 

public GetCategorySpecificsResponseType getCategorySpecific(string[]ID)
{

GetCategorySpecificsResponseType res = new GetCategorySpecificsResponseType();
try
{
var collection = new StringCollection(ID);
var categoryspecificrequest = new GetCategorySpecificsRequestType();
categoryspecificrequest.CategoryID = collection;

var detail = categoryspecificrequest.DetailLevel = new DetailLevelCodeTypeCollection();
detail.Add(DetailLevelCodeType.ReturnAll);

 

res = (GetCategorySpecificsResponseType)ApiCall.ExecuteRequest(categoryspecificrequest);

}
catch (Exception ex)
{


}

return res;
}

 

The ExecuteRequest method in the method above keeps throwing http 301 error. Could you please help me

 

Thank you

Message 1 of 1
latest reply
0 REPLIES 0