Packs List

This endpoint is used for retrieving a list of product's packs, and their details to be used when buying e-pins. Specifically, when initializing a purchase. You will use the CODE of the product's pack you want to purchase.

POST
/ products / listPacks

Request Parameters

Parameter Type Required Description
CLIENT_ID String Yes Partner identifier provided by EpinTower
SIGNATURE String Yes You need to calculate it as mentioned in security section.
- Data to sign in order : CLIENT ID, SECRET KEY
PRODUCT_ID String Yes ID from Product section

Response Parameters

Parameter Type Description
RESPONSE_CODE Integer Returned value of “0” implies transaction is successfully completed.
If the code is not "0", it means an error. See error codes section.
RESPONSE_MESSAGE String Response message for requested transaction
SIGNATURE String You need to calculate it as mentioned in security section.
- Data to sign in order : CLIENT ID, SECRET KEY
DATA JSON
"DATA":[
{
"ID":1,
"NAME":"LegendOnline750",
"PRODUCT_NAME":"xs",
"CODE":"5f1456da41414",
"AMOUNT":"590.00",
"CANCELABLE":false,
"MAX_QUANTITY":10,
"DESCRIPTION":“MMOPRPG”,
"IMAGE":“acs54a651.jpg”
},
{
"ID":2,
"NAME":"LegendOnline300”,
"PRODUCT_NAME":"xs",
“CODE":"5f1456da41a0f",
"AMOUNT":"236.00",
"CANCELABLE":false,
"MAX_QUANTITY":10,
"DESCRIPTION":“MMOPRPG”,
"IMAGE":“0h16v81ab.png”
}
]