BAP-specific View to add Single Number Reach to an existing Subscriber.
GET http://[host-proxy]/api/view/AddSingleNumberReachToSubscriber/schema/?hierarchy=[hierarchy]&format=json&schema=1
{
"$schema": "http://json-schema.org/draft-03/schema",
"type": "object",
"properties": {
"cucm_bkey": {
"title": "CUCM bkey",
"description": "Business Key of the CUCM.",
"type": "string",
"required": false
},
"username": {
"title": "Username",
"description": "Username of the subscriber.",
"type": "string",
"required": true
},
"name": {
"title": "Profile Name",
"description": "Name of the remote destination profile.",
"type": "string"
},
"mobile_number": {
"title": "Mobile Number",
"description": "Mobile number.",
"type": "string",
"required": true
},
"lines": {
"title": "Lines",
"type": "array",
"items": {
"type": "object",
"properties": {
"number": {
"title": "Directory Number",
"description": "Directory Number of line to assign.",
"type": "string",
"required": true
},
"label": {
"title": "Label",
"description": "Label to use for this line.",
"type": "string"
},
"display": {
"title": "Display",
"description": "Display to use for this line.",
"type": "string"
}
}
}
}
}
}