GuardSignerService
Export Guard Signer Wallet
Export guard signer key material after owner authorization and fresh step-up.
Method
POST
Path
/v1/chain/guard-signer/wallets:export
Visibility
Authentication
Session token
MFA Requirement
POST
/v1/chain/guard-signer/wallets:export Request
Testnet
curl --request POST \ \
--url 'https://api.testnet.polyester.com/v1/chain/guard-signer/wallets:export' \
--header 'Accept: */*' \
--header 'X-API-KEY-ID: YOUR_API_KEY_ID' \
--header 'X-API-TIMESTAMP: YOUR_API_TIMESTAMP' \
--header 'X-API-SIGNATURE: YOUR_API_SIGNATURE' \
--header 'Content-Type: application/json' \
--data '{
"subaccountId": "6789012345678"
}'Responses
{
"privateKey": "0x0000000000000000000000000000000000000000000000000000000000000000"
} subaccountId string (int64)
Optional subaccount public id. When omitted, the authenticated caller's root account is used as the target account.
privateKey string
Hex-encoded private key returned only after export authorization succeeds.
Example
0x0000000000000000000000000000000000000000000000000000000000000000| Key | Status | Error | When |
|---|---|---|---|
| unauthenticated | 401 | Unauthenticated | Authentication required. |
| permission-denied | 403 | Permission Denied | Permission denied. |
| invalid-argument | 400 | Invalid Argument | Invalid argument. |
| not-found | 404 | Not Found | Not found. |
| unavailable | 503 | Unavailable | Service unavailable. |