View and manage user feedback submissions from the Stepflow platform.
/feedbackSubmit feedback from the mobile app
{
"message": "string",
"type": "bug | feature_request | general"
}curl -X POST "https://api.stepflow.com.au/feedback" \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"message": "Great app!",
"type": "general"
}'{
"userId": "user123",
"message": "Great app!",
"type": "general",
"status": "pending",
"createdAt": "2024-01-01T00:00:00.000Z",
"updatedAt": "2024-01-01T00:00:00.000Z"
}