Skip to main content
PUT
/
api
/
admin
/
feedback
/
{id}
Update feedback
curl --request PUT \
  --url https://pria.praxislxp.com/api/admin/feedback/{id} \
  --header 'Content-Type: application/json' \
  --header 'x-access-token: <api-key>' \
  --data '
{
  "status": "pending",
  "adminNotes": "<string>"
}
'
{
  "success": true,
  "message": "User institution deleted successfully"
}

Authorizations

x-access-token
string
header
required

JWT token passed in x-access-token header

Path Parameters

id
string
required

Feedback ID

Body

application/json
status
enum<string>

Updated status

Available options:
pending,
reviewed,
resolved
adminNotes
string

Admin notes

Response

Feedback updated successfully

success
boolean
Example:

true

message
string

Success message

Example:

"User institution deleted successfully"