cURL
curl --request POST \
--url https://api.vambe.me/api/unipile/account/link \
--header 'Content-Type: application/json' \
--data '
{
"providers": [
"LINKEDIN",
"WHATSAPP",
"GOOGLE"
]
}
'const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({providers: ['LINKEDIN', 'WHATSAPP', 'GOOGLE']})
};
fetch('https://api.vambe.me/api/unipile/account/link', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.vambe.me/api/unipile/account/link"
payload = { "providers": ["LINKEDIN", "WHATSAPP", "GOOGLE"] }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)API Reference
Post apiunipileaccountlink
POST
/
api
/
unipile
/
account
/
link
cURL
curl --request POST \
--url https://api.vambe.me/api/unipile/account/link \
--header 'Content-Type: application/json' \
--data '
{
"providers": [
"LINKEDIN",
"WHATSAPP",
"GOOGLE"
]
}
'const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({providers: ['LINKEDIN', 'WHATSAPP', 'GOOGLE']})
};
fetch('https://api.vambe.me/api/unipile/account/link', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.vambe.me/api/unipile/account/link"
payload = { "providers": ["LINKEDIN", "WHATSAPP", "GOOGLE"] }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)Body
application/json
Response
201 - undefined
Was this page helpful?
โI
