Hi,
As there are a few ways of embedding this question refers to this way
https://developer.domo.com/portal/ed061f0c295c0-embedded-capabilities
Currently we pass something like this in the JWT token
{ "sub": "alex.lee@modocorp.co", "name": "Alex Lee", "customer_id": 1000, “groups”: [“a”,”b”,”c”], "exp": 1716239022}
but we would like to be able to pass something like this
{ "sub": "alex.lee@modocorp.co", "name": "Alex Lee", "customer_id": 1000, “groups”: [“a”,”b”,”c”], "exp": 1716239022, "siteIds" : [344,33,56]}
So passing a custom attribute called siteIds which can then be used in PDP policies to filter on a column called Site Id. The user would then only see those Sites.
Does anyone know if this is possible? I was hoping the new custom attributes beta might help.
UPDATE… so far i have it being passed up and updating my custom attribute which is a list of integers. The part I am unsure about it now filtering the data with this attribute.
Thanks