curl --request POST \
--url https://api.anchorage-staging.com/v2/wallets/{walletId}/activate \
--header 'Api-Access-Key: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"activateAllCompatibleNetworks": true,
"compatibleNetworkIds": [
"<string>"
]
}
'import requests
url = "https://api.anchorage-staging.com/v2/wallets/{walletId}/activate"
payload = {
"activateAllCompatibleNetworks": True,
"compatibleNetworkIds": ["<string>"]
}
headers = {
"Api-Access-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Api-Access-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({activateAllCompatibleNetworks: true, compatibleNetworkIds: ['<string>']})
};
fetch('https://api.anchorage-staging.com/v2/wallets/{walletId}/activate', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"results": [
{
"networkId": "<string>",
"status": "SUCCESS",
"errorMessage": "<string>",
"walletId": "<string>"
}
]
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}Activate an existing wallet on additional networks
Permissions required: Create address
Activate the existing wallet identified by walletId on additional networks that share the same cryptographic key derivation (e.g. EVM-compatible chains). Each entry in compatibleNetworkIds produces a new wallet on that network with the same address as the source.
Per-network failures are reported individually in the response without aborting the whole call: a target network that is not key-compatible with the source wallet’s network, or that the organization has not enabled, returns a FAILED status for that entry while other entries continue.
curl --request POST \
--url https://api.anchorage-staging.com/v2/wallets/{walletId}/activate \
--header 'Api-Access-Key: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"activateAllCompatibleNetworks": true,
"compatibleNetworkIds": [
"<string>"
]
}
'import requests
url = "https://api.anchorage-staging.com/v2/wallets/{walletId}/activate"
payload = {
"activateAllCompatibleNetworks": True,
"compatibleNetworkIds": ["<string>"]
}
headers = {
"Api-Access-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Api-Access-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({activateAllCompatibleNetworks: true, compatibleNetworkIds: ['<string>']})
};
fetch('https://api.anchorage-staging.com/v2/wallets/{walletId}/activate', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"results": [
{
"networkId": "<string>",
"status": "SUCCESS",
"errorMessage": "<string>",
"walletId": "<string>"
}
]
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}Authorizations
An API key associated with a security role
Path Parameters
An ID uniquely identifying an Anchorage Digital wallet
Body
When true, activate the source wallet on every network that is key-compatible with its network and enabled for your organization — the same set returned by compatibleNetworkIds on /asset-types — without enumerating them. Mutually exclusive with compatibleNetworkIds; supplying both, or neither, is rejected with a 400.
Target network IDs to activate the source wallet on. Each network must be key-compatible with the source wallet's network; incompatible entries are reported as FAILED in the response without affecting other entries. Mutually exclusive with activateAllCompatibleNetworks — provide exactly one.
1 - 25 elementsA network ID that shares cryptographic key derivation with the source wallet's network
Response
Per-network activation results
One entry per requested network, in the order the networks were supplied.
Show child attributes
Show child attributes
Was this page helpful?