You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: api.yaml
+48Lines changed: 48 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -18978,6 +18978,54 @@ paths:
18978
18978
oneOf:
18979
18979
- $ref: '#/components/schemas/PlatformError3'
18980
18980
- $ref: '#/components/schemas/InvalidWalletId'
18981
+
/express/api/v2/{coin}/wallet/{walletId}:
18982
+
put:
18983
+
tags:
18984
+
- Express
18985
+
summary: Update Wallet
18986
+
description: The express update wallet route is meant to be used for lightning (lnbtc/tlnbtc). It will produced a signed wallet update request that can be used to update the wallet. For other coins, use the standard wallet update endpoint.
18987
+
operationId: express.wallet.update
18988
+
parameters:
18989
+
- $ref: '#/components/parameters/pathCoin'
18990
+
- $ref: '#/components/parameters/pathWalletId'
18991
+
requestBody:
18992
+
required: true
18993
+
content:
18994
+
application/json:
18995
+
schema:
18996
+
type: object
18997
+
properties:
18998
+
signerHost:
18999
+
type: string
19000
+
description: The host address of the lightning signer node.
19001
+
signerTlsCert:
19002
+
type: string
19003
+
description: The TLS certificate for the lighting signer node encoded to base64.
19004
+
signerMacaroon:
19005
+
type: string
19006
+
description: (Optional) The signer macaroon for the lighting signer node.
19007
+
passphrase:
19008
+
type: string
19009
+
description: The wallet passphrase. This is not uploaded to BitGo, but used to decrypt userAuthKey used to sign the request before sending to BitGo.
0 commit comments