Skip to main content
POST
/
tenant
/
{tenantId}
/
wallets
/
multisignature
/
create
Creates a multisignature wallet for the specified tenant.
curl --request POST \
  --url https://api.example.com/tenant/{tenantId}/wallets/multisignature/create \
  --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.

Body

application/json

Request containing multisignature wallet creation details.

Represents a request payload for creating a new multisignature wallet.

tenantId
integer<int64>

Identifier of the tenant that will own the multisignature wallet.

Example:

1024

provider
enum<string>

Selected provider for the multisignature wallet (e.g., Safe, Gnosis).

Available options:
GnosisSafe
Example:

"Safe"

walletName
string

Desired name of the multisignature wallet.

Example:

"My MultiSig Wallet"

blockchainId
integer<int64>

Identifier of the blockchain network where the wallet will be deployed.

Example:

137

ownersAddresses
string[]

Array of blockchain addresses that will be owners of the multisignature wallet.

Example:
[
"0x1234567890abcdef1234567890abcdef12345678",
"0x567890abcdef1234567890abcdef1234567890ab"
]
threshold
integer<int32>

Required number of owner approvals needed to execute transactions.

Example:

2

Response

200 - application/json

MultiSignature wallet 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:
{
"id": 2048,
"walletAddress": "0x1234567890abcdef1234567890abcdef12345678",
"blockchainId": 137
}