Get one Monitor
Gives the details of a monitor
URL | Requires Auth | HTTP Method |
---|---|---|
api/v1/livechat/monitors.getOne | YES | GET |
Argument | Example | Required | Description |
---|---|---|---|
X-User-Id | myuser-name | Required | Your username hash (returned after you log in through the API) |
X-Auth-Token | myauth-token | Required | Your token (returned after you log in through the API) |
Argument | Example | Required | Description |
---|---|---|---|
username | Bruno.Solis | Required | Username |
curl --location --request GET 'http://localhost:3000/api/v1/llivechat/monitors.getOne?username=Bruno.Solis \
--header 'X-Auth-Token: myauth-token' \
--header 'X-User-Id: myuser-name'
{
"_id": "gxcJTYapi5mPxuAme",
"username": "Bruno.Solis",
"emails": [
{
"address": "",
"verified": false
}
],
"status": "offline",
"name": "Bruno Solis",
"statusLivechat": "not-available",
"success": true
}
Last modified 21h ago