POST api/Admin/NewRoute
New Route Creation
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
beData | No documentation available. |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{ "PassKey": "sample string 1", "RouteId": 2, "Name": "sample string 3", "Alias": "sample string 4", "Code": "sample string 5" }
application/xml, text/xml
Sample:
<NewRoute xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SalesOrderAPI.Models.BusinessEntity"> <Alias>sample string 4</Alias> <Code>sample string 5</Code> <Name>sample string 3</Name> <PassKey>sample string 1</PassKey> <RouteId>2</RouteId> </NewRoute>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Response body formats
application/json, text/json
Sample:
{ "IsSuccess": true, "ResponseMSG": "sample string 2" }
application/xml, text/xml
Sample:
<ResponseValue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SalesOrderAPI.Models.Global"> <IsSuccess>true</IsSuccess> <ResponseMSG>sample string 2</ResponseMSG> </ResponseValue>