Skip to content

CustomerPointTransactionList_Process#


Description#

This function allows you to process transactional lists when they are pending. Processing the lists will make them not pending and apply to the customer’s points.

Request Body Parameters#

Parameter
Type Description
customer_id
edit_customer
customer_login
Number
String
String
The customer id
The customer login
The customer login
CustomerPointTransactionIDs Array An array of Point Transaction IDs

Response Parameters#

Parameter
Type Description
Success Boolean Value of 1 or 0 if the insert was successful

Example Request#

{
    "Store_code": "beta",
    "Function": "Module",
    "Module_Code": "points",
    "Module_Function": "CustomerPointTransactionList_Process",
    "Customer_Login": "my_customer_login",
    "CustomerPointTransactionIDs": [1, 2, 3]
}

Example Response#

{
    "success": 1
}