diff options
author | Ivan Kohler <ivan@freeside.biz> | 2016-04-05 17:54:03 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2016-04-05 17:54:03 -0700 |
commit | 2c9afab170b692b81afa1339145224530051c0b6 (patch) | |
tree | 8e8762a124be46dd2f7b9cd56fda37d58e4d746f /fs_selfservice | |
parent | 103e953c1c6f71a7360327e8dde4442e02ae4084 (diff) |
add date to cancel_pkg self-service API, RT#41645
Diffstat (limited to 'fs_selfservice')
-rw-r--r-- | fs_selfservice/FS-SelfService/SelfService.pm | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/fs_selfservice/FS-SelfService/SelfService.pm b/fs_selfservice/FS-SelfService/SelfService.pm index 0d49a282f..e90210028 100644 --- a/fs_selfservice/FS-SelfService/SelfService.pm +++ b/fs_selfservice/FS-SelfService/SelfService.pm @@ -1269,7 +1269,7 @@ following keys: =item bill_date (Future) Bill date. Indicates a future date for which billing could be run. -Specified as a integer UNIX timestamp. Pass this value to the B<order_renew> +Specified as an integer UNIX timestamp. Pass this value to the B<order_renew> function. =item bill_date_pretty @@ -1285,7 +1285,7 @@ Base amount which will be charged if renewed early as of this date. Renewal date; i.e. even-futher future date at which the customer will be paid through if the early renewal is completed with the given B<bill-date>. -Specified as a integer UNIX timestamp. +Specified as an integer UNIX timestamp. =item renew_date_pretty @@ -1346,6 +1346,11 @@ Session identifier pkgpart of package to cancel +=item date + +Optional date, for future cancellation (expiration) instead of immediate +cancellation. Specified as an integer UNIX timestamp ("epoch time"). + =back Returns a hash reference with a single key, B<error>, empty on success, or an |