curl --request GET \
--url https://ai.wisepilot.app/api/v1/ghl/agents/{id}/prompts \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"agentId": "<string>",
"agentName": "<string>",
"prompts": [
{
"versionNumber": 123,
"promptText": "<string>",
"isActive": true,
"createdAt": "2023-11-07T05:31:56Z"
}
]
}
}GHL agent prompt version history with full prompt text.
curl --request GET \
--url https://ai.wisepilot.app/api/v1/ghl/agents/{id}/prompts \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"agentId": "<string>",
"agentName": "<string>",
"prompts": [
{
"versionNumber": 123,
"promptText": "<string>",
"isActive": true,
"createdAt": "2023-11-07T05:31:56Z"
}
]
}
}