06-13-2023 08:08 AM
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