After a conversation is started and once the pre-chat form is filled- by when this conversation is pushed to API?
https://api.yourgpt.ai/chatbot/v1/getSessions this is what I am using for sessions.
WE ARE trying to capture the contacts in pipedrive
Whenever a person talks to the bot on the website, the conversation appears on the yourgpt dashboard. But when I try to fetch the same conversation through this endpoint https://api.yourgpt.ai/chatbot/v1/getSessions. I don't find it.
For example this conversation : https://chatbot.yourgpt.ai/dashboard/71ba4027-27b2-4d66-909d-9c16b7a0243b/conversations/all/17743311452338652
curl -X POST "https://api.yourgpt.ai/chatbot/v1/getSessions" \
-H "api-key: YOUR_YOURGPT_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"limit": "50",
"page": "1",
"orderBy": "DESC",
"from": "2026-03-21"
}'