Question and Answer
Fetches the list of product questions with optional filters.
Number of records to return.
Number of records to skip.
Search keyword to filter results.
Flag to include count in the response.
Start date for filtering results (YYYY-MM-DD).
End date for filtering results (YYYY-MM-DD).
Filter results by product name.
Filter results by price.
Filter results by status.
Successfully got the complete product list.
Bad Request
Internal Server Error
GET /backend/api/vendor-product-question/vendor-product-question-list HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>text</message>
</object>
Fetches a list of product questions based on filters such as product ID, SKU, and search keyword.
The ID of the product to fetch questions for.
Number of records to return. Use 0 for no limit.
Number of records to skip.
Search keyword to filter questions.
Flag to include a count in the response. Use 'true' or 'false'.
The SKU ID of the product.
Successfully retrieved the product question list.
Bad Request
Internal Server Error
GET /backend/api/vendor-product-question/question-list HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>text</message>
</object>
Fetches detailed information about a specific product by its ID.
The ID of the product to retrieve details for.
Successfully retrieved product details.
Bad Request
Product not found
Internal Server Error
GET /backend/api/vendor-product/{id} HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully get productDetail</message>
</object>
Allows a user to post a new question for a product.
The question being asked about the product
The answer to the question
The ID of the product related to the question
The SKU ID of the product related to the question
Successfully posted the question.
Bad Request
Internal Server Error
POST /backend/api/vendor-product-question/add-question HTTP/1.1
Host: 139.59.67.17
Authorization: text
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 59
"question='text'&answer='text'&productId=1&skuId=1"
<?xml version="1.0"?>
<object>
<status>1</status>
<message>text</message>
</object>
Updates the status (active/inactive) of a specific product question by its ID.
The ID of the question to update
The ID of the question
The new status of the question (e.g., 0 for inactive, 1 for active)
Successfully updated the question status.
Bad Request
Question not found
Internal Server Error
PUT /backend/api/vendor-product-question/update-question-status/{questionId} HTTP/1.1
Host: 139.59.67.17
Authorization: text
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 27
"questionId=1&status=1"
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Updated Your Question Status</message>
</object>
Deletes a product question by its ID.
The ID of the question to delete
Successfully deleted the question.
Question not found
Internal Server Error
DELETE /backend/api/vendor-product-question/delete-question/{questionId} HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>text</message>
</object>
Last updated