
The Stepflow Mobile API provides an endpoint for submitting feedback from the mobile application. All endpoints require JWT authentication via AWS Cognito.
https://api.stepflow.com.auAll API endpoints require JWT authentication. Include the JWT token in the Authorization header of your requests:
Authorization: Bearer YOUR_JWT_TOKEN
All API responses follow a consistent format:
{
"statusCode": 200,
"headers": {
"Content-Type": "application/json"
},
"body": "{\"data\": ...}"
}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