Cancel Wyn Rocket

Wyn Rocket is a great HR database, but sometimes you want to kick tires and shop around before you commit to a platform. Data entry takes hours, Wyn spreadsheets may not translate easily to other platforms, or theirs to Wyn Rocket. So you can try Wyn Rocket for 30 days for the low fee of $1.00, but you need to cancel your account so your credit card is charged no more. Once you cancel, your account will remain active until the end of the 30 day period.

  1. Make sure you have set a company pin.
  1. US button
  2. Admin View
  3. Edit Company
  4. Four digit number, like the last four of your fax number
  5. Press save if you are establishing a new pin number
  6. Without a pin number, you cannot cancel subscription
  7. Admin Authority required to set pin number
  8. Admin Authority required to cancel subscription

2. Final Cancel process

  1. US button
  2. Admin View
  3. Subscriptions
  4. Cancel All
  5. Verify

Your subscription will end at the end of your normal monthly subscription cycle. https://www.youtube.com/embed/nkGhxjyYd48

Refunds and cancellation terms and conditions

WRbil subscriptions fees are collected monthly and charged in advance for use of our software and servers and are non-refundable.

If you do cancel your account in the middle of a billing cycle, your subscription will remain active until the end of the current period, at which time you will lose access to the subscription services. In the event of the cancellation of your account completely, WRbil ops staff will completely clean any existence of your data from our servers and from our credit card processor at some time after expiration, the precise timing is at our sole discretion. WRbil will not issue refunds or credits for partial periods.

WRbil cancellation or the cancellation of addons and plugins within your WRbil account will never affect API created data in third party platforms including but not limited to Dropbox, Box, Twilio, Twitter, Facebook, Zoho, Google, etc.

www.wrbil.com api version 1.0

base url: (version 1.0)

https://www.wrbil.com/Apif

url format:

request type, company key, secret key, param 1, …

Authentication failure:

{“fail”:{“authentication”:”company key or secret key fail”}}

get active employee list, where thou is 0 or record # to start:

https://www.wrbil.com/Apif/emp_name_list/short_key/long_key/thou

sample return format:

Six active employees in a named json array with the key equal to the name of the request and the data is a named list of last and first names, sorted by last name and named by the system assigned record number of each employee.
{“emp_name_list”:{“22″:”Flanders, Ned”,”33″:”Simpson, Homer”,”44″:”Simpson, Marge”,”11″:”Szyslak, Moe”,”15″:”Van Houten, Milhouse”,”16″:”Ziff, Artie”}}

Employee Category

Fetch a list of employee categories, suitable for html select and option statements, results in json

url: https://www.wrbil.com/Apiv11/list_employee_category

returns a json list with the row_Id and category name, suitable for dropdowns, etc.

options: driver_only – set to ‘Y’ for driver categories only.

Bash Curl

curl -d api_key=60-wild-and-crazy-characters https://www.wrbil.com/Apiv11/list_employee_category

or, only driver categories …

curl -F "api_key=60-wild-and-crazy-characters" -F "driver_only=Y" https://www.wrbil.com/Apiv11/list_employee_category

Added Employees

You can capture new employees by api and send a message, for example, with a Zapier.com task that polls added employees and sends an email with gmail. You may have a Payroll system where you can add the employee automatically, as long as said Payroll system has the API features needed. For the most part, the Payroll industry is behind the times on API’s, but things will improve in the future.

An assumption is made that the average business is not adding employees at a rate of more than three per 15 minutes. Also, you can pay for a more premium plan at Zapier.com and get five minute polling. Also, you could implement your own polling and recognition server and check once every minute. Even another consideration here is that we will be adding webhooks as a means of notification for new employees, which is more efficient and eliminates the possibility that a new employee would be missed.

Zapier can be set to poll every 15 minutes, and will ignore the data until a new employee number hits the top of the list.

bash curl

curl https://www.wrbil.com/Apif/newemployees/api_key=your_long_complicated_60_character_rollable_api_key

php curl_exec

$x = curl_init();
curl_setopt($x, CURLOPT_VERBOSE, 0);
curl_setopt($x, CURLOPT_RETURNTRANSFER, true);
curl_setopt($x, CURLOPT_URL, "https://www.wrbil.com/Apif/newemployees/api_key=xxx
$r = curl_exec($x);

Terminal Timezone

Logbooks could be complicated if time zones were observed when recording start and stop time, so regulations ask that logbooks are kept in the Terminal Timezone. A freight carrier with the main terminal in the Central Timezone should have drivers keeping time always in Central Time. Even after that driver crosses into Mountain Time, they should continue to record their Hours of Service in Central Time. A simple world clock application on a smart phone can assist a driver, as would a wrist watch set to Central Time.