The feedback object

Feedback, now known as Surveys in the app, are internal surveys a business can collect from their end clients. Typically, these are measured as NPS or CSAT.

AttributeTypeDescription
messagesarray[string]Message that the survey respondent sent.
location.uidstringPodium unique identifier for location.
location.organizationUidstringPodium unique identifier for organization.
scoreintegerScore the respondent has responded with.
uidstringPodium unique identifier for feedback survey.
channel.typestringMessenger channel for the conversation. Possible values: ["apple", "car_wars", "email", "facebook", "fallback_email", "google", "google_brand", "iframe", "instagram", "phone", "secure", "sms", "text", "whatsapp"]
channel.identifierstringIdentifies the Messenger channel. Must be a valid email address or a phone number. Non-US/Canada numbers must include the country code (e.g. +61 for AUS)
archivedbooleanIf the survey response has been archived.
createdAtstringWhen the survey was created.
updatedAtstringWhen the survey was updated.
adjustedScoreintegerNormalized value representing the survey score an individual responded with. Example with NPS scoring structure a 10 would be a 100 and a 5 would be -100.
attributionsarrayPodium user who the survey is attributed to. For example, the user who was assigned to the customer that the survey was sent to. There may be more than one user who have a single survey attributed to them.
attributions[].typestringType of attribution that is assigned to sending the survey. Possible values: ["integrated_send", "manual_tag", "final"]
attributions[].userUidstringPodium unique identifier for user.
attributions[].userNamestringName of the user attributed to sending the survey.
currentStepstringCurrent step of the flow that the survey is on. Possible values: ["start", "follow_up", "final"]
customerNamestringName of the customer who the survey was sent to.
firstResponseReceivedAtstringWhen the first response to the survey was received.
flowUidstringPodium unique identifier for survey flow.
{
  "messages": [
    "wonderful."
  ],
  "location": {
    "uid": "00000000-0000-0000-0000-000000000000",
    "organizationUid": "00000000-0000-0000-0000-000000000000"
  },
  "score": 5,
  "uid": "00000000-0000-0000-0000-000000000000",
  "channel": {
    "type": "email",
    "identifier": "[email protected]"
  },
  "archived": false,
  "createdAt": "2015-01-23T23:50:07Z",
  "updatedAt": "2015-01-23T23:50:07Z",
  "adjustedScore": 100,
  "attributions": [
    {
      "type": "integrated_send",
      "userUid": "00000000-0000-0000-0000-000000000000",
      "userName": "John Apple"
    }
  ],
  "currentStep": "start",
  "customerName": "Joe Orange",
  "firstResponseReceivedAt": "2015-01-23T23:50:07Z",
  "flowUid": "00000000-0000-0000-0000-000000000000"
}