Hello Ory team, Is there a manual way to change us...
# ory-network
c
Hello Ory team, Is there a manual way to change user's email address to verified? We are faceing issues verification emails not being delivered to MS servers... Thanks!
t
You can use the API to patch the identity and mark as verified
Copy code
curl -XPATCH -H 'Authorization: Bearer xxx' https://<your-ory-project>/admin/identities/<identity-id> \
--header 'Content-Type: application/json' \
--data '[
  {
    "op": "replace",
    "path": "/verifiable_addresses/0/verified",
    "value": true
  },
  {
    "op": "replace",
    "path": "/verifiable_addresses/0/status",
    "value": "active"
  }
]'
👍 1
c
Thank you!