Manifest
Manifest is a list of all active experiences and the corresponding variants in those experiences activated for the current user.
Get Manifest
https://personalize-edge.contentstack.com/manifestGet Manifest
The Get Manifest request fetches all the active variants for experiences in a project.
Active variants are returned as a list of experiences in the Response body with the Experience Short UID and Active Variant Short UID for each item in the list.
The list also reflects the order of the priority for each of the experiences, the items in the response higher up in the list have the higher priority.
If you run the API call without the user UID, it automatically generates a random user UID, which you can use for other subsequent calls.
Note: A variant will be null when the experience is disabled or when the user does not satisfy the criteria for any variant.
{
"experiences": [
{
"activeVariantShortUid": "0",
"shortUid": "1"
},
{
"activeVariantShortUid": "1",
"shortUid": "2"
}
]
}