# `customer.identity.unlink` Clear a Mozaik ID pointer from this store's customers (revoke/erasure healing). - **scope**: `orders:write` - **storefront-visible** (bumps the catalog generation): no - **destructive**: no ## Payload | field | type | required | notes | |---|---|---|---| | `userId` | string (/^usr_[a-zA-Z0-9]{1,32}$/) | yes | | ### JSON Schema ```json { "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "userId": { "type": "string", "pattern": "^usr_[a-zA-Z0-9]{1,32}$" } }, "required": [ "userId" ], "additionalProperties": false } ```