List agent extracted variables
curl --request GET \
--url https://julian.11x.ai/api/v1/agents/{agentId}/extracted-variables \
--header 'x-api-key: <api-key>'import requests
url = "https://julian.11x.ai/api/v1/agents/{agentId}/extracted-variables"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://julian.11x.ai/api/v1/agents/{agentId}/extracted-variables', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"extractedVariables": [
{
"slug": "meeting_time",
"displayName": "Meeting time",
"description": "The agreed date and time for the meeting",
"type": "DATE/TIME",
"dropdownOptions": [
"High",
"Medium",
"Low"
],
"datetimeFormat": "YYYY-MM-DD HH:mm:ss",
"formatDatetimeInUtc": true
}
]
}{
"error": "INVALID_PHONE_NUMBER",
"message": "<string>"
}{
"error": "INTERNAL_SERVER_ERROR",
"message": "Internal Server Error. Please contact 11x team."
}Agents
List agent extracted variables
Returns the non-deleted, customer-defined variables that Julian extracts from the agent’s conversations. System-default definitions are excluded. Dropdown and date/time variables include their type-specific configuration.
GET
/
agents
/
{agentId}
/
extracted-variables
List agent extracted variables
curl --request GET \
--url https://julian.11x.ai/api/v1/agents/{agentId}/extracted-variables \
--header 'x-api-key: <api-key>'import requests
url = "https://julian.11x.ai/api/v1/agents/{agentId}/extracted-variables"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://julian.11x.ai/api/v1/agents/{agentId}/extracted-variables', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"extractedVariables": [
{
"slug": "meeting_time",
"displayName": "Meeting time",
"description": "The agreed date and time for the meeting",
"type": "DATE/TIME",
"dropdownOptions": [
"High",
"Medium",
"Low"
],
"datetimeFormat": "YYYY-MM-DD HH:mm:ss",
"formatDatetimeInUtc": true
}
]
}{
"error": "INVALID_PHONE_NUMBER",
"message": "<string>"
}{
"error": "INTERNAL_SERVER_ERROR",
"message": "Internal Server Error. Please contact 11x team."
}Authorizations
Organization API key. Get it from the 11x team or from the platform.
Path Parameters
ID of the agent, e.g. agent.abc123.
Response
Customer-defined extracted-variable definitions configured on the agent.
Show child attributes
Show child attributes