I consider it a standard that an object-creating function returns the newly created object.
So, any idea how do you do that in tastypie? When I send the POST request
Can't believe the answer was so easy.
http://django-tastypie.readthedocs.org/en/latest/resources.html#always-return-data
Just add always_return_data = True to your Meta.
always_return_data = True
Meta