From 3d6fe6a6290f8b6752c9509fb20b88c82279687d Mon Sep 17 00:00:00 2001 From: Seamus Johnston Date: Fri, 9 Jun 2023 07:37:15 -0500 Subject: [PATCH] Add note about cleaned flag --- docs/developer/registry-access.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/developer/registry-access.md b/docs/developer/registry-access.md index d2df556e9..a59c8b8b7 100644 --- a/docs/developer/registry-access.md +++ b/docs/developer/registry-access.md @@ -34,6 +34,8 @@ request = ... response = registry.send(request) ``` +Note that you'll need to attest that the data you are sending has been sanitized to remove malicious or invalid strings. Use `send(..., cleaned=True)` to do that. + See below for some example commands to send. Replace example data with data which makes sense for your debugging scenario. Other commands are available; see the source code of epplib for more options.