I have a Branch model with a foreign key to account (the owner of the branch):
class Branch(SafeDeleteModel): _safedelete_policy = SOFT_DELETE_CASCADE
Do you know any better way to add additional fields when creating an object with django rest framework?
The official way to provide extra data when creating/updating an object is to pass them to the serializer.save() as shown here
serializer.save()