Get whether a vault account is opted out of the address registry
Returns whether this vault account is on the workspace opt-out list (optedOut true or false). List, add, and clear-all are available on /v1/address_registry/vaults; this path reads or removes one vault.
GET
TypeScript
Path Parameters
Vault account id (non-negative integer).
Required range:
x >= 0Example:
10001
Response
Current opt-out flag for the vault
Whether the given vault account is excluded from the address registry for your workspace.
true if this vault account is excluded from the address registry; false if it is not excluded.
Example:
false
Previous
Remove a single vault account from the address registry opt-out listRemoves this vault account id from the workspace opt-out list if it is present; otherwise the call still succeeds. Response body matches GET (`optedOut` is `false` after success). To clear the whole list, use `DELETE /v1/address_registry/vaults`.
Next
TypeScript