Get multisig with specified id
number
GET //api/blockchain/multisigs/{id} HTTP/1.1 Host: api.client.nbcgate.tech Authorization: YOUR_API_KEY Accept: */*
OK
{ "address": "text", "description": "text", "id": 1, "name": "text", "network": { "id": 1 }, "owners": [ "text" ], "threshold": 1, "version": "text" }
Delete multisig with specified id
DELETE //api/blockchain/multisigs/{id} HTTP/1.1 Host: api.client.nbcgate.tech Authorization: YOUR_API_KEY Accept: */*
No Content
No content
Get all multisigs list
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
All business owners addresses list
Business owners in fuji network
1
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 }
Created