serializer.py

#
from rest_framework import serializers

from .models import Person, Reunion, Hobby

class PersonSerializer(serializers.ModelSerializer):
    class Meta:
        model=Person
        fields=(
            '__all__'
        )

views.py

class PersonCreateAPIView(CreateAPIView):

    serializer_class= PersonSerializer

urls.py

    path(
        'api/persona/create/',
        views.PersonCreateAPIView.as_view(),
        name=''
    ),

 

Resultado