POST api/v100/stores/{storeID}/feedback
Evaluate site service experience after a transaction.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| storeID |
Store In use. |
string |
Required |
Headers
| Name | Description | Type | Additional information |
|---|---|---|---|
| appkey |
Ej. abcdefghijk |
None. |
|
| session |
Ej. 1234567890 |
None. |
Body Parameters
RqFeedbackQuestions| Name | Description | Type | Additional information |
|---|---|---|---|
| transactionID |
|
string |
Required |
| overallExperience |
Overall experience evaluation (values 1 to 5) |
integer |
Required |
| userComments |
String containing a user comment |
string |
Required |
| feedback |
Array of user evaluations. May contain no objects, but the array must be present. |
Collection of Feedbacks |
Required |
Request Formats
application/json, text/json
Sample:
{
"transactionID": "sample string 1",
"overallExperience": 2,
"userComments": "sample string 3",
"feedback": [
{
"dimensionID": "sample string 1",
"evaluation": 2
},
{
"dimensionID": "sample string 1",
"evaluation": 2
}
]
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Result| Name | Description | Type | Additional information |
|---|---|---|---|
| resultMessage |
Description of the Result |
string |
Required |
| resultCode |
Result Code for the Specified Action |
integer |
Required |
| stackTrace |
Additional debugging information |
string |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.