Skip to main content
PATCH
/
v1
/
wallets
/
{walletId}
Update Wallet Identifier
curl --request PATCH \
  --url https://api.beta.getpara.com/v1/wallets/{walletId} \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "userIdentifier": "bob@example.com",
  "userIdentifierType": "EMAIL"
}
'
{
  "id": "0a1b2c3d-4e5f-6789-abcd-ef0123456789",
  "type": "EVM",
  "scheme": "DKLS",
  "status": "creating",
  "address": "0x742d35Cc6634C0532925a3b844Bc9e7595f...",
  "publicKey": "<string>",
  "createdAt": "2024-01-15T09:30:00Z"
}

Authorizations

X-API-Key
string
header
default:beta_239a31fee5298dc110ee6a78e274b809
required

Your partner secret key (server-side only)

Headers

X-Request-Id
string<uuid>

UUID for request tracing. Para returns one if omitted.

Path Parameters

walletId
string
required

Wallet ID

Example:

"0a1b2c3d-4e5f-6789-abcd-ef0123456789"

Body

application/json
userIdentifier
string
required

New user identifier (email, phone, or custom ID)

Example:

"bob@example.com"

userIdentifierType
enum<string>
required

Type of user identifier

Available options:
EMAIL,
PHONE,
CUSTOM_ID,
GUEST_ID,
TELEGRAM,
DISCORD,
TWITTER,
FARCASTER

Response

Updated wallet

id
string

Unique wallet identifier

Example:

"0a1b2c3d-4e5f-6789-abcd-ef0123456789"

type
string

Blockchain network type

Example:

"EVM"

scheme
enum<string>

Signature scheme

Available options:
DKLS,
CGGMP,
ED25519
Example:

"DKLS"

status
enum<string>

Wallet creation status

Available options:
creating,
ready
address
string

Wallet address (available when status is ready)

Example:

"0x742d35Cc6634C0532925a3b844Bc9e7595f..."

publicKey
string

Public key (available when status is ready)

createdAt
string<date-time>

ISO 8601 timestamp

Example:

"2024-01-15T09:30:00Z"