api/ProductPrice/Delete (POST)

Deletes an existing Product Price using the supplied keys.
HTTP Method: POST
Required Fields: PART_ID, PRICE_CODE, EFFECTIVE_DATE, ORDER_QTY to locate the record
Requires an Authentication Token in the AuthToken HTTP header. Authentication Tokens are obtained from api/Security/Login (POST).
Returns nothing.

Request Information

Parameters

NameDescriptionAdditional information
RequestData
This is a JSON object containing Product Price keys.

Delete Product Price Example:
{
  "PART_ID": "646-7202",
  "PRICE_CODE": "LP",
  "EFFECTIVE_DATE": "10/10/2014",
  "ORDER_QTY": "1000"
}
Returns nothing if successful.
This is like 'Delete' in Expandable.

Accepted Product Price Fields:
PART_ID, PRICE_CODE, EFFECTIVE_DATE, ORDER_QTY

Define this parameter in the request body.

Response Information

Success:
200/OK
Body contains empty JSON object.

Error:
400/Request JSON is invalid.
401/AuthToken was not provided.
401/AuthToken is malformed.
401/AuthToken is expired.
401/AuthToken login failure.
500/(Message)
Body contains JSON object with Message and MessageCode.

Returned Product Price Fields:
(None)