Functions
Sales Order Due Date Delete API is used to remove existing Due Dates from Existing Sales Orders
URL-{Root URL}/API/SO/DueDateDelete/{API Key}
Parameters
Parameter |
Description |
Required |
Comment |
DueDt_Uniq |
Unique Due Date Identifier |
Y |
|
Example Strings
Delete Schedule Information
URL-?DueDt_Uniq=DUEDT_UNIQ
JSON
{
'DueDt_Uniq':'DUEDT_UNIQ'
}
Successful Requests Should Return
{
"$id": "1",
"Code": 200,
"Message": "$$Sales Order Due Date deleted successfully.",
"SessionId": null,
"IsValidUser": true,
"ResponseObject": null
}
Common Errors
API Key Error
If there is an error with the API key the system will return an error message.
{
"$id": "1",
"Code": 403,
"Message": "Invalid API Key.",
"SessionId": null,
"IsValidUser": false,
"ResponseObject": null
}
URL Error
If there is an error with the entered URL has an error the system will return a "HTTP Resource not found" message.
{
"$id": "1",
"Message": "No HTTP resource was found that matches the request URI 'http://localhost/api/SODueDateDelete/23456789'.",
"MessageDetail": "No type was found that matches the controller named 'SODueDateDelete'."
}
Parameter Error
If one of the entered parameters is invalid the system will fail to add the item price.
{
"$id": "1",
"Code": 403,
"Message": "DueDt_Uniq not provided.",
"SessionId": null,
"IsValidUser": true,
"ResponseObject": null
}
Missing Required Parameter
If a required parameter is missing the system an error message describing the parameter will be returned.
{
"$id": "1",
"Code": 403,
"Message": "DueDt_Uniq not provided.",
"SessionId": null,
"IsValidUser": true,
"ResponseObject": null
}
|