curl --location --request POST 'http://dev-cn.your-api-server.com/api/v1/update-chatbot-data' \
--header 'Authorization: Bearer <Your-API-Key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"chatbotId": "example-123",
"chatbotName": "new name",
"urlsToScrape": [
"https://www.example.com",
"https://www.example.com/blog"
]
}'
{
"chatbotId": "exampleId-123"
}