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 the agent configuration for a project
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 https://api.pathors.com/v1/projects/{projectId}/agent
Show properties
monolithic or skill)draft or published)smart, turbo, or balance)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
}
}