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
}]
}