Suggestion
Manage suggestions, which represent recommendations or hints for users or the system.
You can search for suggestions with advanced filtering and pagination.
- Version
- 2.0.0
- OpenAPI version
- 3.0.0
Authentication
Section titled “ Authentication ”OAuth2
Section titled “OAuth2 ”Security scheme type: oauth2
Flow type: password
Token URL: https://auth.4hse.com/realms/4hse/protocol/openid-connect/token
AccessToken
Section titled “AccessToken ”Security scheme type: apiKey
Query parameter name: access-token
Operations
Section titled “Operations” POST /v2/suggestion/index
Returns a paginated and filterable list of suggestions.
Use POST to allow complex filters via JSON payload.
Authorizations
Section titled “Authorizations ”Request Body
Section titled “Request Body ”Parameters for searching suggestions
object
object
The unique identifier for the suggestion.
The type of the suggestion.
Additional data related to the suggestion, in JSON format.
Field to sort by. Prefix with minus for descending order (e.g. -type).
Example
{ "filter": { "type": "improvement" }, "per-page": 10, "page": 1, "sort": "type"}Responses
Section titled “ Responses ”List of suggestions
object
The unique identifier for the suggestion.
The type of the suggestion.
Additional data related to the suggestion, in JSON format.
Example
{ "suggestion_id": "sug-1", "type": "improvement", "data": "{\"message\":\"Add a new feature\"}"}Headers
Section titled “Headers ”Current page
Total number of pages
Number of items per page
Total number of items
GET /v2/suggestion/view/{id}
Retrieve a suggestion by its unique ID.
Authorizations
Section titled “Authorizations ”Path Parameters
Section titled “Path Parameters ”ID of the suggestion to retrieve
Responses
Section titled “ Responses ”Suggestion found
object
The unique identifier for the suggestion.
The type of the suggestion.
Additional data related to the suggestion, in JSON format.
Example
{ "suggestion_id": "sug-1", "type": "improvement", "data": "{\"message\":\"Add a new feature\"}"}Suggestion not found