Updating Identities
Upserting Identities
curl -0 -v -X POST https://api.nosto.com/v1/graphql \
-u ":<token>" \
-H 'Content-Type: application/graphql' \
-d @- << EOF
mutation {
upsertIdentity(identity: {
email: "[email protected]",
attributes: [
{name: "loyalty-tier", value: "Gold"},
{name: "shoe-size", value: "42"},
]
}) {
email,
attributes {
name,
value
}
}
}
EOFWhat can identity attributes be used for?
Deleting Identities
Last updated
Was this helpful?