Skip to main content
POST
/
v1
/
users
/
{id}
/
email
/
signup-confirmation
Send signup confirmation email
curl --request POST \
  --url https://api.example.com/v1/users/{id}/email/signup-confirmation \
  --header 'Content-Type: application/json' \
  --data '
{
  "walletAddress": "0x123",
  "tokenId": "tokenId-123"
}
'
If a user doesn’t receive the activation email, you can call this route and the link will be sent to him again. You need the permissionId from the invite-user response

Path Parameters

id
string
required

Body

application/json
walletAddress
string
required
tokenId
string
required

Response

204

ok