Community Forum
Product Images
Hello,
After importing product SKUs, how do I add respective images to the products?
Posted by Diego Straessler about 1 month ago
ServiceNow Integration
Hello,
Has anyone integrated with ServiceNow? If so, was it OOTB? Can you provide some insight into the process?
Posted by Dan V 3 months ago
Getting orders
var options = new RestClientOptions("<https://prod01-apigw.companyx.fabric.zone/api-order/orders/orderNumber/"+OrderID)>;
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("accept", "application/json");
request.AddHeader("x-api-key", "aasdfsadf");
try
{
var response = await client.GetAsync(request);
string tmp = response.Content;
OrdersListAPI.OrdersContainer Orders = GetOrderList(tmp);
ShowOrders(Orders);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
When I run the code I get InternalServerError. Any idea what I am doing wrong?
Posted by Dewey Paulovich 3 months ago