Skip to main content
POST
/
api
/
ecommerce-app
/
{id}
/
connect
Start OAuth connection
curl --request POST \
  --url https://api.vambe.me/api/ecommerce-app/{id}/connect
const 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

id
string
required

Response

201 - undefined