Multisigs
Get all multisigs list
Authorizations
Responses
200
OK
application/json
400
Bad Request
application/json
404
Not Found
application/json
500
Internal Server Error
application/json
default
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
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
400
Bad Request
application/json
404
Not Found
application/json
500
Internal Server Error
application/json
default
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
Authorizations
Path parameters
idstringRequired
number
Responses
200
OK
application/json
400
Bad Request
application/json
404
Not Found
application/json
500
Internal Server Error
application/json
default
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
Authorizations
Path parameters
idstringRequired
number
Responses
204
No Content
400
Bad Request
application/json
404
Not Found
application/json
500
Internal Server Error
application/json
default
application/json
delete
DELETE //api/blockchain/multisigs/{id} HTTP/1.1
Host: api.client.nbcgate.tech
Authorization: YOUR_API_KEY
Accept: */*
No content