Skip to main content
GET
/
api
/
public
/
contact
/
tags
/
{aiContactId}
Get all tags for an AI contact
curl --request GET \
  --url https://api.vambe.me/api/public/contact/tags/{aiContactId} \
  --header 'x-api-key: <x-api-key>'
const options = {method: 'GET', headers: {'x-api-key': '<x-api-key>'}};

fetch('https://api.vambe.me/api/public/contact/tags/{aiContactId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "https://api.vambe.me/api/public/contact/tags/{aiContactId}"

headers = {"x-api-key": "<x-api-key>"}

response = requests.get(url, headers=headers)

print(response.text)

Headers

x-api-key
string
required

API key required to authorize the request

Path Parameters

aiContactId
string
required

Response

Tags retrieved successfully.