Skip to content
This repository has been archived by the owner on Nov 30, 2022. It is now read-only.

updates to saas config guide doc to clarify <masked_object_fields> behavior #464

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/fidesops/docs/guides/saas_config.md
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ update:
path: /crm/v3/objects/contacts
body: '{
"properties": {
<masked_object_fields>
<masked_object_fields>,
"user_ref_id": <user_ref_id>
}
}'
Expand All @@ -493,7 +493,7 @@ update:
direction: from
```

Fidesops will replace the `<masked_object_fields>` placeholder with the result of the policy-driven masking service, for example `{'company': None, 'email': None}`.
Fidesops will replace the `<masked_object_fields>` placeholder with the result of the policy-driven masking service, for example `'company': None, 'email': None`. Note that neither enclosing curly brackets (`{` `}`) nor a trailing comma (`,`) are included as part of the replacement string generated by Fidesops.

This results in the following update request:
```yaml
Expand Down