Jump to content

MaxITGarrett

Members
  • Posts

    14
  • Joined

  • Last visited

Posts posted by MaxITGarrett

  1. I have noticed the same, occurring randomly a couple times a week. It may happen more frequently, but we only notice it that often. We have attributed it to a drop in response from Pulseway.

    I will enable and send diagnostics.

  2. 18 hours ago, paulfrancis said:

    Was just looking for a way to manage multiple clients at once to edit/change tags, groups etc from the web app.  Hoping it was possible but seems that its not yet.

     

    If you download the Pulseway Dashboard (https://www.pulseway.com/download/PCDashboard_x64.msi) and log in, you can right click on each desktop and edit the group name without touching any of the machines. Not exactly a batch action, but you don't have to touch any machine.

  3. 13 hours ago, karbonphyber said:

    Hi Max, this is wicked.

    One of the features I wasn't too sure of was the Inventory.

    It involves purchasing, which we do but then I sorta got lost partway as to how to do it, within this specific application.

    As i'm using Pulseway as internal RMM , there's really only 1 client. Therefore, assigning assets to a particular person (Could i use Contact?) wasn't something that came to mind/looked available.

    Sweet! I'm gonna give both methods a try.

     

    Yes, you can have 1 account for the client and many contacts for each person. You can assign things to accounts and then assign it to a corresponding contact.

  4. Our business operates with hundreds of products in our inventory and going through all of them and manually entering them into PSA was not exactly an option, and without an import function, I had to develop an import tool that uses the PSA API. I developed it originally with hard coded parameters, in a single class, but went back today and improved it for distribution to everyone here.

    To view the source code, check out the repository at https://bitbucket.org/garrettbromley/pulseway-product-import/

    To download the executable files, download PulsewayProductImport-v2.zip at https://bitbucket.org/garrettbromley/pulseway-product-import/downloads/

     

    Instructions:

    • Download the Excel template and add your inventory into that sheet. I personally had a Microsoft Surface that I walked around with and inventoried everything.
      • To change the categories/sub categories, open the "Back End" tab on the sheet and edit those tables to your liking
      • The only column that isn't required is the UPC Code.
    • Run the Import Tool
    • Input your PSA credentials
    • Type in the full directory to the excel sheet (make sure its closed before running it)
    • Confirm the number of detected items
    • Watch the tool work
    • Make a stock adjustment with the levels of stock for each item (this unfortunately cannot be automated)
    • It will notify you how many items have successfully been imported and which ones failed (if any) and why.

     

    Please let me know if you have any questions! I will post changelogs if any updates are made.

  5. I do agree this should be a feature in the future, but as of right now there is only one way to do that:

    • Assign the user as an External User
    • Don't assign the ticket contact as them (leave it blank)

    External Users can only see tickets assigned to them, External Managers can see all tickets associated with their account.

  6. Inventory and Asset management has been the topic of my work within setting up PSA over the past week or two. Here is how I am handling these cases:

    As of now, every item that is in stock or has the potential to be used in a ticket or project, or even outright sold to a client goes into inventory and is tracked. You can find the import tool I made at https://forum.pulseway.com/topic/2342-c-inventory-product-import-tool-from-excel/

    Once an item is going to be used in a ticket/project, it is added as a charge on that ticket/project. After the charge is added, you need to click edit on the new charge to work with it further (not entirely intuitive/smooth):

    2884be6f948d1a932d8f9a3ae0e5aadb.png

    After you open that up, you want to click deliver in the bottom left to take it out of your inventory stock at which point you have the option to make it into an asset. At the moment, we are only doing this for things like Desktops, Servers, Laptops, Routers, Switches, etc. For things like cables or external hard drives, I don't believe it is necessary to do this. With the hardware assets mentioned, you have the ability to track IP information/configuration, login credentials and other important information through the use of custom fields along with the default ones. If you aren't tracking important information on such as a keyboard or cable, which I don't believe you will, it isn't necessary to make an asset.

    fb14afc6dbae1ac13021a7ebac9ee3d7.png

    After you make an asset, you can see it populate in the charges menu as well as in your hardware assets section:

    457ac321d1ea178affe604fe1c4b3075.png

    79a5c8da8ff54880a46aa8e043826011.png

    At which point you can attach it to the account (client) you installed it at.

  7. I notice that there are tickets coming from RMM events, such as offline statuses for servers where it takes up far more room than it should. Both the title and the description contain the same information:

    Quote

    The computer 'MYSERVER' in the group 'My Servers' is offline.

    NOTE: The computer could still be up and running but it has stopped communicating with the server (usually due to the loss of network connectivity).

    Only the first line is necessary in the title, or something like, "'MYSERVER' in group 'My Servers' is offline" with the full description within the ticket.

  8. We currently use TeamViewer as our remote support software and like to have Pulseway as a backup to that, but one thing that we like to do is record our sessions for both accountability and to have the ability to reference something we have done in the past to resolve an issue or to double check one's work.

    If Pulseway is to compete with this, I would like to see the ability to record these sessions.

  9. For those of you who would like to use WHMCS (Automated web hosting platform) but wish to use Pulseway PSA for your main ticketing software and for managing your consulting business if you are an MSP like us, I had to make a hook for WHMCS which takes the client details and automatically makes a client account for them within PSA and grants them access to the ticketing system, using the same password for WHMCS. This vastly simplifies things for the client, and conforms the tickets into one system.

    Once this file is created, it needs to be placed into the following directory with any name:

    \includes\hooks\AddClientToPSA.php

    YOU WILL NEED TO QUERY SOME VALUES YOURSELF THROUGH THE API TO MAKE THE HOOK VALID (mentioned as comments) (if you need help with this, I can provide code)

    <?php
        add_hook('ClientAdd', 1, function($vars) {
    
            // Setup the curl request for PSA
            $curl = curl_init();
    
            // Set the endpoint
            curl_setopt($curl, CURLOPT_URL, "https://psa.pulseway.com/api/token");
    
            // POST Request
            curl_setopt($curl, CURLOPT_POST, true);
    
            // Credentials for Authorization
            curl_setopt($curl, CURLOPT_POSTFIELDS, "grant_type=password&username=username&password=userpassword&tenant=companyname");
    
            // Proper header information
            curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-Type: application/x-www-form-urlencoded'));
    
            // Return the transfer as a string
            curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    
            // Get the response
            $response = json_decode(curl_exec($curl));
    
            // Close the curl
            curl_close($curl);
    
            // Extract the token
            $token = $response->access_token;
    
            // Now to create a new company
            $curl = curl_init();
            
            // Set the endpoint
            curl_setopt($curl, CURLOPT_URL, "https://psa.pulseway.com/api/crm/accounts");
    
            // POST Request
            curl_setopt($curl, CURLOPT_POST, true);
    
            // Gather current datetime
            $date = new DateTime();
    
            // Gather a company name, if specified
            $companyName = $vars['companyname'];
    
            // If they don't have a company name, make it their first name and last name
            if (empty($companyName)) {
                $companyName = $vars['firstname'] . $vars['lastname'];
            }
    
            // Build the JSON to go with the request
            $account = json_encode(array(
                "AccountCode" => (string)$vars['userid'],
                "AccountTypeId" => 12345,           // UNIQUE TO YOU
                "AccountName" => $companyName,
                "Description" => "From WHMCS.",
                "Website" => null,
                "BusinessTypeId" => 0,
                "ServiceTypeId" => 123,             // UNIQUE TO YOU
                "CurrencyId" => 1,
                "SalesTaxItemId" => null,
                "AccountManagerId" => 12345,        // UNIQUE TO YOU
                "IsActive" => true,
                "IsBilling" => true,
                "AcquiredDate" => $date->format('Y-m-d\TH:i:s.u'),
                "CreditLimit" => null,
                "NetDays" => null,
                "Locations" => [array(
                    "LocationName" => "Main",
                    "IsActive" => true,
                    "IsMain" => true,
                    "Addresses" => [array(
                        "Address1" => $vars['address1'],
                        "Address2" => $vars['address2'],
                        "City" => $vars['city'],
                        "State" => $vars['state'],
                        "ZipCode" => $vars['postcode'],
                        "Phone" => $vars['phonenumber'],
                        "Latitude" => null,
                        "Longitude" => null,
                        "EmailAddress" => $vars['email'],
                        "Fax" => null,
                        "AddressTypeId" => 1
                    )]
                )]
            ));
    
            // Add the JSON to the request
            curl_setopt($curl, CURLOPT_POSTFIELDS, $account);
    
            // Set the header, with the authorization token
            curl_setopt($curl, CURLOPT_HTTPHEADER, array(
                "Authorization: Bearer " . $token,
                "Content-Type: application/json",
                "Accept: application/json"
            ));
    
            // Return the transfer as a string
            curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    
            // Get the response
            $response = curl_exec($curl);
    
            // Close the curl
            curl_close($curl);
    
            // Get the ID of the new account
            $response_json = json_decode($response);
            $account_id = $response_json->{'Id'};
    
            // Create a new Contact now
            $curl = curl_init();
            
            // Set the endpoint
            curl_setopt($curl, CURLOPT_URL, "https://psa.pulseway.com/api/Import/contacts");
    
            // POST Request
            curl_setopt($curl, CURLOPT_POST, true);
    
            // Build the JSON to go with the request
            $contact = json_encode(array(
                "AccountName" => $companyName,
                "LocationName" => "Main",
                "FirstName" => $vars['firstname'],
                "LastName" => $vars['lastname'],
                "Email" => $vars['email'],
                "Phone" => $vars['phonenumber'],
                "JobTitle" => "Client",
                "Poc" => true,
                "IsClientPortal" => true,
                "PortalUsername" => $vars['email'],
                "PortalPassword" => $vars['password'],
                "PortalSecurityLevel" => "External User"
            ));
    
            // To conform with Pulseway API format
            $contact = '[' . $contact . ']';
    
            // Add the JSON to the request
            curl_setopt($curl, CURLOPT_POSTFIELDS, $contact);
    
            // Set the header, with the authorization key
            curl_setopt($curl, CURLOPT_HTTPHEADER, array(
                "Authorization: Bearer " . $token,
                "Content-Type: application/json",
                "Accept: application/json"
            ));
    
            // Return the transfer as a string
            curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    
            // Close the curl
            curl_close($curl);
        });
    ?>

     

  10. Not sure how many people use 3CX for their phone systems, but our company utilizes the system and have recently adopted Pulseway as well. As a result, I have developed a plugin for 3CX Windows Client that opens a ticket as you pick up the phone from an incoming call. I have included the source code for reference if anyone else has a need for it.

    Instructions:

    1. Create a new project. Select C# Language and create a new “Windows Class Library” project.
    2. Ensure that the project targets .NET Framework 4.5.1
    3. Add a reference to the library “MyPhoneCRMIntegration.dll” installed with 3CXPhone for Windows (usually C:\ProgramData\3CXPhone for Windows\PhoneApp).
    4. Rename Class1.cs to PulsewayTicketPlugin.cs and replace the code with the following:
    using System;
    using System.IO;
    
    namespace _PulsewayTicketPlugin
    {
        [MyPhonePlugins.CRMPluginLoader]
        public class PulsewayTicketPlugin
        {
            // Initialization of Variables
            private static PulsewayTicketPlugin instance = null;                                        // Holds the instance
            private MyPhonePlugins.IMyPhoneCallHandler callHandler = null;                              // Holds the handler
            private static MyPhonePlugins.CallState lastStatus = MyPhonePlugins.CallState.Undefined;    // Holds the last relevant phone status
    
            // Called upon loading 3CX Client
            [MyPhonePlugins.CRMPluginInitializer]
            public static void Loader(MyPhonePlugins.IMyPhoneCallHandler callHandler)
            {
                // Create a new instance of the plugin
                instance = new PulsewayTicketPlugin(callHandler);
            }
    
            // Constructor for plugin, to add event handler
            private PulsewayTicketPlugin(MyPhonePlugins.IMyPhoneCallHandler callHandler) {
                this.callHandler = callHandler;
    
                // As the status of the call changes, process the changes
                callHandler.OnCallStatusChanged += new MyPhonePlugins.CallInfoHandler(callHandler_OnCallStatusChanged);
            }
    
            // Processes the status of the call
            private void callHandler_OnCallStatusChanged(object sender, MyPhonePlugins.CallStatus callInfo)
            {
                // Process the current state
                //   - If it is ringing, a call is incoming, so we want to monitor it
                //   - If it has ended, no longer need to monitor it (happens when we end it or someone else picks it up)
                //   - Don't process other cases, not necessary
                switch (callInfo.State)
                {
                    case MyPhonePlugins.CallState.Ended: { lastStatus = MyPhonePlugins.CallState.Undefined; break; };
                    case MyPhonePlugins.CallState.Ringing: { lastStatus = MyPhonePlugins.CallState.Ringing; break; };
                    default: { break; };
                }
    
                // If the phone was ringing and we picked it up, open a new ticket
                if (lastStatus == MyPhonePlugins.CallState.Ringing && callInfo.State == MyPhonePlugins.CallState.Connected)
                {
                    // Windows will automatically use the default application used to open URL's
                    System.Diagnostics.Process.Start("https://psa.pulseway.com/MSP/TicketEdit.aspx");
                }
            }
        }
    }
    1. Build the DLL and place it into the 3CX Phone Directory (C:\ProgramData\3CXPhone for Windows\PhoneApp).
    2. Edit the 3CX Phone Configuration file (C:\ProgramData\3CXPhone for Windows\PhoneApp\3CXWin8Phone.user.config) and add the following:
    <add key="CRMPlugin" value="CallNotifier,3CXPhoneTapiPlugin,PulsewayTicketPlugin"/>
    1. Reload your 3CX Windows Client and it should work with the next incoming call!
×
×
  • Create New...