Append feedback
Store transactional feedback records as you send contact data to us
Overview
Storing feedback
"account_id": 3,
"email: "johnsmith@gmail.com",
//...etc...
"feedback": [
{
"type_id": 1, // positive
"source_id": 1, // website
"unit_id": 8775,
"comments": [
{
"type": "Toilets",
"note": "Recently cleared and sparkling!"
},
{
"type": "Other Comments",
"note": "Had a great time, will definitely return!"
}
],
"ratings": [
{
"category_id": 1, // Food
"rating_text": "Excellent",
"contact_note": "Food was super tasty."
},
{
"category_id": 2, // Drink
"rating_text": "Good",
"contact_note": "Drinks were great, if a little expensive."
},
{
"category_id": 3, // Service
"rating_text": "Poor",
"contact_note": "We had to wait 15 minutes to pay at the end."
},
{
"category_id": 4, // NPS
"rating_text": "8",
"contact_note": "Would definitely recommend to a friend"
}
]
}
]Last updated