Is there a way to see all the segments you are qualified for on the site with web sdk enabled? | Community
Skip to main content
Level 6
June 28, 2024
Solved

Is there a way to see all the segments you are qualified for on the site with web sdk enabled?

  • June 28, 2024
  • 1 reply
  • 498 views

Hi there,

 

As per the title, some times we want to do on the spot QA of the segments that profiles is eligible for while they are on the site. I understand you can see in AEP profile, but there could be the possibility of discrepancy of what actually is reflected while the customer is on the site. 

 

Is there a way to see what segments the customer belongs to, either through maybe the debugger or something?

 

Thanks.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by DavidRoss91

Hi @akwankl 

You can POST to the edge network via this interact call: https://edge.adobedc.net/ee/v2/interact?dataStreamId={{datastream_id}}

 

{
    "event": {
        "xdm": {
            "identityMap": {
                "CUSTGUID": [
                    {
                        "id":"{{cust_guid}}",
                        "primary": true
                    }
                ]
            },
            "{{tenant_id}}": {
                "CUSTGUID":"{{cust_guid}}"
            }
        }
    }
}
 
You would then be able to see the segment membership of the specific identity reflected on edge.

1 reply

DavidRoss91
Community Advisor
DavidRoss91Community AdvisorAccepted solution
Community Advisor
July 1, 2024

Hi @akwankl 

You can POST to the edge network via this interact call: https://edge.adobedc.net/ee/v2/interact?dataStreamId={{datastream_id}}

 

{
    "event": {
        "xdm": {
            "identityMap": {
                "CUSTGUID": [
                    {
                        "id":"{{cust_guid}}",
                        "primary": true
                    }
                ]
            },
            "{{tenant_id}}": {
                "CUSTGUID":"{{cust_guid}}"
            }
        }
    }
}
 
You would then be able to see the segment membership of the specific identity reflected on edge.