You can access the createdDate, changedDate, changedBy and owner attributes on the MendixObject
(not on the proxy object):
myEntity.getMendixObject().getCreatedDate(context);
from the top of my head, if object is an IMendixObject:
Date created = (Date) object.getValue(this.getContext(), "system.createdDate");