List SpokenUrls
GET
/spokenurls/list.json
PARAMETERS LIST
type (string) | Specify url object type: product , category , brand |
GET
/spokenurls/list.json
type (string) | Specify url object type: product , category , brand |
$storeden = new Storeden\Storeden($config);
$spoken_url_list = $storeden->get('/spokenurls/list.json');
{
"brand": {
"1847120": [
{
"locale": "it_IT",
"url": "brand-di-test.html"
},
{
"locale": "en_US",
"url": "test-brand.html"
},
]
},
"category": {
"573067": [
{
"locale": "it_IT",
"url": "angebote.html"
}
]
}
}
GET
/spokenurls/object.json
type (string) | Specify url object type: product , category , brand |
objectid (int) | Object ID |
$storeden = new Storeden\Storeden($config);
$object_details = $storeden->get('/spokenurls/object.json?type=brand&objectid=1847120');
[
{
"locale": "it_IT",
"url": "brand-di-test.html"
},
{
"locale": "en_US",
"url": "test-brand.html"
}
]