List installable apps
curl --request GET \
--url https://api.vambe.me/api/ecommerce-app/availableconst options = {method: 'GET'};
fetch('https://api.vambe.me/api/ecommerce-app/available', 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/available"
response = requests.get(url)
print(response.text)App management API
List installable apps
Apps the account can install: approved apps only. A developer connects their own draft from the app checklist.
GET
/
api
/
ecommerce-app
/
available
List installable apps
curl --request GET \
--url https://api.vambe.me/api/ecommerce-app/availableconst options = {method: 'GET'};
fetch('https://api.vambe.me/api/ecommerce-app/available', 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/available"
response = requests.get(url)
print(response.text)Lists the apps the account can install: every approved app plus any drafts owned
by the calling account. This is the catalog a merchant picks from when
connecting an integration.
Response
200 - undefined
Was this page helpful?
