POST
/
users
/
feedback
curl --request POST \
  --url https://api.altostrat.io/users/feedback \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "subject": "<string>",
  "message": "<string>",
  "location": "<string>"
}'
{
  "message": "Feedback sent!"
}

Authorizations

Authorization
string
header
required

Standard OAuth2 flow for user authentication. Use Authorization Code Grant or Implicit Grant. JWT Bearer tokens obtained are used for subsequent requests.

Body

application/json
subject
string
required

Subject of the feedback/ticket.

message
string
required

Detailed feedback message.

location
string
required

Location/context within the app where feedback originates (e.g., dashboard, billing-page).

Response

202
application/json
Feedback submitted successfully.
message
string
Example:

"Feedback sent!"