I’m in the process of migrating to v3 API and when I reply to a thread the date
comes as None
in the success response:
{
'grant_id': '...',
'from': [{'email': '...'}],
'object': 'message',
'id': '192bc0beab6c87c2',
'body': '...",
'to': [{'name': 'Me', 'email': '...'}],
'bcc': [],
'cc': [],
'reply_to': [],
'attachments': None,
'folders': ['SENT'],
'headers': None,
'unread': None,
'starred': False,
'created_at': None,
'date': None
}
I also notice that the reply_to
field is empty too, but that might have been my mistake. Is there a way to have the date
not being None
?