POST
/
v1
/
feedback
curl --request POST \
  --url https://api.vistaly.com/v1/feedback \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "body": "<string>",
  "feedbackProviders": [
    {
      "firstName": "<string>",
      "lastName": "<string>",
      "email": "jsmith@example.com"
    }
  ],
  "feedbackReceivers": [
    {
      "email": "jsmith@example.com"
    }
  ],
  "timestamp": "2023-11-07T05:31:56Z",
  "url": "https://www.vistaly.com"
}'
{
  "message": "Feedback created"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
body
string
required

The content of the feedback/interview

feedbackProviders
object[]

An array of individuals who provided the feedback/interview, each with their first name (optional), last name (optional), and email

feedbackReceivers
object[]

An array of individuals who received the feedback or conducted the interview. If the individual isn't a member of your Vistaly organization, their value will be ignored.

timestamp
string

The timestamp of when the feedback/interview was captured (defaults to current timestamp if not provided)

url
string

The url where the feedback/interview came from

Example:

"https://www.vistaly.com"

Response

200
application/json
Feedback submitted successfully
message
string
Example:

"System provided message"