DiceX DevelopersDiceX API Docs

Get Contact Groups

GET
/api/v1/OnlineMeeting/GetContactGroups
ApiKey<token>

API Key needed to access the endpoints. Example: "ApiKey: {key}"

In: header

Query Parameters

pageIndex?integer
Formatint32
pageSize?integer
Formatint32

Response Body

curl -X GET "https://gateway.dicex.me/api/v1/OnlineMeeting/GetContactGroups"
{
  "isSuccess": true,
  "message": "string",
  "pageIndex": 0,
  "pageSize": 0,
  "totalCount": 0,
  "totalPages": 0,
  "hasPreviousPage": true,
  "hasNextPage": true,
  "items": [
    {
      "id": 0,
      "name": "string",
      "description": "string",
      "welcomeMessage": "string"
    }
  ]
}