Skip to main content
POST
/
api
/
v1
/
wallets
/
{wallet_uuid}
/
reshare
Initiate wallet reshare
import requests

url = "https://api.example.com/api/v1/wallets/{wallet_uuid}/reshare"

payload = {
    "node_id": "<string>",
    "token": "<string>"
}
headers = {"Content-Type": "application/json"}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
{
  "result": {
    "tss_request_id": "<string>"
  },
  "success": true,
  "suggestion": "",
  "message": "",
  "meta": {
    "total": 123,
    "offset": 123,
    "limit": 123,
    "has_more": true,
    "after": "<string>",
    "before": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://cobo.com/products/agentic-wallet/manual/llms.txt

Use this file to discover all available pages before exploring further.

Headers

X-API-Key
string | null

Path Parameters

wallet_uuid
string<uuid>
required

Body

application/json

Owner's TSS node for creating a Signing group, then KeyGenFromKeyGroup TSS from main group.

node_id
string
required

The human principal's TSS node id (bound to the wallet owner).

Minimum string length: 1
token
string | null

Optional 8-digit code. The backend resolves the token's purpose (pair vs restore) from the matching claim row: pair requires a post-confirm (paired) claim row; restore requires a confirmed (paired) restore code and must be used before it expires. Omit in older app versions.

Required string length: 8
Pattern: ^\d{8}$

Response

Successful Response

result
WalletReshareResponse · object
required

WaaS TSS request id for the reshare operation.

success
boolean
default:true
suggestion
string
default:""
message
string
default:""
meta
PaginationMeta · object

Pagination metadata for list responses.

Supports both legacy offset-based and cursor-based pagination. Cursor fields (has_more, after, before) are populated for cursor-paginated endpoints. Legacy fields (offset, limit) are populated when the caller uses the deprecated offset parameter.