[Answered ]-Django not serializing the natural key values

2👍

✅

You need to add a def natural_key(self) method to your AcademicPrograms model. You must also pass use_natural_foreign_keys=True or use_natural_primary_keys=True when serializing. See the django docs for an example.

Leave a comment