Start OAuth connection
curl --request POST \
--url https://api.vambe.me/api/ecommerce-app/{id}/connectconst options = {method: 'POST'};
fetch('https://api.vambe.me/api/ecommerce-app/{id}/connect', 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}/connect"
response = requests.post(url)
print(response.text)App management API
Start OAuth connection
Returns the provider authorization URL to redirect the merchant to. The merchant approves scopes on the provider page β Vambe never collects credentials.
POST
/
api
/
ecommerce-app
/
{id}
/
connect
Start OAuth connection
curl --request POST \
--url https://api.vambe.me/api/ecommerce-app/{id}/connectconst options = {method: 'POST'};
fetch('https://api.vambe.me/api/ecommerce-app/{id}/connect', 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}/connect"
response = requests.post(url)
print(response.text)Returns the provider authorization URL to redirect the merchant to. The merchant
approves the requested scopes on the providerβs own page β Vambe never collects
provider credentials. After approval the provider redirects back to Vambeβs
callback, which exchanges the code and persists the installation.
Path Parameters
Response
201 - undefined
Was this page helpful?
