Created by potrace 1.16, written by Peter Selinger 2001-2019

Miva Developer Docs

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.


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": "{{Store_Code}}",
    "Miva_Request_Timestamp": "{{$timestamp}}",
    "Function": "Module",
    "Module_Code": "points",
    "Module_Function": "CustomerPointTransactionList_Process",
    "Customer_Login": "my_customer_login",
    "CustomerPointTransactionIDs": [1, 2, 3]
}

Example Response#

{
    "success": 1
}