curl --request DELETE \
--url https://api.example.com/api/v1/school/teacher-comment-templates/bulk-soft-delete/ \
--header 'Authorization: Bearer <token>'{
"deleted": true,
"count": 5
}Mark multiple records as deleted without removing them from the database. Provide an array of IDs to delete multiple records at once.
curl --request DELETE \
--url https://api.example.com/api/v1/school/teacher-comment-templates/bulk-soft-delete/ \
--header 'Authorization: Bearer <token>'{
"deleted": true,
"count": 5
}