Skip to main content
POST
/
v1
/
feedback
/
{feedbackId}
/
process
Process feedback
curl --request POST \
  --url https://api.vistaly.com/v1/feedback/{feedbackId}/process \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "cardIds": [
    "<string>"
  ]
}
'
{
  "id": "<string>",
  "processed": true,
  "attachedCardIds": [
    "<string>"
  ],
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

feedbackId
string
required

The unique identifier for the feedback

Body

application/json
cardIds
string[]

Optional array of card IDs to attach the feedback to. Attaching highlights the entire feedback and creates an insight linked to these cards.

Response

Feedback processed successfully

id
string
required

The unique identifier of the feedback.

processed
boolean
required

Whether the feedback is now processed (true on success).

attachedCardIds
string[]
required

The card IDs the feedback was attached to (empty if none were provided).

message
string
required

Human-readable success message.