List pages - celdotro/marketplace GitHub Wiki
- Returns data for all available pages
- There are 2 types of pages
- Default
- default = default page with general information
- livrare-produse = products delivery page
- retur-produse = products return page
- garantie-produse = products warranty page
- confidentialitate = confidentiality details page
- Pages added by the API user
- Default
celmarket\Pages\PagesData
getPages
- method: settings
- action: getPages
(none)
Even if there is no parameter being sent to the API wrapper's method, a meaningless parameter will be added to the API call. Be aware of this if you plan on using the API directly!
An object with the following attributes
- (attribute) = page key -> object
- id = page id
- pkey = page key
- nume_pagina = page name
- continut_pagina = page contents
https://github.com/celdotro/marketplace_examples/blob/master/Pages/1.getPages.php
{
"request": {
},
"response": {
"pages": [
{
"id": 1,
"pkey": "X",
"nume_pagina": "X",
"continut_pagina": "X"
}
]
}
}