Multisigs

Get all multisigs list

get

Get all multisigs list

Authorizations
Responses
200
OK
application/json
get
GET //api/blockchain/multisigs HTTP/1.1
Host: api.client.nbcgate.tech
Authorization: YOUR_API_KEY
Accept: */*
[
  {
    "address": "text",
    "description": "text",
    "id": 1,
    "name": "text",
    "network": {
      "id": 1
    },
    "owners": [
      "text"
    ],
    "threshold": 1,
    "version": "text"
  }
]

Create new multisig wallet

post

Create new multisig wallet

Authorizations
Body
descriptionstring · max: 1000OptionalExample: All business owners addresses list
namestring · min: 1 · max: 100RequiredExample: Business owners in fuji network
networkinteger · min: 1RequiredDefault: 1
ownersstring[]Required
thresholdinteger · min: 1Required
Responses
201
Created
application/json
post
POST //api/blockchain/multisigs HTTP/1.1
Host: api.client.nbcgate.tech
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 137

{
  "description": "All business owners addresses list",
  "name": "Business owners in fuji network",
  "network": 1,
  "owners": [
    "text"
  ],
  "threshold": 1
}
{
  "address": "text",
  "description": "text",
  "id": 1,
  "name": "text",
  "network": {
    "id": 1
  },
  "owners": [
    "text"
  ],
  "threshold": 1,
  "version": "text"
}

Get multisig with specified id

get

Get multisig with specified id

Authorizations
Path parameters
idstringRequired

number

Responses
200
OK
application/json
get
GET //api/blockchain/multisigs/{id} HTTP/1.1
Host: api.client.nbcgate.tech
Authorization: YOUR_API_KEY
Accept: */*
{
  "address": "text",
  "description": "text",
  "id": 1,
  "name": "text",
  "network": {
    "id": 1
  },
  "owners": [
    "text"
  ],
  "threshold": 1,
  "version": "text"
}

Delete multisig with specified id

delete

Delete multisig with specified id

Authorizations
Path parameters
idstringRequired

number

Responses
204
No Content
delete
DELETE //api/blockchain/multisigs/{id} HTTP/1.1
Host: api.client.nbcgate.tech
Authorization: YOUR_API_KEY
Accept: */*

No content