Skip to main content
GET
/
api
/
user
/
feedbacks
Get user feedbacks
curl --request GET \
  --url https://pria.praxislxp.com/api/user/feedbacks \
  --header 'x-access-token: <api-key>'
[
  {
    "_id": "<string>",
    "feedback": "<string>",
    "response": "<string>",
    "created": "2023-11-07T05:31:56Z",
    "email": "<string>",
    "user": "<string>",
    "institution": "<string>",
    "status": "active",
    "__v": 123
  }
]

Authorizations

x-access-token
string
header
required

JWT token passed in x-access-token header

Response

Array of feedback documents

_id
string

Feedback document ID

feedback
string

Feedback text

response
string

Admin response to the feedback (default: empty string)

created
string<date-time>

When the feedback was created

email
string

Email associated with the feedback

user
string

ObjectId of the user who submitted the feedback

institution
string

ObjectId of the user's institution

status
string

Feedback status (default: active)

Example:

"active"

__v
integer

Mongoose version key