network/count
Gets count of networks.
Authorization
Access JSON Web Token (GetNetwork)
Request Topic and Payload
Topic
dh/request
Payload Representation
{
"action": {string},
"requestId": {object},
"name": {string},
"namePattern": {string}
}
Payload Parameters
Property name | Required | Type | Description |
---|---|---|---|
action | Yes | string | Action name: network/count |
requestId | No | object | Request unique identifier, will be passed back in the response message. |
name | No | string | Filter by network name. |
namePattern | No | string | Filter by network name pattern. In pattern wildcards '%' and '_' can be used. |
Response Topic and Payload
Topic
dh/response/network/count@{clientId}
Payload Representation
{
"action": {string},
"requestId": {object},
"status": {string},
"count": {integer}
}
Payload Parameters
Property Name | Type | Description |
---|---|---|
action | string | Action name: network/count |
requestId | object | Request unique identifier as specified in the request message. |
status | string | Operation execution status (success or error). |
count | integer | Number of networks that match the filters. |
Updated almost 7 years ago