Skip to main content

Survey

A survey is a set of questions that you can send to your customers to gather feedback about your product or service. You can create a survey using the Moveo platform and send it to your customers. See Survey Response for more details.

Template​

If you want to jump straight into some template code, go to our integration-guides repository on GitHub.

How to create your own survey​

To create your own survey, follow the steps described in the How to create your own webview guide. The main difference with a regular webview is the data submission, which you should do by making an HTTP POST request to: https://channels.moveo.ai/v1/survey/${integration_id}, using the following headers and body:

headers: {
Authorization: `Bearer ${signature}`,
'X-Moveo-Session-Id': sessionId,
}
  body: {
session_id: sessionId,
timestamp: Date.now(), // unix timestamp,
feedback: 'Everything was awesome',
rating: 5
}