From 2cf95169a2e9b05c1caef039d7914c8855540e4a Mon Sep 17 00:00:00 2001 From: timgl Date: Thu, 5 Sep 2024 16:43:18 +0100 Subject: [PATCH] Update posthog/api/person.py Co-authored-by: Michael Matloka --- posthog/api/person.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posthog/api/person.py b/posthog/api/person.py index c642cdcc9913b..5bd2f6fdbccd3 100644 --- a/posthog/api/person.py +++ b/posthog/api/person.py @@ -417,7 +417,7 @@ def destroy(self, request: request.Request, pk=None, **kwargs): @action(methods=["POST"], detail=False, required_scopes=["person:write"]) def bulk_delete(self, request: request.Request, pk=None, **kwargs): """ - This endpoint allows you to bulk delete persons, either by the PostHog persons ID or by distinct IDs. You can pass through a maximum of 100 ids per call. + This endpoint allows you to bulk delete persons, either by the PostHog person IDs or by distinct IDs. You can pass in a maximum of 100 IDs per call. """ if request.data.get("distinct_ids"): if len(request.data["distinct_ids"]) > 100: