diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-04-16 13:09:48 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-04-16 13:09:48 -0700 |
commit | c9666df6c2717f98a5088b39f1babc55c4d8e771 (patch) | |
tree | 1c12a90595ebe393258ab15ea529cbdecfa2f066 /fs_selfservice/FS-SelfService/SelfService.pm | |
parent | 0fca17de96fcac6db1ecdf7e28f224091dc52b2e (diff) |
add E911 address to self-service provision_phone, document it, RT#34069
Diffstat (limited to 'fs_selfservice/FS-SelfService/SelfService.pm')
-rw-r--r-- | fs_selfservice/FS-SelfService/SelfService.pm | 96 |
1 files changed, 96 insertions, 0 deletions
diff --git a/fs_selfservice/FS-SelfService/SelfService.pm b/fs_selfservice/FS-SelfService/SelfService.pm index c77f33280..80d9dbc8a 100644 --- a/fs_selfservice/FS-SelfService/SelfService.pm +++ b/fs_selfservice/FS-SelfService/SelfService.pm @@ -1153,6 +1153,102 @@ pkgpart of package to cancel Returns a hash reference with a single key, B<error>, empty on success, or an error message on errors. +=item provision_acct + +Provisions an account (svc_acct). + +Takes a hash references as parameter with the following keys: + +=over 4 + +=item session_id + +Session identifier + +=item pkgnum + +pkgnum of package into which this service is provisioned + +=item svcpart + +svcpart or service definition to provision + +=item username + +=item domsvc + +=item _password + +=back + +=item provision_phone + +Provisions a phone number (svc_phone). + +Takes a hash references as parameter with the following keys: + +=over 4 + +=item session_id + +Session identifier + +=item pkgnum + +pkgnum of package into which this service is provisioned + +=item svcpart + +svcpart or service definition to provision + +=item countrycode + +=item phonenum + +=item address1 + +=item address2 + +=item city + +=item county + +=item state + +=item zip + +=item country + +E911 Address (optional) + +=back + +=item provision_external + +Provisions an external service (svc_external). + +Takes a hash references as parameter with the following keys: + +=over 4 + +=item session_id + +Session identifier + +=item pkgnum + +pkgnum of package into which this service is provisioned + +=item svcpart + +svcpart or service definition to provision + +=item id + +=item title + +=back + =back =head1 SIGNUP FUNCTIONS |