Stepflow Logo
Stepflow API Docs
OverviewFeedback
Stepflow Logo

Stepflow API Documentation

API documentation for feedback submission

The Stepflow Mobile API provides an endpoint for submitting feedback from the mobile application. All endpoints require JWT authentication via AWS Cognito.

Base URL

https://api.stepflow.com.au

Authentication

All API endpoints require JWT authentication. Include the JWT token in the Authorization header of your requests:

Authorization: Bearer YOUR_JWT_TOKEN

API Resources

Feedback

1 endpoint

Submit feedback from the mobile app

Response Format

All API responses follow a consistent format:

{
  "statusCode": 200,
  "headers": {
    "Content-Type": "application/json"
  },
  "body": "{\"data\": ...}"
}

Error Handling

Errors are returned in the following format:

{
  "statusCode": 400,
  "body": "{\"message\": \"Error description\"}"
}

Common HTTP status codes:

  • 200 - Success

  • 400 - Bad Request

  • 401 - Unauthorized

  • 500 - Internal Server Error