Product Localisation
Fetch the list of all available languages.
Limit the number of languages to fetch
Skip the first 'n' number of languages
Search for languages by keyword
Count the number of languages available
Successfully retrieved language list
Bad Request
Unauthorized
Internal Server Error
GET /backend/api/list/language HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>successfully got the complete language list</message>
</object>
Retrieves the list of product translations for the vendor.
The offset for pagination
The number of products to retrieve per page
Keyword for searching products by name, SKU, etc.
Filter by product name
Filter by SKU of the product
Successfully retrieved product translation list
Bad Request
Unauthorized
Internal Server Error
GET /backend/api/vendor-product-translation/product-translation HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully Got Product Translation List</message>
</object>
Fetches the product translation details for a given translation ID.
The ID of the product translation to retrieve
Successfully retrieved product translation details.
Bad Request
Unauthorized
Product translation not found
Internal Server Error
GET /backend/api/vendor-product-translation/{productId}/product-translation HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully Got Product Translation Detail</message>
</object>
Saves product translation details for a specific translation ID.
The ID of the product translation to update
Product translation saved successfully.
Bad Request
Unauthorized
Internal Server Error
POST /backend/api/vendor-product-translation/{productId}/product-translation HTTP/1.1
Host: 139.59.67.17
Authorization: text
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 83
"productTranslation=[{'languageId':1,'name':'text','description':'text','id':1}]"
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully Saved Product Translation</message>
</object>
Last updated