Manager API
/api/v1/plugins
GET
Summary
Get plugin list
Parameters
Query Parameters
| Parameter Name | Description |
|---|---|
| offset | number of records to skip before starting to return results. Default : 0 |
| limit | maximum number of records to return in a single response. Default : 10 |
Response
/api/v1/:tenant_id/clients
GET
Summary
Get client list with tenant id
Parameters
URL Path Parameter:
| Parameter Name | Description |
|---|---|
| tenant_id | tenant identifier |
Query Parameters
| Parameter Name | Description |
|---|---|
| offset | number of records to skip before starting to return results. Default : 0 |
| limit | maximum number of records to return in a single response. Default : 10 |
Response
{
"meta": {
"offset": 0,
"limit": 10,
"total": 1
},
"data": [{
"tenant_identifier": "public",
"client_id": "client_1",
"subscription_topics": ["/a/b"],
"session_state": "Activate"
}]
}
/api/v1/:tenant_id/clients/:client_id/kickopff
POST
Summary
Kick off MQTT connections with specified tenant ID and client ID.
Parameters
| Parameter Name | Description |
|---|---|
| tenant_id | tenant identifier |
| client_id | mqtt client identifier |
/api/v1/system_info
GET
Summary
Get system info.
Parameters
None
/api/v1/:tenant_id/topics
GET
Summary
Get topics list.
Parameters
URL Path Parameter:
| Parameter Name | Description |
|---|---|
| tenant_id | tenant identifier |
Query Parameters
| Parameter Name | Description |
|---|---|
| offset | number of records to skip before starting to return results. Default : 0 |
| limit | maximum number of records to return in a single response. Default : 10 |
Responses
{
"meta": {
"offset": 0,
"limit": 10,
"total": 1
},
"data": [{
"topic": "client_1",
"client_id": "/a/b",
"qos": 0
}]
}