Feature Access Code

Feature Access Codes allows you configure the feature access codes for the End User.

Retrieve List of FACS

GET /api/v1/tenants/(string: tenant_id)/groups/(string: group_id)/users/(string: user_id)/properties/facs/

Get the list of feature access codes for an End User.

Authorization rights: minimum End User.

Example request:

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

Example response:

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

{"codes": [
      {"name": "Call Forwarding No Answer Interrogation", "enabled": true, "code": "*61*"},
      {"name": "Night Service Activation Manual Override", "enabled": true, "code": "#70"},
      {"name": "Voice Mail Clear MWI", "enabled": true, "code": "*99","alternateCode": "##4"},
      ......
      {"name": "Number Portability Announcement Activation", "enabled": True, "code": "*84"}
  ]
}
Response JSON Object:
  • featureAccessCodes (array) – The list of Feature Access Codes. Each item in the array contains a FAC. See Feature Access Code.

Status Codes:

Update Feature Access Codes

PUT /api/v1/tenants/(string: tenant_id)/groups/(string: group_id)/users/(string: user_id)/properties/facs/

Modify a list of feature access codes for an End User.

Authorization Right: Minimum Group Admin.

Example request:

PUT /api/v1/tenants/foo/groups/foogroup/users/foouser/properties/facs/ HTTP/1.1
Host: example.com
Content-Type: "application/json"

{
  "codes": [
      {"name": "Call Forwarding No Answer Interrogation", "enabled": true}
  ]
}
Request JSON Object:
  • featureAccessCodes (array) – The list of Feature Access Codes to be updated. Each item in the array contains a FAC. See Feature Access Code.

Example response:

Response:

Similar to GET instance method response.

Status Codes: