Remove Legal Hold from a Customer
1 min
code examples curl request post \\ \ url https //api upstartcommerce com/v1/customer/legal hold/{customerid} \\ \ header 'accept application/json' \\ \ header 'content type application/json' \\ \ header 'x upstart tenant string' \\ \ header 'x upstart site string' \\ \ data '{ "reason" "" }'var myheaders = new headers(); myheaders append("accept", "application/json"); myheaders append("content type", "application/json"); myheaders append("x upstart tenant", "string"); myheaders append("x upstart site", "string"); var raw = json stringify({ "reason" "" }); var requestoptions = { method 'post', headers myheaders, body raw, redirect 'follow' }; fetch("https //api upstartcommerce com/v1/customer/legal hold/{customerid}", requestoptions) then(response => response text()) then(result => console log(result)) catch(error => console log('error', error));require "uri" require "json" require "net/http" url = uri("https //api upstartcommerce com/v1/customer/legal hold/{customerid}") https = net http new(url host, url port) https use ssl = true request = net http post new(url) request\["accept"] = "application/json" request\["content type"] = "application/json" request\["x upstart tenant"] = "string" request\["x upstart site"] = "string" request body = json dump({ "reason" "" }) response = https request(request) puts response read body import requests import json url = "https //api upstartcommerce com/v1/customer/legal hold/{customerid}" payload = json dumps({ "reason" "" }) headers = { 'accept' 'application/json', 'content type' 'application/json', 'x upstart tenant' 'string', 'x upstart site' 'string' } response = requests request("post", url, headers=headers, data=payload) print(response text) responses // legal hold removed successfully // the request contained information that the server was unable to process appropriate errors are provided in the response body \[ { "name" "", "code" "", "detail" "", "reason" "" } ]// the provided credentials were not valid for this endpoint { "name" "", "code" "", "detail" "", "reason" "" }// user's roles are insufficient for this endpoint { "name" "", "code" "", "detail" "", "reason" "" }// the requested resource was not found { "name" "", "code" "", "detail" "", "reason" "" }// there was an internal server error { "name" "", "code" "", "detail" "", "reason" "" }