Skip to main content

getnetworks

Description:

This endpoints returns the list of all the network which developer has either created it or is part of.

Request

https://api.moinet.io/moibit/v1/getnetworks

Request type - GET

Headers#

Header KeyHeader ValueOptional
nonce<developer_nonce> No
signature<signature gotten after signing developer_nonce by developer> No
developerKeypublic id of the developerNo

Response#

FieldDescription
network_id A unique identifier for the creted network
network_token Privileged token that is shared among all the users part of it for accessibility
networkName User defined name for the created network
isActive is network active or not

Sample Response#

{
"meta": {
"code": 200,
"requestId": "07f35e40-aa2f-41cb-826f-d8f6d79e450a",
"message": "sucess"
},
"data": [
{
"network_id": "12D3KooWEjm8uoW9BjM5GQzdVK78kfm1ypxhaGRHtW8viWUDMBWJ",
"network_token": "12D3KooWJXzQnPcSkgXLutnMMKchncvWBLwD8r29TCgfFbD3L51i",
"networkName": "moibit-default",
"isActive": true
}
]
}