-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Adobe standard 2.0 info in the Consent doc #420
Changes from 3 commits
f219652
1400285
67db45e
3c41da7
d3abd64
4f40bff
42657b6
8c97d11
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,4 +65,27 @@ iOS | |
|
||
<Tabs query="platform=ios&api=update-consents"/> | ||
|
||
<InlineAlert variant="info" slots="text"/> | ||
|
||
The updateConsents API automatically includes the following properties in its request to Edge Network: `standard` with the value `Adobe` and `version` with the value `2.0`. Additionally, the property `metadata` is set to the time at which the API is called. | ||
|
||
In the following, you can see an example in a request that set collect consent to `y`: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I am hoping readers will not get confused with this payload and send the entire body. How about we also give an API call example, followed by the request payload, e.g. Here is an example where updateConsents is called to set collect consent to |
||
|
||
```json | ||
"consent": [ | ||
{ | ||
"standard": "Adobe", | ||
"version": "2.0", | ||
"value": { | ||
"metadata": { | ||
"time": "xxxx-xx-xxxxx:xx:xx.xxxx" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: you can use a sample date here |
||
}, | ||
"collect": { | ||
"val": "y" | ||
} | ||
} | ||
} | ||
] | ||
``` | ||
|
||
For additional information about the management of consent preferences, please refer to the [Privacy and GDPR documentation](../resources/privacy-and-gdpr.md#using-experience-platform-sdks-for-edge-network). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Consent extension uses Adobe Standard 2.0 when communicating with the Edge Network, when the updateConsents API is called. Additionally, ...