Untag Wallet
Removes the specified tags from a wallet.
- HTTP request
- DELETE /wallets/{walletId}/tags
- Authorization requirements
-
Header Type Required Description Authorizationstring Yes Bearer token used to authenticate the request. See Authentication flows for instructions on generating this token. X-DFNS-USERACTIONstring Yes User action signature used to authorize change-inducing requests. See User Action Signing flows for instructions on generating this signature. - Path parameter
-
Parameter Type Required Description walletId string Yes Unique identifier of the wallet. Minimum length: 1. - Request body
-
Field Type Required Description tags string[] Yes List of tags to remove. Maximum array length: 10. curl --request DELETE \ --url https://api.digitalassets.ibm.com//wallets/{walletId}/tags \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --header 'X-DFNS-USERACTION: <api-key>' \ --data ' { "tags": [ "<string>" ] } ' - Response
- 200: Success
Example response:
{}