This section provides detailed information about the Feedback API available on our platform. The API allows users to submit feedback and reviews for various products and services.

API Endpoint

The Feedback API endpoint is /en/api-docs/feedback. This endpoint is used to submit feedback data.

Request Method

  • Method: GET

Query Parameters

  • language: Optional. Specifies the language of the feedback. Default is English (en).

Response

The response will be in JSON format and will contain the following fields:

  • status: Indicates the status of the API request (success or error).
  • message: A message related to the status.
  • data: Contains the feedback details if the request was successful.
{
  "status": "success",
  "message": "Feedback submitted successfully.",
  "data": {
    "feedback_id": "123456",
    "user_id": "789012",
    "feedback": "Great product, love the design!",
    "rating": 5
  }
}

Usage Example

To submit feedback, make a GET request to /en/api-docs/feedback?language=en with the necessary query parameters.

For more information on how to use this API, please refer to our Developer Guide.

Feedback Form