I’m successfully creating new conversations by posting `/inboxes/inb_1234/imported_messages` endpont. it returns something like:
{
conversation_reference: '...',
message_uid: 'abcdefg88fbc88046053ecd6e319',
status: 'accepted'
}
I want the conversation id from that so I can add links etc. So I’m passing the message_uid to messages as so:
curl --request GET \
--url https://api2.frontapp.com/messages/alt:uid:abcdefg88fbc88046053ecd6e319 \
--header 'accept: application/json' \
--header 'authorization: Bearer <token>
but that returns:
{
"_error": {
"status": 404,
"title": "Not found"
}
}
What am I doing wrong?