1👍
✅
Your CountrySerializer is read only as a nested serializer by default (per http://www.django-rest-framework.org/api-guide/relations/#nested-relationships) so you have to override the create/update method of the Campaign serializer for POST/PUT. You’ve tried to override it on the Country serializer instead.
Source:stackexchange.com