1👍
✅
There is the hook – alter_list_data_to_serialize.
Which is called just before creating the response.
def alter_list_data_to_serialize(self, request, data):
#call external procedure here
return data
data is the list to be serialized.
Source:stackexchange.com