POST - ExecuteOrderSteps

Manually designate an order to be processed

URL

Verb Url Json object
POST - Basic authentication /api/CustomerOrder APICustomerOrder

Request Parameters

Parameter Description Format
ShopCode Shop identifier as provided with your account string
Order Identifier Order identifier of the requested order string

Response Elements

Success

Code Samples

C#.net

            
        public async void Post(List<APIObject> APIObjects, string Url, string SourceUser, SourcePassword)
        {
            using (System.Net.Http.HttpClient client = new System.Net.Http.HttpClient())
            {

                System.Net.Http.HttpContent content = Newtonsoft.Json.JsonConvert.SerializeObject(APIObjects);

                string credentials = Convert.ToBase64String(ASCIIEncoding.ASCII.GetBytes(SourceUser + ":" + SourcePassword));
                content.Headers.Add("Authorization", "Basic " + credentials);

                var response = await client.PostAsync(Url, content);

                var responseString = await response.Content.ReadAsStringAsync();
            }
        }