# Claim Account Operations ## Generate a claim account code **`POST /v1/user/claim-account`** The `claim_account_code` is meant to be used as a request parameter when redirecting a new customer to Wise, effectively allowing the customer to claim the account in question as their own. Use the `registration_code` used for [creating the user](/api-reference/user#createuser-regcode) Request registrationCode The `registration_code` belonging to the user Response claimAccountCode The `claim_account_code` to be used in the redirect to Wise Example Request ```shell curl -X POST \ https://api.sandbox.transferwise.tech/v1/user/claim-account \ -H 'Authorization: Bearer ' \ -H 'Content-Type: application/json' \ -d '{ "registrationCode": }' ``` Example Response ```json { "claimAccountCode": "" } ```