Get Agent Config
curl --request GET \
--url https://api.pathors.com/v1/projects/{projectId}/agent \
--header 'Authorization: <authorization>'{
"data": {
"id": "<string>",
"projectId": "<string>",
"type": "<string>",
"name": "<string>",
"status": "<string>",
"globalPrompt": "<string>",
"executionMode": "<string>",
"timezone": "<string>",
"memoryEnabled": true,
"beforeStartConfig": {},
"postSessionWebhook": {},
"postEvaluationConfig": {},
"placeholderMessages": {},
"variableConfigs": [
{}
]
}
}Get Agent Config
Get the agent configuration for a project
GET
/
v1
/
projects
/
{projectId}
/
agent
Get Agent Config
curl --request GET \
--url https://api.pathors.com/v1/projects/{projectId}/agent \
--header 'Authorization: <authorization>'{
"data": {
"id": "<string>",
"projectId": "<string>",
"type": "<string>",
"name": "<string>",
"status": "<string>",
"globalPrompt": "<string>",
"executionMode": "<string>",
"timezone": "<string>",
"memoryEnabled": true,
"beforeStartConfig": {},
"postSessionWebhook": {},
"postEvaluationConfig": {},
"placeholderMessages": {},
"variableConfigs": [
{}
]
}
}Request
GET https://api.pathors.com/v1/projects/{projectId}/agent
Path Parameters
The project ID
Headers
Bearer token using your developer key
Response
Show properties
Show properties
Agent ID
Associated project ID
Agent type (
monolithic or skill)Agent display name
Agent status (
draft or published)System-wide prompt applied to all nodes
LLM execution mode (
smart, turbo, or balance)Agent timezone
Whether agent memory is enabled
Pre-session execution config
Webhook called after session ends
Auto-evaluation config
Placeholder messages by language
Variable extraction configs
Example
curl https://api.pathors.com/v1/projects/{projectId}/agent \
-H "Authorization: Bearer dk_your_key"
{
"data": {
"id": "agent-uuid",
"projectId": "project-uuid",
"type": "monolithic",
"name": "Customer Support Agent",
"status": "published",
"globalPrompt": "You are a helpful customer support agent.",
"executionMode": "smart",
"timezone": "Asia/Taipei",
"memoryEnabled": false,
"beforeStartConfig": null,
"postSessionWebhook": null,
"postEvaluationConfig": null,
"placeholderMessages": null,
"variableConfigs": null
}
}
⌘I
