Querying Identities
curl -0 -v -X POST https://api.nosto.com/v1/graphql \
-u ":<token>" \
-H 'Content-Type: application/graphql' \
-d @- << EOF
query {
identity(email:"[email protected]") {
email,
attributes {
name,
value
}
recos(preview: true, image: VERSION_ORIGINAL) {
history(params: {
minProducts: 3,
maxProducts: 10,
showRelatedProducts: true,
skipProductsInCart: true,
skipBoughtProducts: true
}) {
primary {
url
imageUrl
}
}
}
}
}
EOFWhat can identity attributes be used for?
Last updated
Was this helpful?