Retrieves all customer-specified content profile configurations stored for a site. For more on the content profile configurations, see /profile/content/external/update.
This method has been deprecated in favor of /profile/content/external/read without specifying a key (i.e. the same parameter as previously used for this method).
Example
Bash
$ cx.py /profile/content/external/read '{"siteId":"9222300742735526873"}'
{
"count": 2,
"configuration": {
"https://example.org/": {
"match": "exact",
"mode": "enrich",
"profile": [
{
"groups": [
{
"count": 1,
"group": "owner",
"weight": 0.96
}
],
"item": "example organization"
}
]
},
"https://example.org/history/ancient.*": {
"match": "pattern",
"mode": "replace",
"profile": [
{
"groups": [
{
"count": 1,
"group": "section",
"weight": 1.0
}
],
"item": "ancient-history"
}
]
}
}
}