Stepflow Logo
Stepflow API Docs
OverviewFeedback

Feedback API

View and manage user feedback submissions from the Stepflow platform.

POST
/feedback
Auth Required

Submit feedback from the mobile app


Request Body
{
  "message": "string",
  "type": "bug | feature_request | general"
}

Example Request
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"
  }'

Example Response
{
  "userId": "user123",
  "message": "Great app!",
  "type": "general",
  "status": "pending",
  "createdAt": "2024-01-01T00:00:00.000Z",
  "updatedAt": "2024-01-01T00:00:00.000Z"
}