Get host context
curl --request GET \
--url https://api.callaro.ai/api/v1/host-contextconst options = {method: 'GET'};
fetch('https://api.callaro.ai/api/v1/host-context', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.callaro.ai/api/v1/host-context"
response = requests.get(url)
print(response.text){
"data": {},
"message": "<string>",
"meta": {},
"request_id": "<string>"
}{
"error": "<string>",
"error_code": "<string>",
"request_id": "<string>",
"details": {},
"errors": [
"<string>"
]
}Auth
Get host context
From api/v1/host_contexts#show in voice_saas_api. Fields come from that action’s strong params / params usage.
GET
/
api
/
v1
/
host-context
Get host context
curl --request GET \
--url https://api.callaro.ai/api/v1/host-contextconst options = {method: 'GET'};
fetch('https://api.callaro.ai/api/v1/host-context', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.callaro.ai/api/v1/host-context"
response = requests.get(url)
print(response.text){
"data": {},
"message": "<string>",
"meta": {},
"request_id": "<string>"
}{
"error": "<string>",
"error_code": "<string>",
"request_id": "<string>",
"details": {},
"errors": [
"<string>"
]
}Was this page helpful?