Is there a way to get the email headers and email body in one API call?
I can do it in two calls:
headers = service.users().messages().get(userId='me', id=message['id'], format='metadata').execute()
msg = service.users().messages().get(userId='me', id=message['id']).execute()
but it would be faster if I could do it in one call.
Any ideas?