API Version Auth Token Data Sources Server Time
AP Check Update AP Invoice Entry
AR Invoice Entry AR Remittance Entry
GL Account
Adjustments Entry Backflush Kit Issue Issues Entry Part Physical Count Entry Stock Status Stores Transfer
Serial Number Cross Reference WIP Completions Entry
Lot
Multiple Location
Bill of Material
Purchase Order PO Receipts Entry Receipt Transaction Vendor Vendor Contact Vendor Part
Customer Customer Contact Customer Part
Product Price
Sales Order Serial Number Shipments Entry Shipment Transaction




Product Price, Delete

Deletes an existing Product Price using the supplied data.

URL
/api/product-price-delete
Request Method
POST
Expandable Program
Product Price Editor (SOEPL)
Required Fields
PART_ID
PRICE_CODE
EFFECTIVE_DATE
ORDER_QTY
AUTH_TOKEN
Auth Token
This API call requires an Authentication Token ("Auth Token") for the required field AUTH_TOKEN. Auth Tokens are obtained from Auth Token, Get.
Example Request JSON
{
  "PART_ID": "PUMP002",
  "PRICE_CODE": "LP",
  "EFFECTIVE_DATE": "2014-10-10",
  "ORDER_QTY": "1000",
  "AUTH_TOKEN": ""
}
Full Request JSON
{
  "PART_ID": "",
  "PRICE_CODE": "",
  "EFFECTIVE_DATE": "",
  "ORDER_QTY": "",
  "AUTH_TOKEN": ""
}
Success Response
Returned HTTP status indicates success:

200/OK

Returned JSON contains nothing:
{}
Failure Response
Returned HTTP status indicates failure:

400/Request JSON is invalid.
401/Auth Token was not provided.
401/Auth Token is malformed.
401/Auth Token login failure.
405/Request method must be POST.
500/(Error Message)

Returned JSON contains error information for the failed Product Price deletion:
{
  "MESSAGE": "",
  "MESSAGE_CODE": ""
}
Try the API