Overview
I looked into how to perform bulk registration with Django REST framework, so here are my notes.
By following the article below, I was able to create an endpoint for bulk registration.

Django REST framework で一括登録のエンドポイントを作る(bulk_create) - Qiita
Django REST frameworkのレコードの一括作成 Django REST framework(以下DRF)のクラスベースViewには標準でレコードを一括で登録する機能は含まれていない。 複数のデータを登録したいとき以下の3つの方法が考えられる。 繰り返しP...
Postman
I sent the following request using Postman.

As a result, I was able to perform bulk registration as shown below.

Summary
I hope this serves as a helpful reference.



Comments
…