Delete Bulk SalesOrders
Deletes the details of a SalesOrders object that has been previously created.
Parameters
Path Params | |
---|---|
yourCompany: | string The Company name need to passed in the base URL.For eg. if you enter xyzcompany name, the url https://{yourCompany}.agiliron.net/agiliron/api-40.php/Bulk-SalesOrder will change to https://xyzcompany.agiliron.net/agiliron/api-40.php/Bulk-SalesOrder |
callback_url | string The callback URL need to passed in the base URL , which means after the code execution this file gets called.For eg. https://abc.php, the url https://{yourCompany}.agiliron.net/agiliron/api-40.php/Bulk-SalesOrder?callback_url=https://abc.php&key=xyzkey In this case after execution of code the curl call will made on https://abc.php. |
sendRecordNo | string The value as true or false need to passed for this parameter in the base URL.For eg. if you want record number with response then send value as true ,For eg. https://xyzcompany.agiliron.net/agiliron/api-40.php/Bulk-SalesOrder&key=xyzkey&sendRecordNo=true. By default it will be false. |
Header Params | |
---|---|
Accept: | string API key needs to be passed in this variable.The option to enter API key will appear when you click on Try it button. |
Query Auth | |
---|---|
key: | string API key needs to be passed in this variable.The option to enter API key will appear when you click on Try it button.This will be the first option in AUTHENTICATION block.Default is SET to 0. |
Header Auth | |
---|---|
apiKey: | string Dedicated API key needs to be passed in this variable via header.The option to enter API key will appear when you click on Try it button.This will be the second option in AUTHENTICATION block.Default is SET to 0. |
Sample Code
{
"Orders": {
"Order": [
{
"AgilironOrderNo": "1232"
},
{
"AgilironOrderNo": "2121"
}
]
}
}
<Orders>
<Order>
<AgilironOrderNo>1232</AgilironOrderNo>
</Order>
<Order>
<AgilironOrderNo>2121</AgilironOrderNo>
</Order>
</Orders>
Sample Response
{
"MCM": {
"response": {
"objectType": "Orders",
"syncTime": "2021-12-28 00:56:41"
},
"parameters": {
"results": {
"message": {
"status": "Success",
"success_message": " Bulk SalesOrder Delete Initiated Successfully. "
}
}
}
}
}
<MCM>
<response>
<objectType>Orders</objectType>
<syncTime>2021-06-11 04:13:24</syncTime>
</response>
<parameters>
<results>
<message>
<status>Success</status>
<success_message> Bulk SalesOrder Delete Initiated Successfully. </success_message>
</message>
</results>
</parameters>
</MCM>
WADL
<?xml version="1.0" encoding="utf-8"?>
<application>
<resources base="https://{yourCompany}.agiliron.net/agiliron/api-40/">
<resource path="Bulk-SalesOrder">
<method name="DELETE">
<resource path="{filter}">
<request>
<param name="key" type="xsd:string" style="query" required="true"/>
</request>
<response status="200">
<representation mediaType="application/xml" element="yn:ResultSet"/>
</response>
<response status="400">
<representation mediaType="application/xml" element="ya:Error"/>
</response>
</method>
</resource>
</resources>
</application>
Sample Webhook
<?php
$url = "https://{your_custom_url}"; //this custom url will be called after the code is executed
$curlConn = curl_init();
curl_setopt($curlConn, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($curlConn, CURLOPT_POSTFIELDS,$results); //$results contain the result set
curl_setopt($curlConn,CURLOPT_URL,$url);
curl_setopt($curlConn, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($curlConn, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($curlConn, CURLOPT_RETURNTRANSFER, 1);
$ret = curl_exec($curlConn);
?>
<result>
<SuccessNumber>1</SuccessNumber>
<FailureNumber>1</FailureNumber>
<Success>
<SalesOrder>
<OrderNo>123</OrderNo>
<SalesOrderId>23432</SalesOrderId>
</SalesOrder>
</Success>
<Failure>
<SalesOrder>
<OrderNo></OrderNo>
<Message>Order No cannot be blank</Message>
</SalesOrder>
</Failure>
</result>
{
"result": {
"SuccessNumber": "1",
"FailureNumber": "1",
"Success": {
"SalesOrder": {
"OrderNo": "123",
"SalesOrderId": "23432"
}
},
"Failure": {
"SalesOrder": {
"OrderNo": "",
"Message": "Order No cannot be blank"
}
}
}
}
Updated over 1 year ago