List your apps
curl --request GET \
--url https://api.vambe.me/api/ecommerce-appconst options = {method: 'GET'};
fetch('https://api.vambe.me/api/ecommerce-app', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.vambe.me/api/ecommerce-app"
response = requests.get(url)
print(response.text)App management API
List your apps
GET
/
api
/
ecommerce-app
List your apps
curl --request GET \
--url https://api.vambe.me/api/ecommerce-appconst options = {method: 'GET'};
fetch('https://api.vambe.me/api/ecommerce-app', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.vambe.me/api/ecommerce-app"
response = requests.get(url)
print(response.text)Lists the apps owned by the calling account, in any status (draft, pending
review, approved, rejected, suspended).
Response
200 - undefined
Was this page helpful?
