Skip to main content
POST
/
tenant
/
{tenantId}
/
wallets
/
multisignature
/
{walletTenantId}
/
add_owner
Creates a transaction proposal for adding an owner to a multisignature wallet.
curl --request POST \
  --url https://api.example.com/tenant/{tenantId}/wallets/multisignature/{walletTenantId}/add_owner \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "isSuccess": true,
  "isFailure": false,
  "error": null,
  "value": {
    "id": 42,
    "name": "Example"
  }
}

Path Parameters

tenantId
integer<int64>
required

Identifier of the tenant.

walletTenantId
integer<int64>
required

Identifier of the wallet tenant.

Body

application/json

Model containing the owner wallet tenant identifier and updated threshold.

Represents a request model for adding an owner to a multisignature wallet.

walletTenantId
integer<int64>

Identifier of the target multisignature wallet tenant.

Example:

2048

ownerWalletTenantId
integer<int64>

Identifier of the wallet tenant that will be added as an owner.

Example:

3001

threshold
integer<int32>

New signature threshold to set after owner addition.

Example:

3

safeName
string

Name of the multisignature wallet.

Example:

"My MultiSig Wallet"

provider
enum<string>

Provider of the multisignature wallet (e.g., Safe, Gnosis).

Available options:
GnosisSafe
Example:

"Safe"

networkName
string

Name of the blockchain network.

Example:

"Polygon"

ownerWallets
object[]

Array of tenant wallets that can be selected as new owners.

Example:
[
{
"walletTenantId": 3001,
"walletAddress": "0x1234...",
"walletName": "New Owner Wallet"
}
]
currentOwnersCount
integer<int32>

Current number of owners in the multisignature wallet.

Example:

2

Response

200 - application/json

Add owner proposal created successfully.

Wrapper for API operation results containing success status, error information, and return value.

isSuccess
boolean

True if the operation completed successfully, false otherwise.

Example:

true

isFailure
boolean

True if the operation failed, false otherwise.

Example:

false

error
object

Error information returned when the operation fails.

Example:
{
"code": "ValidationError",
"message": "The request parameters failed validation.",
"info": [
"The Name field is required.",
"The Id field must be greater than 0."
]
}
value
object

The result value returned when the operation is successful.

Example:
{ "success": true }