Commerce
Get v1commercewabasethemes
GET
/
v1
/
commerce
/
wabase
/
themes
/
{themeId}
cURL
curl --request GET \
--url https://api.wazapin.com/v1/commerce/wabase/themes/{themeId}const options = {method: 'GET'};
fetch('https://api.wazapin.com/v1/commerce/wabase/themes/{themeId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.wazapin.com/v1/commerce/wabase/themes/{themeId}"
response = requests.get(url)
print(response.text){
"error": {
"code": "<string>",
"message": "<string>",
"details": [
{
"message": "<string>",
"code": "<string>",
"field": "<string>",
"location": "<string>"
}
],
"request_id": "<string>"
}
}Path Parameters
Wabase registry theme id
Minimum string length:
1Response
OK
⌘I
cURL
curl --request GET \
--url https://api.wazapin.com/v1/commerce/wabase/themes/{themeId}const options = {method: 'GET'};
fetch('https://api.wazapin.com/v1/commerce/wabase/themes/{themeId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.wazapin.com/v1/commerce/wabase/themes/{themeId}"
response = requests.get(url)
print(response.text){
"error": {
"code": "<string>",
"message": "<string>",
"details": [
{
"message": "<string>",
"code": "<string>",
"field": "<string>",
"location": "<string>"
}
],
"request_id": "<string>"
}
}