Subkey
Update subkey IP allowlist
Replace the IP CIDR allowlist for a subkey. Empty array clears the allowlist (unrestricted). Only callable with the main account; subkeys cannot widen their own allowlist.
put/account/keys/subkeys/{public_key}/allowed-cidrs
Path parameters
public_keystring required
Subkey public key
Request body
Example request
{
"allowed_cidrs": [
"[\"203.0.113.0/24\"",
"\"198.51.100.42/32\"]"
]
}Response
Updated subkey details
Example response
{
"account_id": "0x1234567890abcdef",
"allowed_cidrs": [
"[\"203.0.113.0/24\"]"
],
"created_at": 1640995200,
"id": 1,
"name": "My Subkey",
"public_key": "0xabcdef1234567890abcdef",
"updated_at": 1640995200
}