POST
/
feedback
curl --request POST \
  --url https://productlane.com/api/v1/feedback \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "text": "<string>",
  "painLevel": "UNKNOWN",
  "origin": "INAPP",
  "email": "jsmith@example.com",
  "projectId": "<string>",
  "issueId": "<string>",
  "notify": {
    "slack": true,
    "email": true
  }
}'
{
  "id": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200
application/json

Successful response

The response is of type object.