Get multisig with specified id
number
curl -L \ --url 'http://api.client.nbcgate.tech//api/blockchain/multisigs/{id}' \ --header 'Authorization: YOUR_API_KEY'
{ "address": "text", "description": "text", "id": 1, "name": "text", "network": { "id": 1 }, "owners": [ "text" ], "threshold": 1, "version": "text" }
Delete multisig with specified id
curl -L \ --request DELETE \ --url 'http://api.client.nbcgate.tech//api/blockchain/multisigs/{id}' \ --header 'Authorization: YOUR_API_KEY'
No body
Get all multisigs list
curl -L \ --url 'http://api.client.nbcgate.tech//api/blockchain/multisigs' \ --header 'Authorization: YOUR_API_KEY'
[ { "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
curl -L \ --request POST \ --url 'http://api.client.nbcgate.tech//api/blockchain/multisigs' \ --header 'Authorization: YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data '{ "description": "All business owners addresses list", "name": "Business owners in fuji network", "network": 1, "owners": [ "text" ], "threshold": 1 }'