GET feedback/show/:id.json
show

GET feedback/show/:id.json

Returns a single Feedback response for the specified ID in the URL.

Resource Information

Response formats JSON
Requires authentication? Yes (user context only)
Rate limited? Yes
Requests / 15 min window (user auth) 180

Parameters

feedback_id (required) Required in path.

Response Values

score The user provided score response. 1­5 if type is CSAT. 0­10 if type is NPS.
text The user provided text response.

Example Result

{
  "created_at": "SatDec1517:58:20+00002015",
  "updated_at": "SatDec1517:59:22+00002015",
  "id": "123456789"
  "text": "Thankyouforbeingaloyalcustomer!",
  "media_id_str": 12345,
  "response": {
    "score": {
      "created_at": "SatDec1518:59:22+00002015",
      "value": 1
    },
    "text": {
      "created_at": "SatDec1518:59:52+00002015",
      "value": "I<3thisbiz"
    }
  }
}

Note

Response object will only be present if data is available.