Feature Access Codes¶
List feature access codes¶
-
GET
/api/v1/tenants/
(string: tenant_id)/groups/
(string: group_id)/properties/facs/
¶ List the feature access codes into the Group.
Example request:
GET /api/v1/tenants/foo/groups/foogroup/properties/facs/ HTTP/1.1 Host: example.com
Example response:
HTTP/1.1 200 OK Content-Type: "application/json" { "level": "Tenant", "codes": [ { "name": "Call Forwarding Not Reachable Deactivation", "code": "*95" }, { "name": "Direct Voice Mail Transfer", "code": "*55" }, { "name": "Call Bridge", "code": "*15" } ] }
- Response JSON Object:
level (string) – Indicate at which level the FACs have been defined (Tenant or Group)
codes (array) – A list of feature access codes. See Group feature access code attributes.
- Status Codes:
200 OK – no error