I have an application which is using old Chat API and in the documentation for Chat Channel Migration I saw that channels are automatically migrated to new Conversations API if they have a private type. Today I tried creating a private channel and fetching it via Conversation API's endpoint like this:
curl -X GET 'https://conversations.twilio.com/v1/Conversations/CHXXXXXXXXXXXXXXXXXXXXXXX' -
u $TWILIO_ACCOUNT_SID:$TWILIO_ACCOUNT_TOKEN
However, I'm receiving this response:
{"code": 20404, "message": "The requested resource /Conversations/CHXXXXXXXXXXXXXXXXXXXXXXX was not found", "more_info": "https://www.twilio.com/docs/errors/20404", "status": 404}%
I've checked multiple times and confirmed that channel with such SID exists and it has private type (fetched along with other channels with old API).
Is there something I'm missing out?