Retrieve products emails - celdotro/marketplace GitHub Wiki
Retrieve all unanswered emails about products
EmailCommunication
getProductEmails
- method: email
- action: getProductEmails
(optionally) product_model = product's model to be searched
An object with the following attributes
- array = found questions
- id = ID-ul intrebarii
- nume = client's name
- intrebare = question's content
- data = question's date
https://github.com/celdotro/marketplace_examples/blob/master/Email/6.getProductEmails.php
{
"request": {
"product_model": "X"
},
"response": {
"0": {
"id": 1,
"nume": "X",
"intrebare": "X",
"data": "01-01-2018"
}
}
}