Delete Reason Sold
Delete Reason Sold
Marks the existing ReasonSold list item as deleted.
Calls the List agent service SaveFromListDefinition.
Delete Reason Sold
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
using RestSharp;
var options = new RestClientOptions("http://localhost:54464/api/v1/List/ReasonSold/Items/{id}");
var client = new RestClient(options);
var request = new RestRequest("");
var response = await client.DeleteAsync(request);
Console.WriteLine("{0}", response.Content);const options = {method: 'DELETE'};
fetch('http://localhost:54464/api/v1/List/ReasonSold/Items/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "54464",
CURLOPT_URL => "http://localhost:54464/api/v1/List/ReasonSold/Items/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}import requests
url = "http://localhost:54464/api/v1/List/ReasonSold/Items/{id}"
response = requests.delete(url)
print(response.text)Marks the existing ReasonSold list item as deleted.
Calls the List agent service SaveFromListDefinition.
using RestSharp;
var options = new RestClientOptions("http://localhost:54464/api/v1/List/ReasonSold/Items/{id}");
var client = new RestClient(options);
var request = new RestRequest("");
var response = await client.DeleteAsync(request);
Console.WriteLine("{0}", response.Content);const options = {method: 'DELETE'};
fetch('http://localhost:54464/api/v1/List/ReasonSold/Items/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "54464",
CURLOPT_URL => "http://localhost:54464/api/v1/List/ReasonSold/Items/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}import requests
url = "http://localhost:54464/api/v1/List/ReasonSold/Items/{id}"
response = requests.delete(url)
print(response.text)Was this page helpful?