External Wallets
Update an external wallet
patch/v1/external-wallets/{id}
Path parameters
idstring required
External wallet ID
Headers
X-API-Keystring
API key
Request body
Example request
{
"chains": [
"ETHEREUM",
"BASE"
],
"currencies": [
"USDC",
"USDT"
],
"metadata": {
"nickname": "Main Checking Account",
"purpose": "Business operations",
"tags": [
"primary",
"operations"
]
}
}Response
External wallet updated successfully
Example response
{
"id": "ewa_1234567890abcdef",
"customerId": "cust_abc123",
"counterpartyId": "cp_abc123",
"type": "EXTERNAL_WALLET",
"status": "IN_REVIEW",
"metadata": {
"nickname": "Main Checking Account",
"purpose": "Business operations",
"tags": [
"primary",
"operations"
]
},
"walletAddress": "0x1234567890abcdef1234567890abcdef12345678",
"addressType": "EVM",
"chains": [
"ETHEREUM",
"BASE"
],
"currencies": [
[
"USDC",
"USDT"
]
],
"custodyType": "SELF_HOSTED",
"createdAt": "2026-01-15T10:00:00Z",
"updatedAt": "2026-01-15T10:00:00Z",
"created": true
}Changes
No recorded changes to this endpoint across all 1 revision of this API.