To push Bot Chat Archive Data to customer

Information required to whether there is any functionality available where we can push the Bot chat archive data to customer. Customer wanted to get the data itself as API response and store it in their own databases

You want the full set of user wise bot messages?

API to fetch alll chat UIDs :

curl --location --request POST 'https://cloud.yellow.ai/api/agents/data/log-paginated?bot=<botId>' \
--header 'x-api-key: <api-key>'

and from each of those UIDs from responses you will call

curl --location 'https://cloud.yellow.ai/api/agents/data/messages?bot=<botId>&uid=<uid>' \
--header 'x-api-key: <api-key>'

to get all responses by user and bot.

**However, these are internal request methods and can frequently be changed by platform.
Please implement and check with the platform team on the same.