Personalization Recommender Collection

Get a list of personalization recommenders, optionally filtered by data space or profile data graph.
Resource
1/personalization/personalization-recommenders
Available version
64.0
HTTP method
GET
Request parameters
Parameter Name Type Description Required or Optional
dataSpaceIdOrName String The ID or API name of the data space to filter by. Optional
profileDataGraphIdOrName String The ID or API name of the profile data graph to filter by. Optional
Response body
Personalization Recommender Collection

Example

Request:

1GET /personalization/personalization-recommenders/?dataSpaceIdOrName=default&profileDataGraphIdOrName=IndividualDG

Response:

1[
2    {
3        "id": "0heWs000000009hIAA",
4        "status": "Active",
5        "lastRefreshedStatus": "Complete",
6        "lastSuccessfulRefresh": "1/16/2025, 4:09 AM",
7        "name": "Maximise_Signup_Recommender",
8        "label": "MaximiseSignupRecommender",
9        "description": "Recommender to maximize signups",
10        "contentObject": {
11            "label": "Goods Product",
12            "name": "ssot__GoodsProduct__c"
13        },
14        "dataSpace": {
15            "label": "default",
16            "name": "dataSpaceApiName"
17        },
18        "itemDataGraph": {
19            "name": "product_dg",
20            "label": "ProductDG"
21        },
22        "profileDataGraph": {
23            "label": "IndividualDG",
24            "name": "abc_someProfileDataGraphApiName"
25        },
26        "objective": {
27            "label": "MaximiseSignupObjective",
28            "name": "Maximise_Signup_Objective"
29        },
30        "sortCriteria": null,
31        "includeFilters": {}
32    },
33    {
34        "id": "0heWs000000009hIAX",
35        "status": "Active",
36        "lastRefreshedStatus": "Complete",
37        "lastSuccessfulRefresh": "1/16/2025, 4:09 AM",
38        "name": "Maximise_Signup_Recommender_Alt",
39        "label": "MaximiseSignupRecommenderAlt",
40        "description": "Recommender to maximize signups alt",
41        "contentObject": {
42            "label": "Goods Product",
43            "name": "ssot__GoodsProduct__c"
44        },
45        "dataSpace": {
46            "label": "default",
47            "name": "dataSpaceApiName"
48        },
49        "itemDataGraph": {
50            "name": "product_dg",
51            "label": "ProductDG"
52        },
53        "profileDataGraph": {
54            "label": "IndividualDG",
55            "name": "abc_someProfileDataGraphApiName"
56        },
57        "objective": {
58            "label": "MaximiseSignupObjective",
59            "name": "Maximise_Signup_Objective"
60        },
61        "sortCriteria": null,
62        "includeFilters": {}
63    }
64]