Group Paging Service

Display user”s basic call logs

GET /api/v1/tenants/(string: tenant_id)/groups/(string: group_id)/users/(string: user_id)/services/group_pagings/

Retrieve the List of paging groups the end user been assigned as an originator. As an originator, he is allowed to dial the paging group number or extension and page all the target subscribers in the paging group.

It is important to notice that this API will return an empty list also in the case the Group Paging service is not assigned to the Group.

Authorization rights: minimum End User.

Example request:

GET /api/v1/tenants/foo/groups/foogroup/users/foouser/services/group_pagings/ HTTP/1.1
Host: example.com

Example response:

HTTP/1.1 200 OK
Content-Type: "application/json"

{
  "pagingGroups": [
    {
      "name": "Ref GP",
      "phoneNumber": "",
      "extension": "3005",
      "active": False
    }
  ]
}
Response JSON Object:
Status Codes:

Paging Group attributes

Name

Type

Description

name

String

The name of the paging group.

phoneNumber

String

The phone number of the paging group.

extension

String

The extension of the paging group.

active

String

Specifies if the paging group is active.