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": "[email protected]",
  "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
text
string
required
Minimum length: 1
painLevel
enum<string>
required
Available options:
UNKNOWN,
LOW,
MEDIUM,
HIGH
email
string
required
origin
enum<string>
Available options:
INAPP,
PORTAL,
API,
SLACK,
SLACK_CONNECT,
INTERCOM,
INTERCOM_ATTACHMENT,
ZENDESK_ATTACHMENT,
FRONT_ATTACHMENT,
EMAIL,
ZAPIER,
HUBSPOT,
PLAIN,
CALENDAR,
WIDGET
projectId
string
issueId
string
notify
object

Response

200
application/json
Successful response
id
string
required