Submit an app for review
curl --request POST \
--url https://api.vambe.me/api/ecommerce-app/{id}/submitconst options = {method: 'POST'};
fetch('https://api.vambe.me/api/ecommerce-app/{id}/submit', 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/{id}/submit"
response = requests.post(url)
print(response.text)App management API
Submit an app for review
Sends the app to the Vambe team for approval. Once approved it becomes installable by any account.
POST
/
api
/
ecommerce-app
/
{id}
/
submit
Submit an app for review
curl --request POST \
--url https://api.vambe.me/api/ecommerce-app/{id}/submitconst options = {method: 'POST'};
fetch('https://api.vambe.me/api/ecommerce-app/{id}/submit', 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/{id}/submit"
response = requests.post(url)
print(response.text)Sends the app to the Vambe team for approval and notifies them on Slack. While
pending the app remains visible only to your account. Once approved it becomes
installable by any account.
Path Parameters
Response
201 - undefined
Was this page helpful?
