Get an app
curl --request GET \
--url https://api.vambe.me/api/ecommerce-app/{id}const options = {method: 'GET'};
fetch('https://api.vambe.me/api/ecommerce-app/{id}', 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}"
response = requests.get(url)
print(response.text)App management API
Get an app
GET
/
api
/
ecommerce-app
/
{id}
Get an app
curl --request GET \
--url https://api.vambe.me/api/ecommerce-app/{id}const options = {method: 'GET'};
fetch('https://api.vambe.me/api/ecommerce-app/{id}', 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}"
response = requests.get(url)
print(response.text)Returns a single app owned by the calling account. Secrets are never returned
here โ use rotate the signing secret
if you need a new one.
Path Parameters
Response
200 - undefined
Was this page helpful?
